forked from hashicorp/consul-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_test.go
61 lines (52 loc) · 1.27 KB
/
main_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"testing"
dep "github.com/hashicorp/consul-template/dependency"
"github.com/hashicorp/consul-template/test"
"github.com/hashicorp/consul/sdk/testutil"
)
var testConsul *testutil.TestServer
var testClients *dep.ClientSet
func TestMain(m *testing.M) {
log.SetOutput(ioutil.Discard)
tb := &test.TestingTB{}
consul, err := testutil.NewTestServerConfigT(tb,
func(c *testutil.TestServerConfig) {
c.LogLevel = "warn"
c.Stdout = ioutil.Discard
c.Stderr = ioutil.Discard
})
if err != nil {
log.Fatal(fmt.Errorf("failed to start consul server: %v", err))
}
testConsul = consul
clients := dep.NewClientSet()
if err := clients.CreateConsulClient(&dep.CreateConsulClientInput{
Address: testConsul.HTTPAddr,
}); err != nil {
testConsul.Stop()
log.Fatal(err)
}
testClients = clients
exitCh := make(chan int, 1)
func() {
defer func() {
// Attempt to recover from a panic and stop the server. If we don't stop
// it, the panic will cause the server to remain running in the
// background. Here we catch the panic and the re-raise it.
if r := recover(); r != nil {
testConsul.Stop()
panic(r)
}
}()
exitCh <- m.Run()
}()
exit := <-exitCh
tb.DoCleanup()
testConsul.Stop()
os.Exit(exit)
}