mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-26 22:04:32 +02:00
all: Refactor to nonglobal Viper, i18n etc.
This is a final rewrite that removes all the global state in Hugo, which also enables the use if `t.Parallel` in tests. Updates #2701 Fixes #3016
This commit is contained in:
@@ -16,24 +16,23 @@ package transform
|
||||
import (
|
||||
"bytes"
|
||||
"fmt"
|
||||
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
func LiveReloadInject(ct contentTransformer) {
|
||||
endBodyTag := "</body>"
|
||||
match := []byte(endBodyTag)
|
||||
port := viper.Get("port")
|
||||
replaceTemplate := `<script data-no-instant>document.write('<script src="/livereload.js?port=%d&mindelay=10"></' + 'script>')</script>%s`
|
||||
replace := []byte(fmt.Sprintf(replaceTemplate, port, endBodyTag))
|
||||
|
||||
newcontent := bytes.Replace(ct.Content(), match, replace, 1)
|
||||
if len(newcontent) == len(ct.Content()) {
|
||||
endBodyTag = "</BODY>"
|
||||
replace := []byte(fmt.Sprintf(replaceTemplate, port, endBodyTag))
|
||||
func LiveReloadInject(port int) func(ct contentTransformer) {
|
||||
return func(ct contentTransformer) {
|
||||
endBodyTag := "</body>"
|
||||
match := []byte(endBodyTag)
|
||||
newcontent = bytes.Replace(ct.Content(), match, replace, 1)
|
||||
}
|
||||
replaceTemplate := `<script data-no-instant>document.write('<script src="/livereload.js?port=%d&mindelay=10"></' + 'script>')</script>%s`
|
||||
replace := []byte(fmt.Sprintf(replaceTemplate, port, endBodyTag))
|
||||
|
||||
ct.Write(newcontent)
|
||||
newcontent := bytes.Replace(ct.Content(), match, replace, 1)
|
||||
if len(newcontent) == len(ct.Content()) {
|
||||
endBodyTag = "</BODY>"
|
||||
replace := []byte(fmt.Sprintf(replaceTemplate, port, endBodyTag))
|
||||
match := []byte(endBodyTag)
|
||||
newcontent = bytes.Replace(ct.Content(), match, replace, 1)
|
||||
}
|
||||
|
||||
ct.Write(newcontent)
|
||||
}
|
||||
}
|
||||
|
@@ -18,8 +18,6 @@ import (
|
||||
"fmt"
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
func TestLiveReloadInject(t *testing.T) {
|
||||
@@ -28,11 +26,10 @@ 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 := NewChain(LiveReloadInject(1313))
|
||||
tr.Apply(out, in, []byte("path"))
|
||||
|
||||
expected := fmt.Sprintf(`<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script>%s`, bodyEndTag)
|
||||
|
Reference in New Issue
Block a user