1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-12-02 15:37:52 +01:00
gojekyll/utils/filepath_test.go

47 lines
1.1 KiB
Go
Raw Normal View History

2017-07-09 22:17:20 +02:00
package utils
import (
2017-08-20 19:34:47 +02:00
"os"
2017-07-03 17:48:06 +02:00
"strings"
"testing"
2017-07-03 16:39:55 +02:00
"time"
"github.com/stretchr/testify/require"
)
2017-07-03 16:39:55 +02:00
func timeMustParse(s string) time.Time {
t, err := time.Parse(time.RFC3339, s)
if err != nil {
panic(err)
}
return t
}
2017-07-03 17:48:06 +02:00
func TestMustAbs(t *testing.T) {
require.True(t, strings.HasPrefix(MustAbs("."), "/"))
}
2017-08-20 18:22:58 +02:00
func TestParseFilenameDate(t *testing.T) {
2017-08-20 19:34:47 +02:00
os.Setenv("TZ", "America/New_York") // nolint: errcheck
2017-08-20 18:22:58 +02:00
d, title, found := ParseFilenameDateTitle("2017-07-02-post.html")
2017-07-03 16:39:55 +02:00
require.True(t, found)
2017-08-20 18:22:58 +02:00
require.Equal(t, "Post", title)
require.Equal(t, timeMustParse("2017-07-02T00:00:00-04:00"), d)
2017-07-03 16:39:55 +02:00
2017-08-20 18:22:58 +02:00
_, _, found = ParseFilenameDateTitle("not-post.html")
2017-07-03 16:39:55 +02:00
require.False(t, found)
}
func TestTrimExt(t *testing.T) {
require.Equal(t, "/a/b", TrimExt("/a/b.c"))
require.Equal(t, "/a/b", TrimExt("/a/b"))
}
func TestURLPathClean(t *testing.T) {
require.Equal(t, "/a/b", URLPathClean("/a/b"))
require.Equal(t, "/a/b/", URLPathClean("/a/b/"))
require.Equal(t, "/a/b", URLPathClean("/a//b"))
require.Equal(t, "/b", URLPathClean("/a/../b"))
require.Equal(t, "/", URLPathClean("/"))
}