You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/test/groovy/org/prebid/server/functional/tests/module/responsecorrenction/ResponseCorrectionSpec.groovy
@@ -580,7 +577,7 @@ class ResponseCorrectionSpec extends ModuleBaseSpec {
580
577
assert!response.ext.warnings
581
578
}
582
579
583
-
def"PBS shouldn't reject auction with 353 code when enabled response correction is #enabledResponseCorrection and enabled suppress ibv is #enabledSuppressIbv"() {
580
+
def"PBS should process request without any errors and warning when response correction is #enabledResponseCorrection and suppress ibv is #enabledSuppressIbv"() {
584
581
given: "Default bid request with banner and APP"
585
582
def bidRequest = getDefaultBidRequest(APP).tap {
586
583
ext.prebid.returnAllBidStatus =true
@@ -621,7 +618,7 @@ class ResponseCorrectionSpec extends ModuleBaseSpec {
621
618
false | false
622
619
}
623
620
624
-
def"PBS shouldn't reject auction with 353 code when enabled suppress ibv and bid request with imp media type is #mediaType"() {
621
+
def"PBS should process request without any errors and warning when suppress ibv is enabled and bid request with imp media type is #mediaType"() {
625
622
given: "Default bid request with APP"
626
623
def bidRequest = getDefaultBidRequest(APP).tap {
627
624
imp[0] =Imp.getDefaultImpression(mediaType)
@@ -660,7 +657,7 @@ class ResponseCorrectionSpec extends ModuleBaseSpec {
660
657
mediaType << [VIDEO, NATIVE, AUDIO]
661
658
}
662
659
663
-
def"PBS shouldn't reject auction with 353 code when enabled suppress ibv and bis response with meta media type is #mediaType"() {
660
+
def"PBS should process request without any errors and warning when suppress ibv is enabled and bis response with meta media type is #mediaType"() {
664
661
given: "Default bid request with banner and APP"
665
662
def bidRequest = getDefaultBidRequest(APP).tap {
666
663
ext.prebid.returnAllBidStatus =true
@@ -698,16 +695,14 @@ class ResponseCorrectionSpec extends ModuleBaseSpec {
698
695
mediaType << [BANNER, NATIVE, AUDIO]
699
696
}
700
697
701
-
def"PBS shouldn't reject auction with 353 code when requested bidder is excluded"() {
698
+
def"PBS should process request without any errors and warning when requested bidder is excluded"() {
702
699
given: "Default bid request with banner and APP"
703
700
def bidRequest = getDefaultBidRequest(APP).tap {
704
701
ext.prebid.returnAllBidStatus =true
705
702
}
706
703
707
704
and: "Save account with enabled response correction module and suppress ibv"
def"PBS should reject auction with 353 code when enabled suppress ibv and imp with media type Banner and bid response meta media type with Video and excluded bidder are not in case"() {
741
+
def"PBS should reject auction with 353 code when suppress IBV is enabled, imp media type is Banner, bid response meta media type is Video, and excluded list lacks request bidder"() {
747
742
given: "Default bid request with banner and APP"
748
743
def bidRequest = getDefaultBidRequest(APP).tap {
749
744
ext.prebid.returnAllBidStatus =true
750
745
}
751
746
752
747
and: "Save account with enabled response correction module and suppress ibv"
0 commit comments