commands: Add basic server test
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 11 Apr 2018 07:38:58 +0000 (09:38 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 11 Apr 2018 07:51:07 +0000 (09:51 +0200)
See #4598

commands/gendoc.go
commands/server.go
commands/server_test.go

index 3446c2622601b85b17aa823be156d5206b9799f3..8312191f2f02d6e34c0d601b1e3cce52e5860c16 100644 (file)
@@ -66,7 +66,7 @@ for rendering in Hugo.`,
                                        return err
                                }
                        }
-                       now := time.Now().Format(time.RFC3339)
+                       now := time.Now().Format("2006-01-02")
                        prepender := func(filename string) string {
                                name := filepath.Base(filename)
                                base := strings.TrimSuffix(name, path.Ext(name))
index 6ede494175d9e9ec56a375069ef610211685caa4..5500526e840997e592dbc48a256b8ccb1ca7dd69 100644 (file)
@@ -39,6 +39,11 @@ 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
        renderToDisk      bool
@@ -55,7 +60,11 @@ type serverCmd struct {
 }
 
 func newServerCmd() *serverCmd {
-       cc := &serverCmd{}
+       return newServerCmdSignaled(nil, nil)
+}
+
+func newServerCmdSignaled(stop <-chan bool, started chan<- bool) *serverCmd {
+       cc := &serverCmd{stop: stop, started: started}
 
        cc.baseBuilderCmd = newBuilderCmd(&cobra.Command{
                Use:     "server",
@@ -394,9 +403,20 @@ func (c *commandeer) serve(s *serverCmd) error {
                }()
        }
 
+       if s.started != nil {
+               s.started <- true
+       }
+
        jww.FEEDBACK.Println("Press Ctrl+C to stop")
 
-       <-sigs
+       if s.stop != nil {
+               select {
+               case <-sigs:
+               case <-s.stop:
+               }
+       } else {
+               <-sigs
+       }
 
        return nil
 }
index 8940eb078231d21f64b93e10c428f934328be007..b17addf6bfc2068ea83cf5381ce6b0df3c25410c 100644 (file)
 package commands
 
 import (
+       "fmt"
+       "net/http"
+       "os"
        "testing"
+       "time"
+
+       "github.com/gohugoio/hugo/helpers"
 
        "github.com/spf13/viper"
+       "github.com/stretchr/testify/require"
 )
 
+func TestServer(t *testing.T) {
+       assert := require.New(t)
+       dir, err := createSimpleTestSite(t)
+       assert.NoError(err)
+
+       // Let us hope that this port is available on all systems ...
+       port := 1331
+
+       defer func() {
+               os.RemoveAll(dir)
+       }()
+
+       stop, started := make(chan bool), make(chan bool)
+
+       scmd := newServerCmdSignaled(stop, started)
+
+       cmd := scmd.getCommand()
+       cmd.SetArgs([]string{"-s=" + dir, fmt.Sprintf("-p=%d", port)})
+
+       go func() {
+               _, err = cmd.ExecuteC()
+               assert.NoError(err)
+       }()
+
+       select {
+       case <-started:
+       case <-time.After(2 * time.Second):
+               t.Fatal("server start took too long")
+       }
+
+       resp, err := http.Get("http://localhost:1331/")
+       assert.NoError(err)
+       defer resp.Body.Close()
+       homeContent := helpers.ReaderToString(resp.Body)
+
+       assert.Contains(homeContent, "List: Hugo Commands")
+
+       // Stop the server.
+       stop <- true
+
+}
+
 func TestFixURL(t *testing.T) {
        type data struct {
                TestName   string