Add benchmark for sort and reverse
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Jul 2015 19:01:56 +0000 (21:01 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 21 Jul 2015 19:08:20 +0000 (21:08 +0200)
bench.sh
hugolib/pageSort_test.go [new file with mode: 0644]

index 27335287d440fcd9c391420b10bd694bea421228..367a744030bcbe95ecdf634b9045175d02cd9e14 100755 (executable)
--- a/bench.sh
+++ b/bench.sh
@@ -7,21 +7,29 @@
 # - Do the same for master
 # - then compare the two runs with benchcmp
 
-if [ $# -ne 2 ]
+benchFilter=".*"
+
+if (( $# < 2 ));
   then
-    echo "USAGE: ./bench.sh <git-branch> <package-to-bench>"
+    echo "USAGE: ./bench.sh <git-branch> <package-to-bench> (and <benchmark filter> (regexp, optional))"
     exit 1
 fi
 
 
+
+if [ $# -eq 3 ]; then
+  benchFilter=$3
+fi
+
+
 BRANCH=$1
 PACKAGE=$2
 
 git checkout $BRANCH
-go test -test.run=NONE -bench=".*" -test.benchmem=true ./$PACKAGE > /tmp/bench-$PACKAGE-$BRANCH.txt
+go test -test.run=NONE -bench="$benchFilter" -test.benchmem=true ./$PACKAGE > /tmp/bench-$PACKAGE-$BRANCH.txt
 
 git checkout master
-go test -test.run=NONE -bench=".*" -test.benchmem=true ./$PACKAGE > /tmp/bench-$PACKAGE-master.txt
+go test -test.run=NONE -bench="$benchFilter" -test.benchmem=true ./$PACKAGE > /tmp/bench-$PACKAGE-master.txt
 
 
 benchcmp /tmp/bench-$PACKAGE-master.txt /tmp/bench-$PACKAGE-$BRANCH.txt
\ No newline at end of file
diff --git a/hugolib/pageSort_test.go b/hugolib/pageSort_test.go
new file mode 100644 (file)
index 0000000..18b16bb
--- /dev/null
@@ -0,0 +1,57 @@
+package hugolib
+
+import (
+       "fmt"
+       "github.com/stretchr/testify/assert"
+       "path/filepath"
+       "testing"
+
+       "github.com/spf13/hugo/source"
+)
+
+func TestPageSortReverse(t *testing.T) {
+       p := createSortTestPages(10)
+       assert.Equal(t, 0, p[0].FuzzyWordCount)
+       assert.Equal(t, 9, p[9].FuzzyWordCount)
+       p = p.Reverse()
+       assert.Equal(t, 9, p[0].FuzzyWordCount)
+       assert.Equal(t, 1, p[9].FuzzyWordCount)
+}
+
+func BenchmarkSortByWeightAndReverse(b *testing.B) {
+
+       p := createSortTestPages(300)
+
+       b.ResetTimer()
+       for i := 0; i < b.N; i++ {
+               p = p.ByWeight().Reverse()
+       }
+
+}
+
+func createSortTestPages(num int) Pages {
+       pages := make(Pages, num)
+
+       for i := 0; i < num; i++ {
+               pages[i] = &Page{
+                       Node: Node{
+                               URLPath: URLPath{
+                                       Section: "z",
+                                       URL:     fmt.Sprintf("http://base/x/y/p%d.html", i),
+                               },
+                               Site: &SiteInfo{
+                                       BaseURL: "http://base/",
+                               },
+                       },
+                       Source: Source{File: *source.NewFile(filepath.FromSlash(fmt.Sprintf("/x/y/p%d.md", i)))},
+               }
+               w := 5
+               if i%2 == 0 {
+                       w = 10
+               }
+               pages[i].FuzzyWordCount = i
+               pages[i].Weight = w
+       }
+
+       return pages
+}