2018-08-05 05:13:49 -04:00
|
|
|
// Copyright 2018 The Hugo Authors. All rights reserved.
|
2015-12-10 17:19:38 -05:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2018-08-05 05:13:49 -04:00
|
|
|
package livereloadinject
|
2015-10-14 03:41:54 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2016-02-06 12:28:26 -05:00
|
|
|
"fmt"
|
2016-05-07 17:34:53 -04:00
|
|
|
"strings"
|
2015-10-14 03:41:54 -04:00
|
|
|
"testing"
|
2018-08-05 05:13:49 -04:00
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/transform"
|
2015-10-14 03:41:54 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestLiveReloadInject(t *testing.T) {
|
2016-02-06 12:28:26 -05:00
|
|
|
doTestLiveReloadInject(t, "</body>")
|
|
|
|
doTestLiveReloadInject(t, "</BODY>")
|
|
|
|
}
|
|
|
|
|
|
|
|
func doTestLiveReloadInject(t *testing.T, bodyEndTag string) {
|
2015-10-14 03:41:54 -04:00
|
|
|
out := new(bytes.Buffer)
|
2016-05-07 17:34:53 -04:00
|
|
|
in := strings.NewReader(bodyEndTag)
|
2015-10-14 03:41:54 -04:00
|
|
|
|
2018-08-05 05:13:49 -04:00
|
|
|
tr := transform.New(New(1313))
|
|
|
|
tr.Apply(out, in)
|
2015-10-14 03:41:54 -04:00
|
|
|
|
2016-06-16 12:43:47 -04:00
|
|
|
expected := fmt.Sprintf(`<script data-no-instant>document.write('<script src="/livereload.js?port=1313&mindelay=10"></' + 'script>')</script>%s`, bodyEndTag)
|
2019-03-24 05:11:16 -04:00
|
|
|
if out.String() != expected {
|
|
|
|
t.Errorf("Expected %s got %s", expected, out.String())
|
2015-10-14 03:41:54 -04:00
|
|
|
}
|
|
|
|
}
|