github.com/prebid/prebid-server@v0.275.0/adapters/visx/params_test.go (about)

     1  package visx
     2  
     3  import (
     4  	"encoding/json"
     5  	"testing"
     6  
     7  	"github.com/prebid/prebid-server/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.BidderVisx, json.RawMessage(validParam)); err != nil {
    18  			t.Errorf("Schema rejected visx 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.BidderVisx, json.RawMessage(invalidParam)); err == nil {
    31  			t.Errorf("Schema allowed unexpected params: %s", invalidParam)
    32  		}
    33  	}
    34  }
    35  
    36  var validParams = []string{
    37  	`{"uid":13245}`,
    38  	`{"uid":"13245"}`,
    39  	`{"uid":13245, "size": [10,5]}`,
    40  	`{"uid":13245, "other_optional": true}`,
    41  }
    42  
    43  var invalidParams = []string{
    44  	`null`,
    45  	`nil`,
    46  	``,
    47  	`[]`,
    48  	`true`,
    49  	`2`,
    50  	`{"size":12345678}`,
    51  	`{"size":""}`,
    52  	`{"uid": "-1"}`,
    53  	`{"uid": "232af"}`,
    54  	`{"uid": "af213"}`,
    55  	`{"uid": "af"}`,
    56  	`{"size": true}`,
    57  	`{"uid": true, "size":"1234567"}`,
    58  }