github.com/prebid/prebid-server/v2@v2.18.0/adapters/aceex/params_test.go (about)

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