2013-05-08 21:13:15 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"cgl.tideland.biz/asserts"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestConfig_ParseConfig_Bad(t *testing.T) {
|
|
|
|
assert := asserts.NewTestingAsserts(t, true)
|
|
|
|
|
|
|
|
data := `
|
|
|
|
[commands]
|
|
|
|
foo = bar
|
|
|
|
`
|
|
|
|
|
|
|
|
_, err := parseConfig(data)
|
|
|
|
assert.NotNil(err, "should have an error")
|
|
|
|
}
|
|
|
|
|
2013-05-08 21:14:40 -04:00
|
|
|
func TestConfig_ParseConfig_DefaultConfig(t *testing.T) {
|
|
|
|
assert := asserts.NewTestingAsserts(t, true)
|
|
|
|
|
|
|
|
_, err := parseConfig(defaultConfig)
|
|
|
|
assert.Nil(err, "should be able to parse the default config")
|
|
|
|
}
|
|
|
|
|
2013-05-08 21:13:15 -04:00
|
|
|
func TestConfig_ParseConfig_Good(t *testing.T) {
|
|
|
|
assert := asserts.NewTestingAsserts(t, true)
|
|
|
|
|
|
|
|
data := `
|
|
|
|
[commands]
|
|
|
|
foo = "bar"
|
|
|
|
`
|
|
|
|
|
|
|
|
c, err := parseConfig(data)
|
|
|
|
assert.Nil(err, "should not have an error")
|
|
|
|
assert.Equal(c.CommandNames(), []string{"foo"}, "should have correct command names")
|
|
|
|
assert.Equal(c.Commands["foo"], "bar", "should have the command")
|
|
|
|
}
|