mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
The new oeqa core framework will modify the structure of the runtime folder the new runtime folder will have python code inside to support runtime test cases. (From OE-Core rev: 637b712096e9d230e15b1a432a561e4118db34c8) Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
711 B
Python
20 lines
711 B
Python
import subprocess
|
|
import unittest
|
|
import sys
|
|
from oeqa.oetest import oeRuntimeTest, skipModule
|
|
from oeqa.utils.decorators import *
|
|
|
|
def setUpModule():
|
|
if not (oeRuntimeTest.hasPackage("dropbear") or oeRuntimeTest.hasPackage("openssh")):
|
|
skipModule("No ssh package in image")
|
|
|
|
class SshTest(oeRuntimeTest):
|
|
|
|
@testcase(224)
|
|
@skipUnlessPassed('test_ping')
|
|
def test_ssh(self):
|
|
(status, output) = self.target.run('uname -a')
|
|
self.assertEqual(status, 0, msg="SSH Test failed: %s" % output)
|
|
(status, output) = self.target.run('cat /etc/masterimage')
|
|
self.assertEqual(status, 1, msg="This isn't the right image - /etc/masterimage shouldn't be here %s" % output)
|