2015-04-15 14:31:05 -04:00
|
|
|
package helpers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2015-05-20 02:21:21 -04:00
|
|
|
|
|
|
|
"github.com/spf13/viper"
|
2015-04-15 14:31:05 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestParsePygmentsArgs(t *testing.T) {
|
|
|
|
for i, this := range []struct {
|
|
|
|
in string
|
|
|
|
pygmentsStyle string
|
|
|
|
pygmentsUseClasses bool
|
|
|
|
expect1 interface{}
|
|
|
|
}{
|
|
|
|
{"", "foo", true, "style=foo,noclasses=false,encoding=utf8"},
|
|
|
|
{"style=boo,noclasses=true", "foo", true, "encoding=utf8,noclasses=true,style=boo"},
|
|
|
|
{"Style=boo, noClasses=true", "foo", true, "encoding=utf8,noclasses=true,style=boo"},
|
|
|
|
{"noclasses=true", "foo", true, "encoding=utf8,noclasses=true,style=foo"},
|
|
|
|
{"style=boo", "foo", true, "encoding=utf8,noclasses=false,style=boo"},
|
|
|
|
{"boo=invalid", "foo", false, false},
|
|
|
|
{"style", "foo", false, false},
|
|
|
|
} {
|
2015-05-20 02:21:21 -04:00
|
|
|
viper.Reset()
|
2015-04-15 14:31:05 -04:00
|
|
|
viper.Set("PygmentsStyle", this.pygmentsStyle)
|
|
|
|
viper.Set("PygmentsUseClasses", this.pygmentsUseClasses)
|
|
|
|
|
|
|
|
result1, err := parsePygmentsOpts(this.in)
|
|
|
|
if b, ok := this.expect1.(bool); ok && !b {
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("[%d] parsePygmentArgs didn't return an expected error", i)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("[%d] parsePygmentArgs failed: %s", i, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if result1 != this.expect1 {
|
|
|
|
t.Errorf("[%d] parsePygmentArgs got %v but expected %v", i, result1, this.expect1)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|