-
Notifications
You must be signed in to change notification settings - Fork 87
/
identify_test.go
41 lines (32 loc) · 956 Bytes
/
identify_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
package analytics
import "testing"
func TestIdentifyMissingUserId(t *testing.T) {
identify := Identify{}
if err := identify.Validate(); err == nil {
t.Error("validating an invalid identify object succeeded:", identify)
} else if e, ok := err.(FieldError); !ok {
t.Error("invalid error type returned when validating identify:", err)
} else if e != (FieldError{
Type: "analytics.Identify",
Name: "UserId",
Value: "",
}) {
t.Error("invalid error value returned when validating identify:", err)
}
}
func TestIdentifyValidWithUserId(t *testing.T) {
identify := Identify{
UserId: "2",
}
if err := identify.Validate(); err != nil {
t.Error("validating a valid identify object failed:", identify, err)
}
}
func TestIdentifyValidWithAnonymousId(t *testing.T) {
identify := Identify{
AnonymousId: "2",
}
if err := identify.Validate(); err != nil {
t.Error("validating a valid identify object failed:", identify, err)
}
}