aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/config/common_test.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-11-08 23:46:38 +0100
committerGitHub <noreply@github.com>2016-11-08 23:46:38 +0100
commitac095bb12c4d29722b60ba9f20590fa7cfa6bc7d (patch)
tree223f36f336ba3414b1e45cac8af6c4744a5d7ef6 /plumbing/format/config/common_test.go
parente523701393598f4fa241dd407af9ff8925507a1a (diff)
downloadgo-git-ac095bb12c4d29722b60ba9f20590fa7cfa6bc7d.tar.gz
new plumbing package (#118)
* plumbing: now core was renamed to core, and formats and clients moved inside
Diffstat (limited to 'plumbing/format/config/common_test.go')
-rw-r--r--plumbing/format/config/common_test.go86
1 files changed, 86 insertions, 0 deletions
diff --git a/plumbing/format/config/common_test.go b/plumbing/format/config/common_test.go
new file mode 100644
index 0000000..365b53f
--- /dev/null
+++ b/plumbing/format/config/common_test.go
@@ -0,0 +1,86 @@
+package config
+
+import (
+ "testing"
+
+ . "gopkg.in/check.v1"
+)
+
+func Test(t *testing.T) { TestingT(t) }
+
+type CommonSuite struct{}
+
+var _ = Suite(&CommonSuite{})
+
+func (s *CommonSuite) TestConfig_SetOption(c *C) {
+ obtained := New().SetOption("section", NoSubsection, "key1", "value1")
+ expected := &Config{
+ Sections: []*Section{
+ {
+ Name: "section",
+ Options: []*Option{
+ {Key: "key1", Value: "value1"},
+ },
+ },
+ },
+ }
+ c.Assert(obtained, DeepEquals, expected)
+ obtained = obtained.SetOption("section", NoSubsection, "key1", "value1")
+ c.Assert(obtained, DeepEquals, expected)
+
+ obtained = New().SetOption("section", "subsection", "key1", "value1")
+ expected = &Config{
+ Sections: []*Section{
+ {
+ Name: "section",
+ Subsections: []*Subsection{
+ {
+ Name: "subsection",
+ Options: []*Option{
+ {Key: "key1", Value: "value1"},
+ },
+ },
+ },
+ },
+ },
+ }
+ c.Assert(obtained, DeepEquals, expected)
+ obtained = obtained.SetOption("section", "subsection", "key1", "value1")
+ c.Assert(obtained, DeepEquals, expected)
+}
+
+func (s *CommonSuite) TestConfig_AddOption(c *C) {
+ obtained := New().AddOption("section", NoSubsection, "key1", "value1")
+ expected := &Config{
+ Sections: []*Section{
+ {
+ Name: "section",
+ Options: []*Option{
+ {Key: "key1", Value: "value1"},
+ },
+ },
+ },
+ }
+ c.Assert(obtained, DeepEquals, expected)
+}
+
+func (s *CommonSuite) TestConfig_RemoveSection(c *C) {
+ sect := New().
+ AddOption("section1", NoSubsection, "key1", "value1").
+ AddOption("section2", NoSubsection, "key1", "value1")
+ expected := New().
+ AddOption("section1", NoSubsection, "key1", "value1")
+ c.Assert(sect.RemoveSection("other"), DeepEquals, sect)
+ c.Assert(sect.RemoveSection("section2"), DeepEquals, expected)
+}
+
+func (s *CommonSuite) TestConfig_RemoveSubsection(c *C) {
+ sect := New().
+ AddOption("section1", "sub1", "key1", "value1").
+ AddOption("section1", "sub2", "key1", "value1")
+ expected := New().
+ AddOption("section1", "sub1", "key1", "value1")
+ c.Assert(sect.RemoveSubsection("section1", "other"), DeepEquals, sect)
+ c.Assert(sect.RemoveSubsection("other", "other"), DeepEquals, sect)
+ c.Assert(sect.RemoveSubsection("section1", "sub2"), DeepEquals, expected)
+}