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

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

Issue 6850087: environs/config: make CA cert optional
Left Patch Set: environs/config: make CA cert optional Created 12 years, 4 months ago
Right Patch Set: environs/config: make CA cert optional Created 12 years, 4 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:
Right: Side by side diff | Download
« no previous file with change/comment | « environs/openstack/config_test.go ('k') | environs/openstack/local_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
(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
LEFTRIGHT

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