LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2011, 2012, 2013 Canonical Ltd. | 1 // Copyright 2011, 2012, 2013 Canonical Ltd. |
2 // Licensed under the AGPLv3, see LICENCE file for details. | 2 // Licensed under the AGPLv3, see LICENCE file for details. |
3 | 3 |
4 package charm_test | 4 package charm_test |
5 | 5 |
6 import ( | 6 import ( |
7 "bytes" | 7 "bytes" |
8 "fmt" | 8 "fmt" |
9 . "launchpad.net/gocheck" | 9 . "launchpad.net/gocheck" |
10 "launchpad.net/juju-core/charm" | 10 "launchpad.net/juju-core/charm" |
(...skipping 30 matching lines...) Expand all Loading... |
41 type: float | 41 type: float |
42 reticulate-splines: | 42 reticulate-splines: |
43 description: Whether to reticulate splines on launch, or not. | 43 description: Whether to reticulate splines on launch, or not. |
44 type: boolean | 44 type: boolean |
45 `))) | 45 `))) |
46 c.Assert(err, IsNil) | 46 c.Assert(err, IsNil) |
47 } | 47 } |
48 | 48 |
49 func (s *ConfigSuite) TestReadSample(c *C) { | 49 func (s *ConfigSuite) TestReadSample(c *C) { |
50 c.Assert(s.config.Options, DeepEquals, map[string]charm.Option{ | 50 c.Assert(s.config.Options, DeepEquals, map[string]charm.Option{ |
51 » » "title": charm.Option{ | 51 » » "title": { |
52 Default: "My Title", | 52 Default: "My Title", |
53 Description: "A descriptive title used for the service."
, | 53 Description: "A descriptive title used for the service."
, |
54 Type: "string", | 54 Type: "string", |
55 }, | 55 }, |
56 » » "username": charm.Option{ | 56 » » "username": { |
57 Default: "admin001", | 57 Default: "admin001", |
58 Description: "The name of the initial account (given adm
in permissions).", | 58 Description: "The name of the initial account (given adm
in permissions).", |
59 Type: "string", | 59 Type: "string", |
60 }, | 60 }, |
61 » » "outlook": charm.Option{ | 61 » » "outlook": { |
62 Description: "No default outlook.", | 62 Description: "No default outlook.", |
63 Type: "string", | 63 Type: "string", |
64 }, | 64 }, |
65 » » "skill-level": charm.Option{ | 65 » » "skill-level": { |
66 Description: "A number indicating skill.", | 66 Description: "A number indicating skill.", |
67 Type: "int", | 67 Type: "int", |
68 }, | 68 }, |
69 » » "agility-ratio": charm.Option{ | 69 » » "agility-ratio": { |
70 Description: "A number from 0 to 1 indicating agility.", | 70 Description: "A number from 0 to 1 indicating agility.", |
71 Type: "float", | 71 Type: "float", |
72 }, | 72 }, |
73 » » "reticulate-splines": charm.Option{ | 73 » » "reticulate-splines": { |
74 Description: "Whether to reticulate splines on launch, o
r not.", | 74 Description: "Whether to reticulate splines on launch, o
r not.", |
75 Type: "boolean", | 75 Type: "boolean", |
76 }, | 76 }, |
77 }) | 77 }) |
78 } | 78 } |
79 | 79 |
80 func (s *ConfigSuite) TestDefaultSettings(c *C) { | 80 func (s *ConfigSuite) TestDefaultSettings(c *C) { |
81 c.Assert(s.config.DefaultSettings(), DeepEquals, charm.Settings{ | 81 c.Assert(s.config.DefaultSettings(), DeepEquals, charm.Settings{ |
82 "title": "My Title", | 82 "title": "My Title", |
83 "username": "admin001", | 83 "username": "admin001", |
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 _, err := charm.ReadConfig(bytes.NewBuffer([]byte(config))) | 384 _, err := charm.ReadConfig(bytes.NewBuffer([]byte(config))) |
385 expected := fmt.Sprintf(`invalid config default: option "t" expe
cted %s, got %s`, type_, value) | 385 expected := fmt.Sprintf(`invalid config default: option "t" expe
cted %s, got %s`, type_, value) |
386 c.Assert(err, ErrorMatches, expected) | 386 c.Assert(err, ErrorMatches, expected) |
387 } | 387 } |
388 | 388 |
389 assertTypeError("boolean", "henry", `"henry"`) | 389 assertTypeError("boolean", "henry", `"henry"`) |
390 assertTypeError("string", "2.5", "2.5") | 390 assertTypeError("string", "2.5", "2.5") |
391 assertTypeError("float", "123", "123") | 391 assertTypeError("float", "123", "123") |
392 assertTypeError("int", "true", "true") | 392 assertTypeError("int", "true", "true") |
393 } | 393 } |
LEFT | RIGHT |