LEFT | RIGHT |
(no file at all) | |
| 1 package openstack |
| 2 |
| 3 import ( |
| 4 "launchpad.net/juju-core/trivial" |
| 5 "net/http" |
| 6 ) |
| 7 |
| 8 func init() { |
| 9 http.DefaultTransport.(*http.Transport).RegisterProtocol("file", http.Ne
wFileTransport(http.Dir("testdata"))) |
| 10 } |
| 11 |
| 12 var origMetadataHost = metadataHost |
| 13 |
| 14 func UseTestMetadata(local bool) { |
| 15 if local { |
| 16 metadataHost = "file:" |
| 17 } else { |
| 18 metadataHost = origMetadataHost |
| 19 } |
| 20 } |
| 21 |
| 22 var originalShortAttempt = shortAttempt |
| 23 var originalLongAttempt = longAttempt |
| 24 |
| 25 // ShortTimeouts sets the timeouts to a short period as we |
| 26 // know that the testing server doesn't get better with time, |
| 27 // and this reduces the test time from 30s to 3s. |
| 28 func ShortTimeouts(short bool) { |
| 29 if short { |
| 30 shortAttempt = trivial.AttemptStrategy{ |
| 31 Total: 0.25e9, |
| 32 Delay: 0.01e9, |
| 33 } |
| 34 longAttempt = shortAttempt |
| 35 } else { |
| 36 shortAttempt = originalShortAttempt |
| 37 longAttempt = originalLongAttempt |
| 38 } |
| 39 } |
| 40 |
| 41 var ShortAttempt = &shortAttempt |
LEFT | RIGHT |