mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
markup/goldmark: Add BenchmarkCodeblocks
This commit is contained in:
parent
bddcfd911c
commit
4ada09415d
1 changed files with 80 additions and 2 deletions
|
@ -15,6 +15,7 @@ package goldmark_test
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/gohugoio/hugo/hugolib"
|
"github.com/gohugoio/hugo/hugolib"
|
||||||
|
@ -131,7 +132,7 @@ title: "p1"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func BenchmarkSiteWithRenderHooks(b *testing.B) {
|
func BenchmarkRenderHooks(b *testing.B) {
|
||||||
files := `
|
files := `
|
||||||
-- config.toml --
|
-- config.toml --
|
||||||
-- layouts/_default/_markup/render-heading.html --
|
-- layouts/_default/_markup/render-heading.html --
|
||||||
|
@ -159,9 +160,15 @@ B.
|
||||||
|
|
||||||
C.
|
C.
|
||||||
|
|
||||||
## Hello3 [Test](https://example.com)
|
## Hello4 [Test](https://example.com)
|
||||||
|
|
||||||
D.
|
D.
|
||||||
|
|
||||||
|
[Test](https://example.com)
|
||||||
|
|
||||||
|
## Hello5
|
||||||
|
|
||||||
|
|
||||||
`
|
`
|
||||||
|
|
||||||
for i := 1; i < 100; i++ {
|
for i := 1; i < 100; i++ {
|
||||||
|
@ -184,3 +191,74 @@ D.
|
||||||
builders[i].Build()
|
builders[i].Build()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func BenchmarkCodeblocks(b *testing.B) {
|
||||||
|
files := `
|
||||||
|
-- config.toml --
|
||||||
|
[markup]
|
||||||
|
[markup.highlight]
|
||||||
|
anchorLineNos = false
|
||||||
|
codeFences = true
|
||||||
|
guessSyntax = false
|
||||||
|
hl_Lines = ''
|
||||||
|
lineAnchors = ''
|
||||||
|
lineNoStart = 1
|
||||||
|
lineNos = false
|
||||||
|
lineNumbersInTable = true
|
||||||
|
noClasses = true
|
||||||
|
style = 'monokai'
|
||||||
|
tabWidth = 4
|
||||||
|
-- layouts/_default/single.html --
|
||||||
|
{{ .Content }}
|
||||||
|
`
|
||||||
|
|
||||||
|
content := `
|
||||||
|
|
||||||
|
FENCEgo
|
||||||
|
package main
|
||||||
|
import "fmt"
|
||||||
|
func main() {
|
||||||
|
fmt.Println("hello world")
|
||||||
|
}
|
||||||
|
FENCE
|
||||||
|
|
||||||
|
FENCEbash
|
||||||
|
#!/bin/bash
|
||||||
|
# Usage: Hello World Bash Shell Script Using Variables
|
||||||
|
# Author: Vivek Gite
|
||||||
|
# -------------------------------------------------
|
||||||
|
|
||||||
|
# Define bash shell variable called var
|
||||||
|
# Avoid spaces around the assignment operator (=)
|
||||||
|
var="Hello World"
|
||||||
|
|
||||||
|
# print it
|
||||||
|
echo "$var"
|
||||||
|
|
||||||
|
# Another way of printing it
|
||||||
|
printf "%s\n" "$var"
|
||||||
|
FENCE
|
||||||
|
`
|
||||||
|
|
||||||
|
content = strings.ReplaceAll(content, "FENCE", "```")
|
||||||
|
|
||||||
|
for i := 1; i < 100; i++ {
|
||||||
|
files += fmt.Sprintf("\n-- content/posts/p%d.md --\n"+content, i+1)
|
||||||
|
}
|
||||||
|
|
||||||
|
cfg := hugolib.IntegrationTestConfig{
|
||||||
|
T: b,
|
||||||
|
TxtarString: files,
|
||||||
|
}
|
||||||
|
builders := make([]*hugolib.IntegrationTestBuilder, b.N)
|
||||||
|
|
||||||
|
for i := range builders {
|
||||||
|
builders[i] = hugolib.NewIntegrationTestBuilder(cfg)
|
||||||
|
}
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
|
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
builders[i].Build()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue