1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
package goconfigparser
import (
"io/ioutil"
"sort"
"strings"
"testing"
. "gopkg.in/check.v1"
)
// Hook up gocheck into the "go test" runner
func Test(t *testing.T) { TestingT(t) }
// partition specific testsuite
type ConfigParserTestSuite struct {
cfg *ConfigParser
}
var _ = Suite(&ConfigParserTestSuite{})
const SAMPLE_INI = `
# comment: text
; indented_comment: text
[service]
base: system-image.ubuntu.com
http_port: 80
https_port: 443
channel: ubuntu-core/devel-proposed
device: generic_amd64
build_number: 246
version_detail: ubuntu=20150121,raw-device=20150121,version=246
[foo]
bar: baz
yesbool: On
nobool: off
float: 3.14
no_interpolation: %%no
[testOptions]
One: 1
Two: 2
[complex]
json_object: {"list":["foo","bar","with\nnewline"]}
json_list: ["foo","bar","with\nnewline"]
`
func (s *ConfigParserTestSuite) SetUpTest(c *C) {
s.cfg = New()
c.Assert(s.cfg, NotNil)
err := s.cfg.ReadString(SAMPLE_INI)
c.Assert(err, IsNil)
}
func (s *ConfigParserTestSuite) TestSection(c *C) {
sections := s.cfg.Sections()
sort.Strings(sections)
c.Assert(sections, DeepEquals, []string{"complex", "foo", "service", "testOptions"})
}
func (s *ConfigParserTestSuite) TestOptions(c *C) {
options, err := s.cfg.Options("testOptions")
c.Assert(err, IsNil)
sort.Strings(options)
c.Assert(options, DeepEquals, []string{"One", "Two"})
}
func (s *ConfigParserTestSuite) TestGet(c *C) {
val, err := s.cfg.Get("service", "base")
c.Assert(err, IsNil)
c.Assert(val, Equals, "system-image.ubuntu.com")
}
func (s *ConfigParserTestSuite) TestGetEscapeInterpolation(c *C) {
val, err := s.cfg.Get("foo", "no_interpolation")
c.Assert(err, IsNil)
c.Assert(val, Equals, "%no")
}
func (s *ConfigParserTestSuite) TestGetint(c *C) {
intval, err := s.cfg.Getint("service", "http_port")
c.Assert(err, IsNil)
c.Assert(intval, Equals, 80)
}
func (s *ConfigParserTestSuite) TestGetfloat(c *C) {
intval, err := s.cfg.Getfloat("foo", "float")
c.Assert(err, IsNil)
c.Assert(intval, Equals, 3.14)
}
func (s *ConfigParserTestSuite) TestGetbool(c *C) {
boolval, err := s.cfg.Getbool("foo", "yesbool")
c.Assert(err, IsNil)
c.Assert(boolval, Equals, true)
boolval, err = s.cfg.Getbool("foo", "nobool")
c.Assert(err, IsNil)
c.Assert(boolval, Equals, false)
boolval, err = s.cfg.Getbool("foo", "bar")
c.Assert(err.Error(), Equals, "No boolean: baz")
}
func (s *ConfigParserTestSuite) TestErrors(c *C) {
val, err := s.cfg.Get("foo", "bar")
c.Assert(err, IsNil)
c.Assert(val, Equals, "baz")
val, err = s.cfg.Get("foo", "no-such-option")
c.Assert(err, NotNil)
c.Assert(err.Error(), Equals, "No option no-such-option in section foo")
val, err = s.cfg.Get("no-such-section", "no-such-value")
c.Assert(err, NotNil)
c.Assert(err.Error(), Equals, "No section: no-such-section")
}
func (s *ConfigParserTestSuite) TestAllowNoSection(c *C) {
s.cfg = New()
s.cfg.AllowNoSectionHeader = true
err := s.cfg.Read(strings.NewReader(`foo=bar`))
c.Assert(err, IsNil)
val, err := s.cfg.Get("", "foo")
c.Assert(val, Equals, "bar")
}
func (s *ConfigParserTestSuite) TestReadFile(c *C) {
tmp, err := ioutil.TempFile("", "")
c.Assert(err, IsNil)
tmp.Write([]byte(SAMPLE_INI))
s.cfg = New()
err = s.cfg.ReadFile(tmp.Name())
c.Assert(err, IsNil)
val, err := s.cfg.Get("foo", "bar")
c.Assert(val, Equals, "baz")
}
func (s *ConfigParserTestSuite) TestGetComplex(c *C) {
val, err := s.cfg.Get("complex", "json_object")
c.Assert(err, IsNil)
c.Assert(val, Equals, `{"list":["foo","bar","with\nnewline"]}`)
val, err = s.cfg.Get("complex", "json_list")
c.Assert(err, IsNil)
c.Assert(val, Equals, `["foo","bar","with\nnewline"]`)
}
|