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

     1  package acuityads
     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  	`{ "host": "ep1", "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.BidderAcuityAds, json.RawMessage(validParam)); err != nil {
    22  			t.Errorf("Schema rejected AcuityAds 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": "hash" }`,
    37  	`{ "host": "", "accountid": "" }`,
    38  }
    39  
    40  func TestInvalidParams(t *testing.T) {
    41  	validator, err := openrtb_ext.NewBidderParamsValidator("../../static/bidder-params")
    42  	if err != nil {
    43  		t.Fatalf("Failed to fetch the json-schemas. %v", err)
    44  	}
    45  
    46  	for _, invalidParam := range invalidParams {
    47  		if err := validator.Validate(openrtb_ext.BidderAcuityAds, json.RawMessage(invalidParam)); err == nil {
    48  			t.Errorf("Schema allowed unexpected params: %s", invalidParam)
    49  		}
    50  	}
    51  }