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

Delta Between Two Patch Sets: environs/openstack/export_test.go

Issue 7086055: Add putFakeTools to openstack tests (Closed)
Left Patch Set: Add putFakeTools to openstack tests Created 12 years, 2 months ago
Right Patch Set: Add putFakeTools to openstack tests Created 12 years, 2 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « environs/ec2/local_test.go ('k') | environs/openstack/live_test.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
1 package openstack 1 package openstack
2 2
3 import ( 3 import (
4 "fmt"
5 "launchpad.net/goose/swift"
4 "launchpad.net/juju-core/environs" 6 "launchpad.net/juju-core/environs"
5 "launchpad.net/juju-core/trivial" 7 "launchpad.net/juju-core/trivial"
6 "net/http" 8 "net/http"
7 ) 9 )
8 10
9 func init() { 11 func init() {
10 http.DefaultTransport.(*http.Transport).RegisterProtocol("file", http.Ne wFileTransport(http.Dir("testdata"))) 12 http.DefaultTransport.(*http.Transport).RegisterProtocol("file", http.Ne wFileTransport(http.Dir("testdata")))
11 } 13 }
12 14
13 var origMetadataHost = metadataHost 15 var origMetadataHost = metadataHost
(...skipping 23 matching lines...) Expand all
37 shortAttempt = originalShortAttempt 39 shortAttempt = originalShortAttempt
38 longAttempt = originalLongAttempt 40 longAttempt = originalLongAttempt
39 } 41 }
40 } 42 }
41 43
42 var ShortAttempt = &shortAttempt 44 var ShortAttempt = &shortAttempt
43 45
44 func DeleteStorageContent(s environs.Storage) error { 46 func DeleteStorageContent(s environs.Storage) error {
45 return s.(*storage).deleteAll() 47 return s.(*storage).deleteAll()
46 } 48 }
49
50 // WritablePublicStorage returns a Storage instance which is authorised to write to the PublicStorage bucket.
51 // It is used by tests which need to upload files.
52 func WritablePublicStorage(e environs.Environ) environs.Storage {
53 ecfg := e.(*environ).ecfg()
54 authMethodCfg := AuthMethod(ecfg.authMethod())
55 writablePublicStorage := &storage{
56 containerName: ecfg.publicBucket(),
57 swift: swift.New(e.(*environ).client(ecfg, authMethodCfg )),
58 }
59
60 // Ensure the container exists.
61 err := writablePublicStorage.makeContainer(ecfg.publicBucket(), swift.Pu blicRead)
62 if err != nil {
63 panic(fmt.Errorf("cannot create writable public container: %v", err))
64 }
65 return writablePublicStorage
66 }
LEFTRIGHT

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