commands: Fix failing Travis server test
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 12 Apr 2018 07:31:53 +0000 (09:31 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 12 Apr 2018 07:31:53 +0000 (09:31 +0200)
commands/server.go
commands/server_test.go

index 1747e17ab757bf0e354cffc51339c6830ee2d9a1..8db6fa918e342f81a3433b92784bf010537f1900 100644 (file)
@@ -41,8 +41,6 @@ import (
 type serverCmd struct {
        // Can be used to stop the server. Useful in tests
        stop <-chan bool
-       // Can be used to receive notification about when the server is started. Useful in tests.
-       started chan<- bool
 
        disableLiveReload bool
        navigateToChanged bool
@@ -60,11 +58,11 @@ type serverCmd struct {
 }
 
 func newServerCmd() *serverCmd {
-       return newServerCmdSignaled(nil, nil)
+       return newServerCmdSignaled(nil)
 }
 
-func newServerCmdSignaled(stop <-chan bool, started chan<- bool) *serverCmd {
-       cc := &serverCmd{stop: stop, started: started}
+func newServerCmdSignaled(stop <-chan bool) *serverCmd {
+       cc := &serverCmd{stop: stop}
 
        cc.baseBuilderCmd = newBuilderCmd(&cobra.Command{
                Use:     "server",
@@ -400,10 +398,6 @@ func (c *commandeer) serve(s *serverCmd) error {
                }()
        }
 
-       if s.started != nil {
-               s.started <- true
-       }
-
        jww.FEEDBACK.Println("Press Ctrl+C to stop")
 
        if s.stop != nil {
index b17addf6bfc2068ea83cf5381ce6b0df3c25410c..648664697683031cc0122d3fa6d0c35522c9def0 100644 (file)
@@ -38,9 +38,9 @@ func TestServer(t *testing.T) {
                os.RemoveAll(dir)
        }()
 
-       stop, started := make(chan bool), make(chan bool)
+       stop := make(chan bool)
 
-       scmd := newServerCmdSignaled(stop, started)
+       scmd := newServerCmdSignaled(stop)
 
        cmd := scmd.getCommand()
        cmd.SetArgs([]string{"-s=" + dir, fmt.Sprintf("-p=%d", port)})
@@ -50,11 +50,10 @@ func TestServer(t *testing.T) {
                assert.NoError(err)
        }()
 
-       select {
-       case <-started:
-       case <-time.After(2 * time.Second):
-               t.Fatal("server start took too long")
-       }
+       // There is no way to know exactly when the server is ready for connections.
+       // We could improve by something like https://golang.org/pkg/net/http/httptest/#Server
+       // But for now, let us sleep and pray!
+       time.Sleep(2 * time.Second)
 
        resp, err := http.Get("http://localhost:1331/")
        assert.NoError(err)