-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblog_test.go
123 lines (104 loc) · 3.4 KB
/
blog_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//
// Blackblog
// Copyright 2012 Google Inc. All rights reserved.
//
// 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.
//
package main
import (
"testing"
"github.com/russross/blackfriday/v2"
)
func verifyConfig(b *Blog, t *testing.T) {
if b == nil {
t.Fatalf("Blog should not be nil")
}
expectations := []struct {
actual, expected, field string
}{
{b.Title(), "Head of a Cow", "Title"},
{b.config.PostsDir, "./", "PostsDir"},
{b.config.TemplatesDir, "../templates", "TemplatesDir"},
{b.StaticFilesDir(), "templates/static", "StaticFilesDir"},
{b.config.OutputDir, "../out/", "OutputDir"},
{b.configPath, "tests/blackblog.json", "configPath"},
}
for _, e := range expectations {
if e.actual != e.expected {
t.Errorf("%s should be %q, got %q", e.field, e.expected, e.actual)
}
}
port := 8066
if b.Port() != port {
t.Errorf("Port should be %d, got %d", port, b.Port())
}
}
func TestReadWithoutSuffix(t *testing.T) {
b, e := ReadBlog("./tests")
if e != nil {
t.Fatalf("Unexpected error reading blog: %v", e)
}
verifyConfig(b, t)
}
func TestReadWithSuffix(t *testing.T) {
b, e := ReadBlog("./tests/blackblog.json")
if e != nil {
t.Fatalf("Unexpected error reading blog: %v", e)
}
verifyConfig(b, t)
}
func TestGetPaths(t *testing.T) {
blog := &Blog{
configPath: "/abs/path/blackblog.json",
config: configFile{
OutputDir: "../blog_out",
PostsDir: "./posts",
},
}
var a, e string
e = "/abs/blog_out"
a = blog.GetOutputDir()
if a != e {
t.Errorf("GetOutputDir() should return %q, got %q", e, a)
}
e = "/abs/path/posts"
a = blog.GetPostsDir()
if a != e {
t.Errorf("GetPostsDir() should return %q, got %q", e, a)
}
}
func TestExtensionsAndOptions(t *testing.T) {
blog := &Blog{config: configFile{
MarkdownExtensions: []string{"EXTENSION_FOOTNOTES", "EXTENSION_NO_INTRA_EMPHASIS"},
MarkdownHTMLOptions: []string{"HTML_USE_SMARTYPANTS", "HTML_USE_XHTML", "HTML_SMARTYPANTS_LATEX_DASHES", "HTML_SAFELINK", "HTML_TOC"},
}}
blog.parseOptions()
extensions := blog.GetMarkdownExtensions()
if extensions != blackfriday.Footnotes|blackfriday.NoIntraEmphasis {
t.Errorf("Incorrect extensions-to-flags conversion")
}
options := blog.GetMarkdownHTMLOptions()
if options != blackfriday.Smartypants|blackfriday.UseXHTML|blackfriday.SmartypantsLatexDashes|blackfriday.Safelink|blackfriday.TOC {
t.Errorf("Incorrect HTML-options-to-flags conversion")
}
// If there are no HTML options in a blog, then use the old defaults.
blog = &Blog{}
blog.parseOptions()
if blog.GetMarkdownExtensions() != 0 {
t.Errorf("Default markdown extensions should be empty, got %#x", blog.GetMarkdownExtensions())
}
expected := blackfriday.Smartypants | blackfriday.UseXHTML | blackfriday.SmartypantsLatexDashes | blackfriday.SmartypantsDashes
if blog.GetMarkdownHTMLOptions() != expected {
t.Errorf("Default markdown HTML options should be %#x, got %#x", expected, blog.GetMarkdownHTMLOptions())
}
}