forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams_test.go
53 lines (45 loc) · 1.23 KB
/
params_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
package beintoo
import (
"encoding/json"
"testing"
"github.com/prebid/prebid-server/openrtb_ext"
)
func TestValidParams(t *testing.T) {
validator, err := openrtb_ext.NewBidderParamsValidator("../../static/bidder-params")
if err != nil {
t.Fatalf("Failed to fetch the json-schemas. %v", err)
}
for _, validParam := range validParams {
if err := validator.Validate(openrtb_ext.BidderBeintoo, json.RawMessage(validParam)); err != nil {
t.Errorf("Schema rejected beintoo params: %s", validParam)
}
}
}
func TestInvalidParams(t *testing.T) {
validator, err := openrtb_ext.NewBidderParamsValidator("../../static/bidder-params")
if err != nil {
t.Fatalf("Failed to fetch the json-schemas. %v", err)
}
for _, invalidParam := range invalidParams {
if err := validator.Validate(openrtb_ext.BidderBeintoo, json.RawMessage(invalidParam)); err == nil {
t.Errorf("Schema allowed unexpected params: %s", invalidParam)
}
}
}
var validParams = []string{
`{"tagid": "25251", "bidfloor": "0.01"}`,
}
var invalidParams = []string{
`null`,
`nil`,
``,
`[]`,
`true`,
`{}`,
`{"tagid":12345678}`,
`{"tagId":"12345678"}`,
`{"tagid":"25251", "bidfloor": 0.01}`,
`{"tagId": 12345678}`,
`{"placementId": "1"}`,
`{"placementId": 1}`,
}