All of lore.kernel.org
 help / color / mirror / Atom feed
From: Peter Korsgaard <peter@korsgaard.com>
To: buildroot@buildroot.org
Subject: [Buildroot] [PATCH 2/2] support/testing: add haproxy test
Date: Thu, 27 Aug 2026 18:55:32 +0200	[thread overview]
Message-ID: <20260827165534.3741128-2-peter@korsgaard.com> (raw)
In-Reply-To: <20260827165534.3741128-1-peter@korsgaard.com>

Based on the lighttpd test case.  Verify that we can download index.html
from haproxy in front of lighttpd.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 DEVELOPERS                                    |  1 +
 support/testing/conf/haproxy.cfg              | 13 +++++++
 support/testing/tests/package/test_haproxy.py | 38 +++++++++++++++++++
 3 files changed, 52 insertions(+)
 create mode 100644 support/testing/conf/haproxy.cfg
 create mode 100644 support/testing/tests/package/test_haproxy.py

diff --git a/DEVELOPERS b/DEVELOPERS
index 5eb438906f..b39e01fe46 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2715,6 +2715,7 @@ F:	package/wireguard-linux-compat/
 F:	package/wireguard-tools/
 F:	support/testing/tests/package/test_agec.py
 F:	support/testing/tests/package/test_docker_compose.py
+F:	support/testing/tests/package/test_haproxy.py
 F:	support/testing/tests/package/test_python_hid.py
 
 N:	Peter Seiderer <ps.report@gmx.net>
diff --git a/support/testing/conf/haproxy.cfg b/support/testing/conf/haproxy.cfg
new file mode 100644
index 0000000000..41e983ea97
--- /dev/null
+++ b/support/testing/conf/haproxy.cfg
@@ -0,0 +1,13 @@
+defaults
+    timeout connect 10s
+    timeout client 30s
+    timeout server 30s
+
+frontend myfrontend
+  mode http
+  bind :81
+  default_backend web_servers
+
+backend web_servers
+  mode http
+  server s1 localhost:80 check
diff --git a/support/testing/tests/package/test_haproxy.py b/support/testing/tests/package/test_haproxy.py
new file mode 100644
index 0000000000..6fba0c3809
--- /dev/null
+++ b/support/testing/tests/package/test_haproxy.py
@@ -0,0 +1,38 @@
+import os
+
+import infra.basetest
+
+
+class TestHaproxy(infra.basetest.BRTest):
+    config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
+        """
+        BR2_ROOTFS_POST_BUILD_SCRIPT="{}"
+        BR2_ROOTFS_POST_SCRIPT_ARGS="{}"
+        BR2_PACKAGE_HAPROXY=y
+        BR2_PACKAGE_LIGHTTPD=y
+        BR2_TARGET_ROOTFS_CPIO=y
+        # BR2_TARGET_ROOTFS_TAR is not set
+        """.format(
+            infra.filepath("tests/package/copy-sample-script-to-target.sh"),
+            infra.filepath("conf/haproxy.cfg")
+        )
+
+    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!"
+
+        # sanity check
+        self.assertRunOk("haproxy -v")
+        self.assertRunOk("haproxy -c -f .")
+
+        # proxy to lighttpd
+        self.assertRunOk("haproxy -D -f .")
+
+        self.assertRunOk(f"echo '{msg}' > /var/www/index.html")
+        self.assertRunOk("wget http://localhost:81/index.html")
+        self.assertRunOk(f"grep -F '{msg}' index.html")
-- 
2.47.3

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2026-08-27 16:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-27 16:55 [Buildroot] [PATCH 1/2] package/haproxy: needs signed overflow handling Peter Korsgaard
2026-08-27 16:55 ` Peter Korsgaard [this message]
2026-08-27 21:10 ` Julien Olivain via buildroot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260827165534.3741128-2-peter@korsgaard.com \
    --to=peter@korsgaard.com \
    --cc=buildroot@buildroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.