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

Unified Diff: juju/conn_test.go

Issue 6551044: state: check unit/service name validity
Patch Set: state: check unit/service name validity Created 12 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « juju/conn.go ('k') | state/service.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: juju/conn_test.go
=== modified file 'juju/conn_test.go'
--- juju/conn_test.go 2012-09-06 03:24:11 +0000
+++ juju/conn_test.go 2012-09-20 09:03:53 +0000
@@ -130,20 +130,3 @@
c.Assert(err, IsNil)
c.Assert(cfg.UnknownAttrs()["secret"], Equals, "pork")
}
-
-func (*ConnSuite) TestValidRegexps(c *C) {
- assertService := func(s string, expect bool) {
- c.Assert(juju.ValidService.MatchString(s), Equals, expect)
- c.Assert(juju.ValidUnit.MatchString(s+"/0"), Equals, expect)
- c.Assert(juju.ValidUnit.MatchString(s+"/99"), Equals, expect)
- c.Assert(juju.ValidUnit.MatchString(s+"/-1"), Equals, false)
- c.Assert(juju.ValidUnit.MatchString(s+"/blah"), Equals, false)
- }
- assertService("", false)
- assertService("33", false)
- assertService("wordpress", true)
- assertService("w0rd-pre55", true)
- assertService("foo2", true)
- assertService("foo-2", false)
- assertService("foo-2foo", true)
-}
« no previous file with comments | « juju/conn.go ('k') | state/service.go » ('j') | no next file with comments »

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