-
Notifications
You must be signed in to change notification settings - Fork 121
/
impression_test.go
52 lines (47 loc) · 1.05 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
package openrtb_test
import (
"errors"
"reflect"
"testing"
. "github.com/bsm/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",
Banner: &Banner{
Width: 300,
Height: 250,
},
BidFloor: 0.03,
PMP: &PMP{
Private: 1,
Deals: []Deal{
{
ID: "DX-1985-010A",
BidFloor: 2.5,
AuctionType: 2,
},
},
},
Quantity: &Quantity{
Multiplier: 1.0,
},
}
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)
}
}