LEFT | RIGHT |
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 Loading... |
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 } |
LEFT | RIGHT |