support/testing: add memcached test

Add a basic runtime test for memcached. The test starts memcached and
checks if it responds to a basic set/get request.

Signed-off-by: Franciszek Stachura <fbstachura@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Franciszek Stachura
2026-02-05 19:48:01 +01:00
committed by Julien Olivain
parent b647b0c95d
commit aa2d71ac38
2 changed files with 38 additions and 0 deletions

View File

@@ -1167,6 +1167,9 @@ F: package/tbb/
N: Francisco Gonzalez <gzmorell@gmail.com>
F: package/ser2net/
N: Franciszek Stachura <fbstachura@gmail.com>
F: support/testing/tests/package/test_memcached.py
N: Francois Dugast <francois.dugast.foss@gmail.com>
F: board/sipeed/licheepi_nano/
F: board/visionfive2/

View File

@@ -0,0 +1,35 @@
import os
import infra.basetest
class TestMemcached(infra.basetest.BRTest):
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + """
BR2_TARGET_ROOTFS_CPIO=y
BR2_PACKAGE_MEMCACHED=y
BR2_PACKAGE_NETCAT=y
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
"""
def test_run(self):
cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
self.emulator.boot(arch="armv5",
kernel="builtin",
options=["-initrd", cpio_file])
self.emulator.login()
output, exit_code = self.emulator.run("memcached -u root &")
set_key_cmd = "set test_key 0 100 10\\r\\ntest_value\\r\\nquit\\r\\n"
output, exit_code = self.emulator.run(
f"echo -ne '{set_key_cmd}' | nc localhost 11211"
)
self.assertEqual(exit_code, 0)
self.assertEqual(output[0].strip(), 'STORED')
get_key_cmd = "get test_key\\r\\nquit\\r\\n"
output, exit_code = self.emulator.run(
f"echo -ne '{get_key_cmd}' | nc localhost 11211"
)
self.assertEqual(exit_code, 0)
self.assertEqual(output[2].strip(), 'test_value')