Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1)

Delta Between Two Patch Sets: charm/config_test.go

Issue 9738043: cmd/jujud: do not change password
Left Patch Set: cmd/jujud: do not change password Created 11 years, 9 months ago
Right Patch Set: cmd/jujud: do not change password Created 11 years, 9 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « charm/charm_test.go ('k') | charm/repo.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b