kumquat-buildroot/support/testing/tests/package/test_openssh.py
Yann E. MORIN 400ce4f905 support/runttime-tests: fix openssh test
When it was applied, commit 243d500f8d (support/testing: add openssh
runtime test) was amended to not provide a NIC to the emulated machine,
as the test did not require access to the outer world: it only uses the
lo interface. Also, there was a discrepancy between the NIC name in the
Buildroot configuration, and the drivers available in our default kernel
image, making the boot hang for a while whaiting for a NIC that would
never come.

However, that tweak was tested locally with a qmeu version more recent
than the one available in our buidroot/base Docker image. As a
consequence, that test fails to run in gitlab-ci.

Revert to using the old way of specifying no network: it works on
gitlab-ci, and qemu versions in standard distros still support it.

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2020-09-01 21:35:19 +02:00

61 lines
1.7 KiB
Python

import os
import infra.basetest
class TestOpensshBase(infra.basetest.BRTest):
passwd = "testpwd"
opensshconfig = \
"""
BR2_TARGET_GENERIC_ROOT_PASSWD="{}"
BR2_PACKAGE_OPENSSH=y
BR2_PACKAGE_SSHPASS=y
BR2_ROOTFS_POST_BUILD_SCRIPT="{}"
# BR2_TARGET_ROOTFS_TAR is not set
""".format(
passwd,
infra.filepath("tests/package/test_openssh/post-build.sh"))
def openssh_test(self):
img = os.path.join(self.builddir, "images", "rootfs.cpio")
self.emulator.boot(arch="armv5",
kernel="builtin",
options=["-initrd", img,
"-net", "none"])
self.emulator.login(self.passwd)
cmd = "netstat -ltn 2>/dev/null | grep 0.0.0.0:22"
_, exit_code = self.emulator.run(cmd)
self.assertEqual(exit_code, 0)
cmd = "sshpass -p {} ssh -oStrictHostKeyChecking=no localhost /bin/true".format(self.passwd)
_, exit_code = self.emulator.run(cmd)
self.assertEqual(exit_code, 0)
class TestOpenSshuClibc(TestOpensshBase):
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
TestOpensshBase.opensshconfig + \
"""
BR2_TARGET_ROOTFS_CPIO=y
"""
def test_run(self):
self.openssh_test()
class TestOpenSshGlibc(TestOpensshBase):
config = \
TestOpensshBase.opensshconfig + \
"""
BR2_arm=y
BR2_TOOLCHAIN_BUILDROOT_GLIBC=y
BR2_KERNEL_HEADERS_4_19=y
BR2_TOOLCHAIN_BUILDROOT_CXX=y
BR2_PACKAGE_RNG_TOOLS=y
BR2_TARGET_ROOTFS_CPIO=y
"""
def test_run(self):
self.openssh_test()