support/testing/tests/package/test_python_augeas: new test
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Mon, 21 Jun 2021 20:34:55 +0000 (22:34 +0200)
committerYann E. MORIN <yann.morin.1998@free.fr>
Thu, 24 Jun 2021 21:42:04 +0000 (23:42 +0200)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
DEVELOPERS
support/testing/tests/package/sample_python_augeas.py [new file with mode: 0644]
support/testing/tests/package/test_python_augeas.py [new file with mode: 0644]

index 06d311a085bffcb581440ac2e7088f308d245824..9ff590978c06163b5de8279ad820a34ad9d8d680 100644 (file)
@@ -1987,6 +1987,8 @@ F:        configs/galileo_defconfig
 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/
@@ -2687,6 +2689,8 @@ F:        package/squashfs/
 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>
diff --git a/support/testing/tests/package/sample_python_augeas.py b/support/testing/tests/package/sample_python_augeas.py
new file mode 100644 (file)
index 0000000..d62afa5
--- /dev/null
@@ -0,0 +1,9 @@
+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")
diff --git a/support/testing/tests/package/test_python_augeas.py b/support/testing/tests/package/test_python_augeas.py
new file mode 100644 (file)
index 0000000..c142466
--- /dev/null
@@ -0,0 +1,13 @@
+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