summaryrefslogtreecommitdiffstats
path: root/parser/frontmatter_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'parser/frontmatter_test.go')
-rw-r--r--parser/frontmatter_test.go70
1 files changed, 70 insertions, 0 deletions
diff --git a/parser/frontmatter_test.go b/parser/frontmatter_test.go
index 5aef3562f..85c7c1874 100644
--- a/parser/frontmatter_test.go
+++ b/parser/frontmatter_test.go
@@ -15,7 +15,9 @@ package parser
import (
"bytes"
+ "fmt"
"reflect"
+ "strings"
"testing"
)
@@ -317,3 +319,71 @@ func TestRemoveTOMLIdentifier(t *testing.T) {
}
}
}
+
+func BenchmarkFrontmatterTags(b *testing.B) {
+
+ for _, frontmatter := range []string{"JSON", "YAML", "TOML"} {
+ for i := 1; i < 30; i += 10 {
+ doBenchmarkFrontmatter(b, frontmatter, i)
+ }
+ }
+}
+
+func doBenchmarkFrontmatter(b *testing.B, fileformat string, numTags int) {
+ yamlTemplate := `---
+name: "Tags"
+tags:
+%s
+---
+`
+ tomlTemplate := `+++
+name = "Tags"
+tags = %s
++++
+`
+
+ jsonTemplate := `{
+ "name": "Tags",
+ "tags": [
+ %s
+ ]
+}`
+ name := fmt.Sprintf("%s:%d", fileformat, numTags)
+ b.Run(name, func(b *testing.B) {
+ tags := make([]string, numTags)
+ var (
+ tagsStr string
+ frontmatterTemplate string
+ )
+ for i := 0; i < numTags; i++ {
+ tags[i] = fmt.Sprintf("Hugo %d", i+1)
+ }
+ if fileformat == "TOML" {
+ frontmatterTemplate = tomlTemplate
+ tagsStr = strings.Replace(fmt.Sprintf("%q", tags), " ", ", ", -1)
+ } else if fileformat == "JSON" {
+ frontmatterTemplate = jsonTemplate
+ tagsStr = strings.Replace(fmt.Sprintf("%q", tags), " ", ", ", -1)
+ } else {
+ frontmatterTemplate = yamlTemplate
+ for _, tag := range tags {
+ tagsStr += "\n- " + tag
+ }
+ }
+
+ frontmatter := fmt.Sprintf(frontmatterTemplate, tagsStr)
+
+ p := page{frontmatter: []byte(frontmatter)}
+
+ b.ResetTimer()
+ for i := 0; i < b.N; i++ {
+ meta, err := p.Metadata()
+ if err != nil {
+ b.Fatal(err)
+ }
+ if meta == nil {
+ b.Fatal("Meta is nil")
+ }
+ }
+ })
+}