diff mbox series

[1/1] support/testing: add libcurl runtime test

Message ID 20241215212153.1395727-1-ju.o@free.fr
State Accepted
Headers show
Series [1/1] support/testing: add libcurl runtime test | expand

Commit Message

Julien Olivain Dec. 15, 2024, 9:21 p.m. UTC
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
Patch tested in:
https://gitlab.com/jolivain/buildroot/-/jobs/8648396262
---
 DEVELOPERS                                    |  1 +
 support/testing/tests/package/test_libcurl.py | 55 +++++++++++++++++++
 2 files changed, 56 insertions(+)
 create mode 100644 support/testing/tests/package/test_libcurl.py

Comments

Thomas Petazzoni Feb. 3, 2025, 10:04 p.m. UTC | #1
On Sun, 15 Dec 2024 22:21:53 +0100
Julien Olivain <ju.o@free.fr> wrote:

> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
> Patch tested in:
> https://gitlab.com/jolivain/buildroot/-/jobs/8648396262
> ---
>  DEVELOPERS                                    |  1 +
>  support/testing/tests/package/test_libcurl.py | 55 +++++++++++++++++++
>  2 files changed, 56 insertions(+)
>  create mode 100644 support/testing/tests/package/test_libcurl.py

Applied to master, thanks.

Thomas
Peter Korsgaard Feb. 4, 2025, 2:25 p.m. UTC | #2
>>>>> "Thomas" == Thomas Petazzoni via buildroot <buildroot@buildroot.org> writes:

 > On Sun, 15 Dec 2024 22:21:53 +0100
 > Julien Olivain <ju.o@free.fr> wrote:

 >> Signed-off-by: Julien Olivain <ju.o@free.fr>
 >> ---
 >> Patch tested in:
 >> https://gitlab.com/jolivain/buildroot/-/jobs/8648396262
 >> ---
 >> DEVELOPERS                                    |  1 +
 >> support/testing/tests/package/test_libcurl.py | 55 +++++++++++++++++++
 >> 2 files changed, 56 insertions(+)
 >> create mode 100644 support/testing/tests/package/test_libcurl.py

 > Applied to master, thanks.

Committed to 2024.02.x and 2024.11.x, thanks.
diff mbox series

Patch

diff --git a/DEVELOPERS b/DEVELOPERS
index 047dc4a88f..ad84a6e21b 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1913,6 +1913,7 @@  F:	support/testing/tests/package/test_lame.py
 F:	support/testing/tests/package/test_less.py
 F:	support/testing/tests/package/test_libcamera.py
 F:	support/testing/tests/package/test_libcamera/
+F:	support/testing/tests/package/test_libcurl.py
 F:	support/testing/tests/package/test_libgpgme.py
 F:	support/testing/tests/package/test_libjxl.py
 F:	support/testing/tests/package/test_links.py
diff --git a/support/testing/tests/package/test_libcurl.py b/support/testing/tests/package/test_libcurl.py
new file mode 100644
index 0000000000..b326f9308f
--- /dev/null
+++ b/support/testing/tests/package/test_libcurl.py
@@ -0,0 +1,55 @@ 
+import os
+
+import infra.basetest
+
+
+class TestLibCurl(infra.basetest.BRTest):
+    config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
+        """
+        BR2_PACKAGE_LIBCURL=y
+        BR2_PACKAGE_LIBCURL_CURL=y
+        BR2_PACKAGE_THTTPD=y
+        BR2_TARGET_ROOTFS_CPIO=y
+        # BR2_TARGET_ROOTFS_TAR is not set
+        """
+
+    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()
+
+        msg = "Hello Buildroot!"
+        fname = "file.txt"
+        url = f"http://localhost/{fname}"
+
+        # We check the program can execute.
+        self.assertRunOk("curl --version")
+
+        # We create a simple file to serve.
+        self.assertRunOk(f"echo '{msg}' > /var/www/data/{fname}")
+
+        # We try to download that file, using our local httpd server.
+        self.assertRunOk(f"curl -o {fname} {url}")
+
+        # We check the downloaded file contains our initial message.
+        out, ret = self.emulator.run(f"cat {fname}")
+        self.assertEqual(ret, 0)
+        self.assertEqual(out[0], msg)
+
+        # We download again the file without saving it, but printing
+        # it on stdout this time.
+        out, ret = self.emulator.run(f"curl -q {url}")
+        self.assertEqual(ret, 0)
+        self.assertEqual(out[0], msg)
+
+        # We download one last time, showing the server response. We
+        # check we can see the OK status and our thttpd server
+        # identification.
+        cmd = f"curl --no-progress-meter --dump-header - -o /dev/null {url}"
+        out, ret = self.emulator.run(cmd)
+        self.assertEqual(ret, 0)
+        out_str = "\n".join(out)
+        self.assertIn("HTTP/1.1 200 OK", out_str)
+        self.assertIn("Server: thttpd/", out_str)