-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathentity_test.go
More file actions
35 lines (28 loc) · 851 Bytes
/
entity_test.go
File metadata and controls
35 lines (28 loc) · 851 Bytes
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
package lytics
import (
"testing"
"github.com/jarcoal/httpmock"
"github.com/lytics/go-lytics/mock"
"github.com/stretchr/testify/assert"
)
func TestGetEntity(t *testing.T) {
httpmock.Activate()
defer httpmock.DeactivateAndReset()
mock.RegisterEntityMocks()
client := NewLytics(mock.MockApiKey, nil)
fields := []string{}
entitytype := "user"
fieldname := "email"
fieldval := "sample@sample.com"
entity, err := client.GetEntity(entitytype, fieldname, fieldval, fields)
assert.Equal(t, err, nil)
assert.NotEqual(t, nil, entity)
assert.True(t, len(entity.Fields) > 5)
assert.Equal(t, "sample@sample.com", entity.Fields["email"])
fields = []string{
"score_intensity",
}
entity, err = client.GetEntity(entitytype, fieldname, fieldval, fields)
assert.Equal(t, err, nil)
assert.Equal(t, "83", entity.Fields["score_intensity"])
}