forked from bsm/openrtb
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathimpression_test.go
65 lines (60 loc) · 1.25 KB
/
impression_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
package openrtb_test
import (
"errors"
"reflect"
"testing"
. "github.com/UnityTech/openrtb/v3"
)
func TestImpression(t *testing.T) {
var subject *Impression
if err := fixture("impression", &subject); err != nil {
t.Fatalf("expected no error, got %v", err)
}
exp := &Impression{
ID: "1",
Metric: []*Metric{
{
Type: "viewable_percentage_1",
Value: 0.99,
Vendor: "MOAT",
},
{
Type: "viewable_percentage_2",
Value: 0.98,
Vendor: "MOAT",
},
},
Banner: &Banner{
W: 300,
H: 250,
},
BidFloor: 0.03,
Pmp: &Pmp{
Private: 1,
Deals: []Deal{
{
ID: "DX-1985-010A",
BidFloor: 2.5,
AuctionType: 2,
},
},
},
Quantity: &Quantity{
Multiplier: 1.0,
},
Rewarded: 1,
}
if got := subject; !reflect.DeepEqual(exp, got) {
t.Errorf("expected %+v, got %+v", exp, got)
}
}
func TestImpression_Validate(t *testing.T) {
subject := &Impression{}
if exp, got := ErrInvalidImpNoID, subject.Validate(); !errors.Is(exp, got) {
t.Fatalf("expected %v, got %v", exp, got)
}
subject = &Impression{ID: "IMPID", Banner: &Banner{}, Video: &Video{}}
if exp, got := ErrInvalidImpMultiAssets, subject.Validate(); !errors.Is(exp, got) {
t.Fatalf("expected %v, got %v", exp, got)
}
}