forked from bsm/openrtb
-
Notifications
You must be signed in to change notification settings - Fork 3
/
inventory_test.go
58 lines (52 loc) · 1.35 KB
/
inventory_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
package openrtb_test
import (
"reflect"
"testing"
. "github.com/UnityTech/openrtb/v3"
)
func TestApp(t *testing.T) {
var subject *App
if err := fixture("app", &subject); err != nil {
t.Fatalf("expected no error, got %v", err)
}
exp := &App{
Inventory: Inventory{
ID: "agltb3B1Yi1pbmNyDAsSA0FwcBiJkfIUDA",
Name: "Yahoo Weather",
Cat: []string{"weather", string(ContentCategoryScience), string(ContentCategoryWeather)},
Publisher: &Publisher{
ID: "agltb3B1Yi1pbmNyDAsSA0FwcBiJkfTUCV",
Name: "yahoo",
Domain: "www.yahoo.com",
},
},
Bundle: "628677149",
Ver: "1.0.2",
StoreURL: "https://itunes.apple.com/id628677149",
}
if got := subject; !reflect.DeepEqual(exp, got) {
t.Errorf("expected %+v, got %+v", exp, got)
}
}
func TestSite(t *testing.T) {
var subject *Site
if err := fixture("site", &subject); err != nil {
t.Fatalf("expected no error, got %v", err)
}
exp := &Site{
Inventory: Inventory{
ID: "102855",
Cat: []string{string(ContentCategoryAdvertising)},
Domain: "http://www.usabarfinder.com",
Publisher: &Publisher{
ID: "8953",
Name: "local.com",
Domain: "local.com",
},
},
Page: "http://eas.usabarfinder.com/eas?cu=13824;cre=mu;target=_blank",
}
if got := subject; !reflect.DeepEqual(exp, got) {
t.Errorf("expected %+v, got %+v", exp, got)
}
}