Skip to content

Commit

Permalink
Embimedia: New Adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
SerhiiNahornyi committed Jan 8, 2024
1 parent 7f50b56 commit 756618c
Show file tree
Hide file tree
Showing 8 changed files with 156 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/main/resources/bidder-config/limelightDigital.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ adapters:
xtrmqb:
enabled: false
endpoint: http://ads-pbs.ortb.tech/openrtb/{{PublisherID}}?host={{Host}}
embimedia:
enabled: false
endpoint: http://ads-pbs.bidder-embi.media/openrtb/{{PublisherID}}?host={{Host}}
meta-info:
maintainer-email: engineering@project-limelight.com
app-media-types:
Expand Down
38 changes: 38 additions & 0 deletions src/test/java/org/prebid/server/it/EmbimediaTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package org.prebid.server.it;

import io.restassured.response.Response;
import org.json.JSONException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.prebid.server.model.Endpoint;
import org.springframework.test.context.junit4.SpringRunner;

import java.io.IOException;

import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
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;

@RunWith(SpringRunner.class)
public class EmbimediaTest extends IntegrationTest {

@Test
public void openrtb2AuctionShouldRespondWithBidsFromTheEmbimediaBidder() throws IOException, JSONException {
// given
WIRE_MOCK_RULE.stubFor(post(urlPathEqualTo("/embimedia-exchange/test.host/123456"))
.withRequestBody(equalToJson(
jsonFrom("openrtb2/embimedia/test-embimedia-bid-request.json")))
.willReturn(aResponse().withBody(
jsonFrom("openrtb2/embimedia/test-embimedia-bid-response.json"))));

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

// then
assertJsonEquals("openrtb2/embimedia/test-auction-embimedia-response.json", response,
singletonList("embimedia"));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import static java.util.Collections.singletonList;

@RunWith(SpringRunner.class)
public class XtrmqbGameTest extends IntegrationTest {
public class XtrmqbTest extends IntegrationTest {

@Test
public void openrtb2AuctionShouldRespondWithBidsFromTheXtrmqbBidder() throws IOException, JSONException {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"id": "request_id",
"imp": [
{
"id": "imp_id",
"banner": {
"w": 300,
"h": 250
},
"ext": {
"embimedia": {
"host": "test.host",
"publisherId": "123456"
}
}
}
],
"tmax": 5000,
"regs": {
"ext": {
"gdpr": 0
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"id": "request_id",
"seatbid": [
{
"bid": [
{
"id": "bid_id",
"impid": "imp_id",
"price": 3.33,
"crid": "creativeId",
"ext": {
"origbidcpm": 3.33,
"prebid": {
"type": "banner"
}
}
}
],
"seat": "embimedia",
"group": 0
}
],
"cur": "USD",
"ext": {
"responsetimemillis": {
"embimedia": "{{ embimedia.response_time_ms }}"
},
"prebid": {
"auctiontimestamp": 0
},
"tmaxrequest": 5000
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"id": "request_id-imp_id",
"imp": [
{
"id": "imp_id",
"secure": 1,
"banner": {
"w": 300,
"h": 250
}
}
],
"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
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"id": "request_id",
"seatbid": [
{
"bid": [
{
"id": "bid_id",
"impid": "imp_id",
"price": 3.33,
"crid": "creativeId"
}
]
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,8 @@ adapters.limelightDigital.aliases.greedygame.enabled=true
adapters.limelightDigital.aliases.greedygame.endpoint=http://localhost:8090/greedygame-exchange/{{Host}}/{{PublisherID}}
adapters.limelightDigital.aliases.xtrmqb.enabled=true
adapters.limelightDigital.aliases.xtrmqb.endpoint=http://localhost:8090/xtrmqb-exchange/{{Host}}/{{PublisherID}}
adapters.limelightDigital.aliases.embimedia.enabled=true
adapters.limelightDigital.aliases.embimedia.endpoint=http://localhost:8090/embimedia-exchange/{{Host}}/{{PublisherID}}
adapters.lockerdome.enabled=true
adapters.lockerdome.endpoint=http://localhost:8090/lockerdome-exchange
adapters.logan.enabled=true
Expand Down

0 comments on commit 756618c

Please sign in to comment.