Skip to content

Commit

Permalink
Smarthub: Tredio Alias (#3308)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoxaAntoxic authored Jul 17, 2024
1 parent 4179119 commit 6181118
Show file tree
Hide file tree
Showing 7 changed files with 186 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/resources/bidder-config/smarthub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ adapters:
jdpmedia:
enabled: false
endpoint: http://jdpmedia-prebid.smart-hub.io/pbserver/?seat={{AccountID}}&token={{SourceId}}
tredio:
enabled: false
endpoint: http://tredio-prebid.smart-hub.io/pbserver/?seat={{AccountID}}&token={{SourceId}}
meta-info:
maintainer-email: [email protected]
app-media-types:
Expand Down
36 changes: 36 additions & 0 deletions src/test/java/org/prebid/server/it/TredioTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package org.prebid.server.it;

import io.restassured.response.Response;
import org.json.JSONException;
import org.junit.jupiter.api.Test;
import org.prebid.server.model.Endpoint;

import java.io.IOException;

import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
import static com.github.tomakehurst.wiremock.client.WireMock.equalTo;
import static com.github.tomakehurst.wiremock.client.WireMock.equalToJson;
import static com.github.tomakehurst.wiremock.client.WireMock.post;
import static com.github.tomakehurst.wiremock.client.WireMock.urlPathEqualTo;
import static java.util.Collections.singletonList;

public class TredioTest extends IntegrationTest {

@Test
public void openrtb2AuctionShouldRespondWithBidsFromTredio() throws IOException, JSONException {
// given
WIRE_MOCK_RULE.stubFor(post(urlPathEqualTo("/tredio-exchange"))
.withQueryParam("host", equalTo("someUniquePartnerName"))
.withQueryParam("accountId", equalTo("someSeat"))
.withQueryParam("sourceId", equalTo("someToken"))
.withRequestBody(equalToJson(jsonFrom("openrtb2/tredio/test-tredio-bid-request.json")))
.willReturn(aResponse().withBody(jsonFrom("openrtb2/tredio/test-tredio-bid-response.json"))));

// when
final Response response = responseFor("openrtb2/tredio/test-auction-tredio-request.json",
Endpoint.openrtb2_auction);

// then
assertJsonEquals("openrtb2/tredio/test-auction-tredio-response.json", response, singletonList("tredio"));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"id": "request_id",
"imp": [
{
"id": "imp_id",
"banner": {
"w": 300,
"h": 250
},
"ext": {
"tredio": {
"partnerName": "someUniquePartnerName",
"seat": "someSeat",
"token": "someToken"
}
}
}
],
"tmax": 5000,
"regs": {
"ext": {
"gdpr": 0
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"id": "request_id",
"seatbid": [
{
"bid": [
{
"id": "bid_id",
"impid": "imp_id",
"price": 3.33,
"adm": "adm001",
"adid": "adid001",
"cid": "cid001",
"crid": "crid001",
"w": 300,
"h": 250,
"ext": {
"mediaType": "video",
"origbidcpm": 3.33,
"prebid": {
"type": "video"
}
}
}
],
"seat": "tredio",
"group": 0
}
],
"cur": "USD",
"ext": {
"responsetimemillis": {
"tredio": "{{ tredio.response_time_ms }}"
},
"prebid": {
"auctiontimestamp": 0
},
"tmaxrequest": 5000
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{
"id": "request_id",
"imp": [
{
"id": "imp_id",
"secure": 1,
"banner": {
"w": 300,
"h": 250
},
"ext": {
"tid": "${json-unit.any-string}",
"bidder": {
"partnerName": "someUniquePartnerName",
"seat": "someSeat",
"token": "someToken"
}
}
}
],
"source": {
"tid": "${json-unit.any-string}"
},
"site": {
"domain": "www.example.com",
"page": "http://www.example.com",
"publisher": {
"domain": "example.com"
},
"ext": {
"amp": 0
}
},
"device": {
"ua": "userAgent",
"ip": "193.168.244.1"
},
"at": 1,
"tmax": "${json-unit.any-number}",
"cur": [
"USD"
],
"regs": {
"ext": {
"gdpr": 0
}
},
"ext": {
"prebid": {
"server": {
"externalurl": "http://localhost:8080",
"gvlid": 1,
"datacenter": "local",
"endpoint": "/openrtb2/auction"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"id": "request_id",
"seatbid": [
{
"bid": [
{
"id": "bid_id",
"impid": "imp_id",
"price": 3.33,
"adid": "adid001",
"crid": "crid001",
"cid": "cid001",
"adm": "adm001",
"h": 250,
"w": 300,
"ext": {
"mediaType": "video"
}
}
]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,8 @@ adapters.smarthub.aliases.markapp.enabled=true
adapters.smarthub.aliases.markapp.endpoint=http://localhost:8090/markapp-exchange?host={{Host}}&accountId={{AccountID}}&sourceId={{SourceId}}
adapters.smarthub.aliases.jdpmedia.enabled=true
adapters.smarthub.aliases.jdpmedia.endpoint=http://localhost:8090/jdpmedia-exchange?host={{Host}}&accountId={{AccountID}}&sourceId={{SourceId}}
adapters.smarthub.aliases.tredio.enabled=true
adapters.smarthub.aliases.tredio.endpoint=http://localhost:8090/tredio-exchange?host={{Host}}&accountId={{AccountID}}&sourceId={{SourceId}}
adapters.smartyads.enabled=true
adapters.smartyads.endpoint=http://localhost:8090/smartyads-exchange
adapters.smilewanted.enabled=true
Expand Down

0 comments on commit 6181118

Please sign in to comment.