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

Unified Diff: environs/tools/urls_test.go

Issue 13577045: Add simplestreams tools retry logic (Closed)
Patch Set: Add simplestreams tools retry logic Created 11 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
« environs/tools/tools.go ('K') | « environs/tools/urls.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: environs/tools/urls_test.go
=== modified file 'environs/tools/urls_test.go'
--- environs/tools/urls_test.go 2013-09-12 14:16:48 +0000
+++ environs/tools/urls_test.go 2013-09-18 07:36:07 +0000
@@ -8,9 +8,11 @@
"launchpad.net/juju-core/environs"
sstesting "launchpad.net/juju-core/environs/simplestreams/testing"
+ "launchpad.net/juju-core/environs/storage"
"launchpad.net/juju-core/environs/tools"
"launchpad.net/juju-core/provider/dummy"
"launchpad.net/juju-core/testing"
+ jc "launchpad.net/juju-core/testing/checkers"
)
type URLsSuite struct {
@@ -59,4 +61,26 @@
c.Assert(err, gc.IsNil)
sstesting.AssertExpectedSources(c, sources, []string{
"config-tools-url/", privateStorageURL, "https://juju.canonical.com/tools/"})
+ haveExpectedSources := false
+ for _, source := range sources {
+ haveExpectedSources = true
+ if allowRetry, ok := storage.TestingGetAllowRetry(source); ok {
+ c.Assert(allowRetry, jc.IsFalse)
+ }
+ }
+ c.Assert(haveExpectedSources, jc.IsTrue)
fwereade 2013/09/19 12:59:38 doesn't the AssertExpectedSources guarantee that w
wallyworld 2013/09/20 00:33:57 Bah. haveExpectedSources = true was in the wrong s
+}
+
+func (s *URLsSuite) TestToolsSourcesWithRetry(c *gc.C) {
+ env := s.env(c, "")
+ sources, err := tools.GetMetadataSourcesWithRetries(env, true)
+ c.Assert(err, gc.IsNil)
+ haveExpectedSources := false
+ for _, source := range sources {
+ haveExpectedSources = true
+ if allowRetry, ok := storage.TestingGetAllowRetry(source); ok {
+ c.Assert(allowRetry, jc.IsTrue)
+ }
+ }
+ c.Assert(haveExpectedSources, jc.IsTrue)
}
fwereade 2013/09/19 12:59:38 Is this missing an AssertExpectedSources?
wallyworld 2013/09/20 00:33:57 Sigh. Yes.
« environs/tools/tools.go ('K') | « environs/tools/urls.go ('k') | no next file » | no next file with comments »

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