forked from snowplow/snowplow-tracking-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnowplowtrk_test.go
216 lines (178 loc) · 6.76 KB
/
snowplowtrk_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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
//
// Copyright (c) 2016-2022 Snowplow Analytics Ltd. All rights reserved.
//
// This program is licensed to you under the Apache License Version 2.0,
// and you may not use this file except in compliance with the Apache License Version 2.0.
// You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the Apache License Version 2.0 is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
//
package main
import (
"encoding/json"
"net/http"
"testing"
"time"
"github.com/jarcoal/httpmock"
gt "github.com/snowplow/snowplow-golang-tracker/v3/tracker"
"github.com/stretchr/testify/assert"
)
// --- CLI
func TestGetSdJSON(t *testing.T) {
assert := assert.New(t)
sdj, err := getSdJSON("", "", "")
assert.Nil(sdj)
assert.NotNil(err)
assert.Equal("fatal: --sdjson or --schema URI plus a --json needs to be specified", err.Error())
sdj, err = getSdJSON("", "iglu:com.acme/event/jsonschema/1-0-0", "")
assert.Nil(sdj)
assert.NotNil(err)
assert.Equal("fatal: --json needs to be specified", err.Error())
sdj, err = getSdJSON("", "", "{\"e\":\"pv\"}")
assert.Nil(sdj)
assert.NotNil(err)
assert.Equal("fatal: --schema URI needs to be specified", err.Error())
sdj, err = getSdJSON("", "iglu:com.acme/event/jsonschema/1-0-0", "{\"e\":\"pv\"}")
assert.Nil(err)
assert.NotNil(sdj)
assert.Equal("{\"data\":{\"e\":\"pv\"},\"schema\":\"iglu:com.acme/event/jsonschema/1-0-0\"}", sdj.String())
sdj, err = getSdJSON("", "iglu:com.acme/event/jsonschema/1-0-0", "{\"e\"}")
assert.NotNil(err)
assert.Nil(sdj)
assert.Equal("invalid character '}' after object key", err.Error())
sdj, err = getSdJSON("{\"data\":{\"e\":\"pv\"},\"schema\":\"iglu:com.acme/event/jsonschema/1-0-0\"}", "", "")
assert.Nil(err)
assert.NotNil(sdj)
assert.Equal("{\"data\":{\"e\":\"pv\"},\"schema\":\"iglu:com.acme/event/jsonschema/1-0-0\"}", sdj.String())
sdj, err = getSdJSON("{\"data\":{\"e\"},\"schema\":\"iglu:com.acme/event/jsonschema/1-0-0\"}", "", "")
assert.NotNil(err)
assert.Nil(sdj)
assert.Equal("invalid character '}' after object key", err.Error())
sdj, err = getSdJSON("{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/event/jsonschema/1-0-0\"}", "", "")
assert.Nil(err)
assert.NotNil(sdj)
assert.Equal("{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/event/jsonschema/1-0-0\"}", sdj.String())
}
func TestGetContexts(t *testing.T) {
assert := assert.New(t)
contexts, err := getContexts("")
assert.Nil(contexts)
assert.NotNil(err)
contexts, err = getContexts("[]")
assert.NotNil(contexts)
assert.Nil(err)
assert.Equal(0, len(contexts))
contexts, err = getContexts("[{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/context_1/jsonschema/1-0-0\"},{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/context_1/jsonschema/1-0-0\"}]")
assert.NotNil(contexts)
assert.Nil(err)
assert.Equal(2, len(contexts))
assert.Equal("{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/context_1/jsonschema/1-0-0\"}", contexts[0].String())
assert.Equal("{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/context_1/jsonschema/1-0-0\"}", contexts[1].String())
}
// --- Tracker
func TestInitTracker(t *testing.T) {
assert := assert.New(t)
trackerChan := make(chan int, 1)
tracker := initTracker("com.acme", "myapp", "POST", "https", "", trackerChan, nil)
assert.NotNil(tracker)
assert.NotNil(tracker.Emitter)
assert.NotNil(tracker.Subject)
assert.Equal("myapp", tracker.AppId)
}
func TestTrackSelfDescribingEventGood(t *testing.T) {
assert := assert.New(t)
// Setup HTTPMock
httpmock.Activate()
defer httpmock.DeactivateAndReset()
requests := []*http.Request{}
httpmock.RegisterResponder(
"GET",
"http://com.acme/i",
func(req *http.Request) (*http.Response, error) {
requests = append(requests, req)
return httpmock.NewStringResponse(200, ""), nil
},
)
httpClient := &http.Client{
Timeout: time.Duration(1 * time.Second),
Transport: http.DefaultTransport,
}
// Setup Tracker
trackerChan := make(chan int, 1)
tracker := initTracker("com.acme", "myapp", "GET", "http", "", trackerChan, httpClient)
assert.NotNil(tracker)
// Make SDJ
schemaStr := "iglu:com.acme/event/jsonschema/1-0-0"
jsonDataMap, _ := stringToMap("{\"hello\":\"world\"}")
sdj := gt.InitSelfDescribingJson(schemaStr, jsonDataMap)
// Make contexts
contexts, _ := getContexts("[{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/context_1/jsonschema/1-0-0\"},{\"data\":{\"timestamp\":1534429336},\"schema\":\"iglu:com.acme/context_1/jsonschema/1-0-0\"}]")
// Send an event
statusCode := trackSelfDescribingEvent(tracker, trackerChan, sdj, contexts)
assert.Equal(200, statusCode)
assert.Equal(1, len(requests))
}
func TestTrackSelfDescribingEventBad(t *testing.T) {
assert := assert.New(t)
// Setup HTTPMock
httpmock.Activate()
defer httpmock.DeactivateAndReset()
requests := []*http.Request{}
httpmock.RegisterResponder(
"POST",
"http://com.acme/com.snowplowanalytics.snowplow/tp2",
func(req *http.Request) (*http.Response, error) {
requests = append(requests, req)
return httpmock.NewStringResponse(404, ""), nil
},
)
httpClient := &http.Client{
Timeout: time.Duration(1 * time.Second),
Transport: http.DefaultTransport,
}
// Setup Tracker
trackerChan := make(chan int, 1)
tracker := initTracker("com.acme", "myapp", "POST", "http", "", trackerChan, httpClient)
assert.NotNil(tracker)
// Make SDJ
schemaStr := "iglu:com.acme/event/jsonschema/1-0-0"
jsonDataMap, _ := stringToMap("{\"hello\":\"world\"}")
sdj := gt.InitSelfDescribingJson(schemaStr, jsonDataMap)
// Send an event
statusCode := trackSelfDescribingEvent(tracker, trackerChan, sdj, nil)
assert.Equal(404, statusCode)
assert.Equal(1, len(requests))
}
// --- Utilities
func TestParseStatusCode(t *testing.T) {
assert := assert.New(t)
result := parseStatusCode(200)
assert.Equal(0, result)
result = parseStatusCode(300)
assert.Equal(0, result)
result = parseStatusCode(404)
assert.Equal(4, result)
result = parseStatusCode(501)
assert.Equal(5, result)
result = parseStatusCode(600)
assert.Equal(1, result)
}
func TestStringToMap(t *testing.T) {
assert := assert.New(t)
m, err := stringToMap("{\"hello\":\"world\"}")
assert.Nil(err)
assert.NotNil(m)
assert.Equal("world", m["hello"])
assert.Equal(1, len(m))
m, err = stringToMap("{\"hello\"}")
assert.NotNil(err)
assert.Nil(m)
m, err = stringToMap("{\"timestamp\":1534429336}")
assert.Nil(err)
assert.NotNil(m)
assert.Equal(json.Number("1534429336"), m["timestamp"])
assert.Equal(1, len(m))
}