aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format/config/option_test.go
blob: 8588de1c10cb33e62098dfeeee3d4c8550d1c1f6 (plain) (blame)
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
package config

import (
	. "gopkg.in/check.v1"
)

type OptionSuite struct{}

var _ = Suite(&OptionSuite{})

func (s *OptionSuite) TestOptions_GetAll(c *C) {
	o := Options{
		&Option{"k", "v"},
		&Option{"ok", "v1"},
		&Option{"K", "v2"},
	}
	c.Assert(o.GetAll("k"), DeepEquals, []string{"v", "v2"})
	c.Assert(o.GetAll("K"), DeepEquals, []string{"v", "v2"})
	c.Assert(o.GetAll("ok"), DeepEquals, []string{"v1"})
	c.Assert(o.GetAll("unexistant"), DeepEquals, []string{})

	o = Options{}
	c.Assert(o.GetAll("k"), DeepEquals, []string{})
}

func (s *OptionSuite) TestOption_IsKey(c *C) {
	c.Assert((&Option{Key: "key"}).IsKey("key"), Equals, true)
	c.Assert((&Option{Key: "key"}).IsKey("KEY"), Equals, true)
	c.Assert((&Option{Key: "KEY"}).IsKey("key"), Equals, true)
	c.Assert((&Option{Key: "key"}).IsKey("other"), Equals, false)
	c.Assert((&Option{Key: "key"}).IsKey(""), Equals, false)
	c.Assert((&Option{Key: ""}).IsKey("key"), Equals, false)
}