mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 09:24:38 +01:00
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
package collections
|
|
|
|
import (
|
|
"path"
|
|
"testing"
|
|
|
|
"github.com/osteele/gojekyll/config"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
var tests = []struct{ in, out string }{
|
|
{"pre</head>post", "pre:insertion:</head>post"},
|
|
{"pre:insertion:</head>post", "pre:insertion:</head>post"},
|
|
{"post", ":insertion:post"},
|
|
}
|
|
|
|
type MockContainer struct{ c config.Config }
|
|
|
|
func (c MockContainer) Config() config.Config { return c.c }
|
|
func (c MockContainer) PathPrefix() string { return "" }
|
|
func (c MockContainer) OutputExt(filename string) string { return path.Ext(filename) }
|
|
|
|
func TestNewCollection(t *testing.T) {
|
|
ctx := MockContainer{config.Default()}
|
|
|
|
c1 := NewCollection("c", map[string]interface{}{"output": true}, ctx)
|
|
require.Equal(t, true, c1.Output())
|
|
require.Equal(t, "_c/", c1.PathPrefix())
|
|
|
|
c2 := NewCollection("c", map[string]interface{}{}, ctx)
|
|
require.Equal(t, false, c2.Output())
|
|
}
|
|
|
|
func TestPermalinkPattern(t *testing.T) {
|
|
ctx := MockContainer{config.Default()}
|
|
|
|
c1 := NewCollection("c", map[string]interface{}{}, ctx)
|
|
require.Contains(t, c1.PermalinkPattern(), ":collection")
|
|
|
|
c2 := NewCollection("c", map[string]interface{}{"permalink": "out"}, ctx)
|
|
require.Equal(t, "out", c2.PermalinkPattern())
|
|
|
|
c3 := NewCollection("posts", map[string]interface{}{}, ctx)
|
|
require.Contains(t, c3.PermalinkPattern(), "/:year/:month/:day/:title")
|
|
}
|