mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Add a shortcode benchmark
This commit is contained in:
parent
0f8dc47037
commit
c1a83076bf
1 changed files with 52 additions and 0 deletions
|
@ -297,6 +297,58 @@ func BenchmarkReplaceShortcodeTokens(b *testing.B) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func BenchmarkShortcodesInSite(b *testing.B) {
|
||||||
|
files := `
|
||||||
|
-- config.toml --
|
||||||
|
-- layouts/shortcodes/mark1.md --
|
||||||
|
{{ .Inner }}
|
||||||
|
-- layouts/shortcodes/mark2.md --
|
||||||
|
1. Item Mark2 1
|
||||||
|
1. Item Mark2 2
|
||||||
|
1. Item Mark2 2-1
|
||||||
|
1. Item Mark2 3
|
||||||
|
-- layouts/_default/single.html --
|
||||||
|
{{ .Content }}
|
||||||
|
`
|
||||||
|
|
||||||
|
content := `
|
||||||
|
---
|
||||||
|
title: "Markdown Shortcode"
|
||||||
|
---
|
||||||
|
|
||||||
|
## List
|
||||||
|
|
||||||
|
1. List 1
|
||||||
|
{{§ mark1 §}}
|
||||||
|
1. Item Mark1 1
|
||||||
|
1. Item Mark1 2
|
||||||
|
{{§ mark2 §}}
|
||||||
|
{{§ /mark1 §}}
|
||||||
|
|
||||||
|
`
|
||||||
|
|
||||||
|
for i := 1; i < 100; i++ {
|
||||||
|
files += fmt.Sprintf("\n-- content/posts/p%d.md --\n"+content, i+1)
|
||||||
|
}
|
||||||
|
files = strings.ReplaceAll(files, "§", "%")
|
||||||
|
|
||||||
|
cfg := IntegrationTestConfig{
|
||||||
|
T: b,
|
||||||
|
TxtarString: files,
|
||||||
|
}
|
||||||
|
builders := make([]*IntegrationTestBuilder, b.N)
|
||||||
|
|
||||||
|
for i := range builders {
|
||||||
|
builders[i] = NewIntegrationTestBuilder(cfg)
|
||||||
|
}
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
|
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
builders[i].Build()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestReplaceShortcodeTokens(t *testing.T) {
|
func TestReplaceShortcodeTokens(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
for i, this := range []struct {
|
for i, this := range []struct {
|
||||||
|
|
Loading…
Reference in a new issue