forked from skynetservices/skynet-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
doozer_test.go
78 lines (59 loc) · 1.88 KB
/
doozer_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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package skynet
import (
"os"
"testing"
)
func TestNewDoozerConnection(t *testing.T) {
logger := NewConsoleSemanticLogger("test_logger", os.Stdout)
doozer := NewDoozerConnection("localhost:1234", "localhost:4321", true, logger)
if doozer.Config.Uri != "localhost:1234" {
t.Error("NewDoozerConnection did not set doozer Uri")
}
if doozer.Config.BootUri != "localhost:4321" {
t.Error("NewDoozerConnection did not set doozer BootUri")
}
if doozer.Config.AutoDiscover != true {
t.Error("NewDoozerConnection did not set doozer AutoDiscover flag")
}
if doozer.Log != logger {
t.Error("NewDoozerConnection did not set doozer log")
}
}
func TestNewDoozerConnectionDefaultLogger(t *testing.T) {
doozer := NewDoozerConnection("localhost:1234", "localhost:4321", true, nil)
if doozer.Log == nil {
t.Error("NewDoozerConnection did not default logger")
}
}
func TestNewDoozerConnectionFromConfig(t *testing.T) {
logger := NewConsoleSemanticLogger("test_logger2", os.Stdout)
config := DoozerConfig{
Uri: "localhost:1234",
BootUri: "localhost:4321",
AutoDiscover: true,
}
doozer := NewDoozerConnectionFromConfig(config, logger)
if doozer.Config.Uri != "localhost:1234" {
t.Error("NewDoozerConnection did not set doozer Uri")
}
if doozer.Config.BootUri != "localhost:4321" {
t.Error("NewDoozerConnection did not set doozer BootUri")
}
if doozer.Config.AutoDiscover != true {
t.Error("NewDoozerConnection did not set doozer AutoDiscover flag")
}
if doozer.Log != logger {
t.Error("NewDoozerConnection did not set doozer log")
}
}
func TestNewDoozerConnectionFromConfigDefaultLogger(t *testing.T) {
config := DoozerConfig{
Uri: "localhost:1234",
BootUri: "localhost:4321",
AutoDiscover: true,
}
doozer := NewDoozerConnectionFromConfig(config, nil)
if doozer.Log == nil {
t.Error("NewDoozerConnection did not default logger")
}
}