Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
N: Nicolas Carrier <nicolas.carrier@orolia.com>
F: package/php-xdebug/
F: package/python-augeas/
+F: support/testing/tests/package/sample_python_augeas.py
+F: support/testing/tests/package/test_python_augeas.py
N: Nicolas Cavallari <nicolas.cavallari@green-communications.fr>
F: package/libgit2/
F: package/wayland/
F: package/weston/
F: support/testing/tests/boot/test_syslinux.py
+F: support/testing/tests/package/sample_python_augeas.py
+F: support/testing/tests/package/test_python_augeas.py
F: toolchain/
N: Timo Ketola <timo.ketola@exertus.fi>
--- /dev/null
+import augeas
+
+a = augeas.Augeas(root="/")
+hosts = a.match("/files/etc/hosts/*")
+assert(hosts is not None)
+assert(len(hosts) == 2)
+
+assert(a.get("/files/etc/hosts/1/ipaddr") == "127.0.0.1")
+assert(a.get("/files/etc/hosts/1/canonical") == "localhost")
--- /dev/null
+from tests.package.test_python import TestPythonPackageBase
+
+
+class TestPythonAugeas(TestPythonPackageBase):
+ __test__ = True
+ config = TestPythonPackageBase.config + \
+ """
+ BR2_PACKAGE_AUGEAS=y
+ BR2_PACKAGE_PYTHON3=y
+ BR2_PACKAGE_PYTHON_AUGEAS=y
+ """
+ sample_scripts = ["tests/package/sample_python_augeas.py"]
+ timeout = 60