github.com/prebid/prebid-server/v2@v2.18.0/adapters/beintoo/params_test.go (about) 1 package beintoo 2 3 import ( 4 "encoding/json" 5 "testing" 6 7 "github.com/prebid/prebid-server/v2/openrtb_ext" 8 ) 9 10 func TestValidParams(t *testing.T) { 11 validator, err := openrtb_ext.NewBidderParamsValidator("../../static/bidder-params") 12 if err != nil { 13 t.Fatalf("Failed to fetch the json-schemas. %v", err) 14 } 15 16 for _, validParam := range validParams { 17 if err := validator.Validate(openrtb_ext.BidderBeintoo, json.RawMessage(validParam)); err != nil { 18 t.Errorf("Schema rejected beintoo params: %s", validParam) 19 } 20 } 21 } 22 23 func TestInvalidParams(t *testing.T) { 24 validator, err := openrtb_ext.NewBidderParamsValidator("../../static/bidder-params") 25 if err != nil { 26 t.Fatalf("Failed to fetch the json-schemas. %v", err) 27 } 28 29 for _, invalidParam := range invalidParams { 30 if err := validator.Validate(openrtb_ext.BidderBeintoo, json.RawMessage(invalidParam)); err == nil { 31 t.Errorf("Schema allowed unexpected params: %s", invalidParam) 32 } 33 } 34 } 35 36 var validParams = []string{ 37 `{"tagid": "25251", "bidfloor": "0.01"}`, 38 } 39 40 var invalidParams = []string{ 41 `null`, 42 `nil`, 43 ``, 44 `[]`, 45 `true`, 46 `{}`, 47 `{"tagid":12345678}`, 48 `{"tagId":"12345678"}`, 49 `{"tagid":"25251", "bidfloor": 0.01}`, 50 `{"tagId": 12345678}`, 51 `{"placementId": "1"}`, 52 `{"placementId": 1}`, 53 }