tests: web: Explicitly wait for the HTTP port.
authorLudovic Courtès <ludo@gnu.org>
Tue, 21 Apr 2020 14:28:47 +0000 (16:28 +0200)
committerLudovic Courtès <ludo@gnu.org>
Tue, 21 Apr 2020 14:33:21 +0000 (16:33 +0200)
* gnu/tests/web.scm (run-webserver-test)["HTTP port ready"]: New test.

gnu/tests/web.scm

index 7c1c0aa..1c984dd 100644 (file)
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2017, 2020 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2017, 2019 Christopher Baines <mail@cbaines.net>
 ;;; Copyright © 2017, 2018 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
@@ -110,6 +110,9 @@ HTTP-PORT."
                      ((pid) (number? pid))))))
              marionette))
 
+          (test-assert "HTTP port ready"
+            (wait-for-tcp-port #$forwarded-port marionette))
+
           ;; Retrieve the index.html file we put in /srv.
           (test-equal "http-get"
             '(200 #$%index.html-contents)