mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-26 19:34:52 +01:00
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package pages
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"testing"
|
|
|
|
"github.com/danog/gojekyll/config"
|
|
"github.com/danog/gojekyll/renderers"
|
|
"github.com/danog/liquid"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
type siteFake struct {
|
|
t *testing.T
|
|
cfg config.Config
|
|
}
|
|
|
|
func (s siteFake) Config() *config.Config { return &s.cfg }
|
|
func (s siteFake) RelativePath(p string) string { return p }
|
|
func (s siteFake) RendererManager() renderers.Renderers { return &renderManagerFake{s.t} }
|
|
|
|
type renderManagerFake struct{ t *testing.T }
|
|
|
|
func (rm renderManagerFake) ApplyLayout(layout string, content []byte, vars liquid.Bindings) ([]byte, error) {
|
|
require.Equal(rm.t, "layout1", layout)
|
|
return content, nil
|
|
}
|
|
|
|
func (rm renderManagerFake) Render(w io.Writer, src []byte, vars liquid.Bindings, filename string, lineNo int) error {
|
|
if bytes.Contains(src, []byte("{% error %}")) {
|
|
return fmt.Errorf("render error")
|
|
}
|
|
_, err := io.WriteString(w, "rendered: ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = w.Write(src)
|
|
return err
|
|
}
|
|
|
|
func (rm renderManagerFake) RenderTemplate(src []byte, vars liquid.Bindings, filename string, lineNo int) ([]byte, error) {
|
|
return append([]byte("rendered: "), src...), nil
|
|
}
|