summaryrefslogtreecommitdiffstats
path: root/transform/livereloadinject_test.go
diff options
context:
space:
mode:
authorDragos Plesca <dragos.plesca@gmail.com>2016-06-16 19:43:47 +0300
committerAnthony Fok <foka@debian.org>2016-06-30 16:47:56 -0600
commit7e08d23eebe8de8c688150900423dca6234b22a8 (patch)
treeaa0fbdf724e67c2cc0baaa676ff94004b64a56af /transform/livereloadinject_test.go
parent0ce6438268961b76d11ef6e9210b03c2100171b1 (diff)
transform: Explicitly bind LiveReload to server port
If hugo server is run on port 80 or 443, LiveReload does not correctly bind to the same port, instead using port 35729. This commit adds functionality to inform LiveReload of the correct port to bind to. See https://github.com/livereload/livereload-js/issues/16 Partially contributed by Jeff Minard (@chuyskywalker). Fixes #2205
Diffstat (limited to 'transform/livereloadinject_test.go')
-rw-r--r--transform/livereloadinject_test.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/transform/livereloadinject_test.go b/transform/livereloadinject_test.go
index cf618e9ee..9f28e05e2 100644
--- a/transform/livereloadinject_test.go
+++ b/transform/livereloadinject_test.go
@@ -18,6 +18,8 @@ import (
"fmt"
"strings"
"testing"
+
+ "github.com/spf13/viper"
)
func TestLiveReloadInject(t *testing.T) {
@@ -26,13 +28,14 @@ func TestLiveReloadInject(t *testing.T) {
}
func doTestLiveReloadInject(t *testing.T, bodyEndTag string) {
+ viper.Set("port", 1313)
out := new(bytes.Buffer)
in := strings.NewReader(bodyEndTag)
tr := NewChain(LiveReloadInject)
tr.Apply(out, in, []byte("path"))
- expected := fmt.Sprintf(`<script data-no-instant>document.write('<script src="/livereload.js?mindelay=10"></' + 'script>')</script>%s`, bodyEndTag)
+ expected := fmt.Sprintf(`<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script>%s`, bodyEndTag)
if string(out.Bytes()) != expected {
t.Errorf("Expected %s got %s", expected, string(out.Bytes()))
}