-
Notifications
You must be signed in to change notification settings - Fork 41
/
ingest_test.go
101 lines (94 loc) · 2.64 KB
/
ingest_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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package azkustoingest
import (
"github.com/Azure/azure-kusto-go/azkustodata"
"testing"
"github.com/Azure/azure-kusto-go/azkustoingest/internal/resources"
"github.com/stretchr/testify/assert"
)
func TestIngestion(t *testing.T) {
firstMockClient := mockClient{
endpoint: "https://test.kusto.windows.net",
auth: azkustodata.Authorization{},
}
mockClientSame := mockClient{
endpoint: "https://test.kusto.windows.net",
auth: azkustodata.Authorization{},
}
secondMockClient := mockClient{
endpoint: "https://test2.kusto.windows.net",
auth: azkustodata.Authorization{},
}
tests := []struct {
name string
clients []func() *Ingestion
}{
{
name: "TestSameClient",
clients: []func() *Ingestion{
func() *Ingestion {
ingestion, _ := newFromClient(firstMockClient, &Ingestion{db: "test", table: "test"})
return ingestion
},
func() *Ingestion {
ingestion, _ := newFromClient(firstMockClient, &Ingestion{db: "test2", table: "test2"})
return ingestion
},
},
},
{
name: "TestSameEndpoint",
clients: []func() *Ingestion{
func() *Ingestion {
ingestion, _ := newFromClient(firstMockClient, &Ingestion{db: "test", table: "test"})
return ingestion
},
func() *Ingestion {
ingestion, _ := newFromClient(mockClientSame, &Ingestion{db: "test2", table: "test2"})
return ingestion
},
},
},
{
name: "TestDifferentEndpoint",
clients: []func() *Ingestion{
func() *Ingestion {
ingestion, _ := newFromClient(firstMockClient, &Ingestion{db: "test", table: "test"})
return ingestion
},
func() *Ingestion {
ingestion, _ := newFromClient(secondMockClient, &Ingestion{db: "test2", table: "test2"})
return ingestion
},
},
},
{
name: "TestDifferentAndSameEndpoints",
clients: []func() *Ingestion{
func() *Ingestion {
ingestion, _ := newFromClient(firstMockClient, &Ingestion{db: "test", table: "test"})
return ingestion
},
func() *Ingestion {
ingestion, _ := newFromClient(mockClientSame, &Ingestion{db: "test", table: "test"})
return ingestion
},
func() *Ingestion {
ingestion, _ := newFromClient(secondMockClient, &Ingestion{db: "test2", table: "test2"})
return ingestion
},
},
},
}
for _, test := range tests {
test := test // Capture
t.Run(test.name, func(t *testing.T) {
t.Parallel()
mgrMap := make(map[*resources.Manager]bool)
for _, client := range test.clients {
mgr := client().mgr
mgrMap[mgr] = true
}
assert.Equalf(t, len(mgrMap), len(test.clients), "Got duplicated managers, want %d managers, got %d", len(test.clients), len(mgrMap))
})
}
}