-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: writing unit tests for mobkoi adapters #6
Conversation
64cfb9d
to
d4addd7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- There should be a set of default mock objects, at the top of the test file, containing all the required fields. Personally, I prefer using helper functions to return mock objects to prevent the same object from being modified across different tests.
- Break large objects into smaller ones for easier sharing and access in tests.
- Mock objects should only include the data needed to make the adapter work. Prebid.js should throw errors if any required fields are missing(look at the example mentioned at the bottom).
- When you need mock objects contain specific values for the tests. Make a copy of the "default" mock object then replace or remove the fields to match the needs.
- To enhance code readability, fields in mock objects with lengthy values like
adm
,lurl
, andnurl
should be replaced with shorter, simplified values. For example:adm: <div>test ad</div>
lurl: test.com/loss
nurl: test.com/win
Check out test/spec/modules/a1MediaBidAdapter_spec.js
. The coding style is quite similar to mine.
3efcaaa
to
a95e7ff
Compare
a95e7ff
to
48e55d1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Excellent quality of work. Just need a little bit work on tidying up the mock data. and add a couple more unit tests.
} | ||
} | ||
} | ||
const requestId = '28df0355619026' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
optional: For the test IDs, use the value like "test-request-id", so that they can be easier to identify
describe('Mobkoi bidding Adapter', function () { | ||
const adServerBaseUrl = 'http://adServerBaseUrl'; | ||
|
||
const getBidderRequest = () => ({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Mock data and mock functions and should be above the describe block.
- A few common nested objects should be hoisted, such as ortb2 and bid(prebid bid object)
- Instead of copying the values to the "converted" object, I think it's better to assign the values from one object to another. This way, others can easily see where the values originate.
const getBidderRequest = () => ({ | |
const testOrtbId = 'test-ortb-id'; | |
const getOrtb2 = () => ({ | |
site: { | |
publisher: { | |
id: 'mobkoiPublisherId', | |
ext: { | |
adServerBaseUrl | |
} | |
}, | |
}, | |
}) | |
const getBidRequest = () => ({ | |
bidder: 'mobkoi', | |
adUnitCode: 'banner-ad', | |
transactionId: 'e4895800-1a69-472c-9e6d-277a1ae1a119', | |
adUnitId: '6d636e93-32ac-4dc6-8a07-fa4167660265', | |
bidId: '3973172c31de61', | |
bidderRequestId: testOrtbId, | |
auctionId: '90acf3a8-7710-48f9-8009-f7a985d0e605', | |
ortb2: getOrtb2() | |
}) | |
const getBidderRequest = () => ({ | |
bidderCode: 'mobkoi', | |
auctionId: '90acf3a8-7710-48f9-8009-f7a985d0e605', | |
bidderRequestId: testOrtbId, | |
bids: [getBidReuqest()], | |
ortb2: getOrtb2() | |
}) | |
const getConvertedBidRequest = () => ({ | |
id: testOrtbId, | |
imp: [{ | |
id: '3973172c31de61', | |
}], | |
site: { | |
publisher: { | |
id: 'mobkoiPublisherId', | |
ext: { | |
adServerBaseUrl | |
} | |
}, | |
}, | |
test: 0 | |
}) |
expect(bid.requestId).to.equal(bidderResponse.body.seatbid[0].bid[0].impid); | ||
expect(bid.cpm).to.equal(1); | ||
expect(bid.width).to.equal(300); | ||
expect(bid.height).to.equal(250); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should always reads expected value from the mock data like validating the requestId at line 170
@@ -0,0 +1,472 @@ | |||
import mobkoiAnalyticsAdapter, { LocalContext, DEBUG_EVENT_LEVELS, utils, SUB_PAYLOAD_UNIQUE_FIELDS_LOOKUP, SUB_PAYLOAD_TYPES } from 'modules/mobkoiAnalyticsAdapter.js'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- all log functions from '../src/utils.js' that the adapter should be "stubbed" with Sinon. To avoid messages been log to console when executing tests.
- ajax should also "stubbed" to avoid accidentally making api calls when executing the tests.
- add tests to ensure
postAjax
andsendGetRequest
are called. Stub those two util functions in your tests.sendGetRequest
should be called inBIDDER_DONE
andBID_WON
eventpostAjax
should be called inBIDDER_DONE
event
} | ||
utils.replaceAllMacrosInPlace(bid, context); | ||
|
||
expect(bid.adm).to.equal(adm); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems you forgot to replace the default adm
value with something more meaningful for this test.
b4e402f
to
3fcd450
Compare
…e prebid RTB ORTB request to /bid (#1) harness](https://mobkoi.atlassian.net/browse/MAX-848) Set up a local development environment for testing and iterating on Prebid customization changes. Sub-tasks: Install Prebid.js dependencies. Create a custom Prebid.js Adapter (mobkoiBidAdapter) and build a custom Prebid.js package to serve locally (the custom Prebid.js package is available to serve to a local webpage). Initialize Ad Service Bid endpoint, ensuring it can serve dummy bid objects to the client. Initialize Ad Server Ad endpoint to serve dummy ads/creatives that display on the sample website. Set up a sample website for end-to-end testing, including page load, Prebid.js, Ad Service Bid endpoint, returning bids to the front-end, Ad Server Ad endpoint, and loading ads on the page. /bid](https://mobkoi.atlassian.net/browse/MAX-849) Update Prebid.js to create ORTB-formatted bid requests for the /bid endpoint. Sub-tasks: Modify Prebid request formatting to ORTB. Validate bid responses from /bid with ORTB formatting. Integrate the new ORTB bid request structure in the /bid endpoint base on the data provided by Prebid.js. Create unit tests. feat: max-852: Prebid: Log bid win to adserver (#3) > Related PRs mobkoi/adserver#6 adserver](https://mobkoi.atlassian.net/browse/MAX-852) Implement logging of bid wins directly to the ad server. Sub-tasks: Capture winning bid events in the Prebid.js custom adapter in various steps of biding process. feat: max-853: Prebid: Log bid loss to adserver (#4) adserver](https://mobkoi.atlassian.net/browse/MAX-853) Implement logging of failed bid events for monitoring purposes. Sub-tasks: Initialise a Prebid custom analytic adapter. Capture bid failure events within Prebid.js during various steps of the bidding process Initialise the endpoint for receiving bid loss signals. Logs will log into Grafana, but this will be done in a separate ticket feat: max-876: Prebid: Analytic Adapter Log debug info to adserver (#5) > Related PR: mobkoi/adserver#10 adserver](https://mobkoi.atlassian.net/browse/MAX-876) Add logging for debugging information to assist with monitoring and troubleshooting. Sub-tasks Record events at different stages of bid processing on the client side via the custom analytic adapter Save event messages locally on the client. Tag each message with one of three levels: info, warn, or debug. feat: writing unit tests for mobkoi adapters (#6) Co-authored-by: nvkftw <kevin.gallet@mobkoi.com> updated doc description added the missing mobkoiBidAdapter md small fix for our unit test added intergration with mobkoi getuid and setuid endpoint double encoded the setuid callback added mobkoiIdSystem module got a working smartadserver sync url from provided example got a working equativ url before rollback to ajax call for equativ intergration WIP testing droping pixel in iframe feat: max-970: Prebid.js Bidder Adapter: Retrieve Adapter Parameters from Bid Configuration Object (#8) Configuration Object](https://mobkoi.atlassian.net/browse/MAX-970) At this stage, we are only focused on bid win events, so there is no need for analytics adapter integration yet. To streamline the publisher's configuration for our custom bid adapter integration, we retrieve adapter parameters directly from the bid configuration object instead of using "bidderConfiguration." updated bid adapter doc wip equativ pixel in an iframe approvated concept cookie sync work on client side code tidy up for the working cookie solution removed the need for cookieName param matches the backend endpoint name changes feat: max-956: We need the placement ID from Tag and HB Connector to be past to the AdServer (#9) the AdServer](https://mobkoi.atlassian.net/browse/MAX-956) removed unexpected code transfer the user id to ortb2 request body and set the field to null if not avaiable fixed a minor bug enabed consent string added unit tests for mobkoi ID system module fixed a minor bug removed the code that wrapping URL in URL objects. It just make things complicated fixed the publisher ID in macro issue clean up branch for offical PR pass the expiration value when setting storage using the storage manager updated id system module md pass expire setting to storage
* feat: max-848 Prebid: setup development harness. max-849: Prebid: Make prebid RTB ORTB request to /bid (#1) harness](https://mobkoi.atlassian.net/browse/MAX-848) Set up a local development environment for testing and iterating on Prebid customization changes. Sub-tasks: Install Prebid.js dependencies. Create a custom Prebid.js Adapter (mobkoiBidAdapter) and build a custom Prebid.js package to serve locally (the custom Prebid.js package is available to serve to a local webpage). Initialize Ad Service Bid endpoint, ensuring it can serve dummy bid objects to the client. Initialize Ad Server Ad endpoint to serve dummy ads/creatives that display on the sample website. Set up a sample website for end-to-end testing, including page load, Prebid.js, Ad Service Bid endpoint, returning bids to the front-end, Ad Server Ad endpoint, and loading ads on the page. /bid](https://mobkoi.atlassian.net/browse/MAX-849) Update Prebid.js to create ORTB-formatted bid requests for the /bid endpoint. Sub-tasks: Modify Prebid request formatting to ORTB. Validate bid responses from /bid with ORTB formatting. Integrate the new ORTB bid request structure in the /bid endpoint base on the data provided by Prebid.js. Create unit tests. feat: max-852: Prebid: Log bid win to adserver (#3) > Related PRs mobkoi/adserver#6 adserver](https://mobkoi.atlassian.net/browse/MAX-852) Implement logging of bid wins directly to the ad server. Sub-tasks: Capture winning bid events in the Prebid.js custom adapter in various steps of biding process. feat: max-853: Prebid: Log bid loss to adserver (#4) adserver](https://mobkoi.atlassian.net/browse/MAX-853) Implement logging of failed bid events for monitoring purposes. Sub-tasks: Initialise a Prebid custom analytic adapter. Capture bid failure events within Prebid.js during various steps of the bidding process Initialise the endpoint for receiving bid loss signals. Logs will log into Grafana, but this will be done in a separate ticket feat: max-876: Prebid: Analytic Adapter Log debug info to adserver (#5) > Related PR: mobkoi/adserver#10 adserver](https://mobkoi.atlassian.net/browse/MAX-876) Add logging for debugging information to assist with monitoring and troubleshooting. Sub-tasks Record events at different stages of bid processing on the client side via the custom analytic adapter Save event messages locally on the client. Tag each message with one of three levels: info, warn, or debug. feat: writing unit tests for mobkoi adapters (#6) Co-authored-by: nvkftw <kevin.gallet@mobkoi.com> updated doc description added the missing mobkoiBidAdapter md small fix for our unit test added intergration with mobkoi getuid and setuid endpoint double encoded the setuid callback added mobkoiIdSystem module got a working smartadserver sync url from provided example got a working equativ url before rollback to ajax call for equativ intergration WIP testing droping pixel in iframe feat: max-970: Prebid.js Bidder Adapter: Retrieve Adapter Parameters from Bid Configuration Object (#8) Configuration Object](https://mobkoi.atlassian.net/browse/MAX-970) At this stage, we are only focused on bid win events, so there is no need for analytics adapter integration yet. To streamline the publisher's configuration for our custom bid adapter integration, we retrieve adapter parameters directly from the bid configuration object instead of using "bidderConfiguration." updated bid adapter doc wip equativ pixel in an iframe approvated concept cookie sync work on client side code tidy up for the working cookie solution removed the need for cookieName param matches the backend endpoint name changes feat: max-956: We need the placement ID from Tag and HB Connector to be past to the AdServer (#9) the AdServer](https://mobkoi.atlassian.net/browse/MAX-956) removed unexpected code transfer the user id to ortb2 request body and set the field to null if not avaiable fixed a minor bug enabed consent string added unit tests for mobkoi ID system module fixed a minor bug removed the code that wrapping URL in URL objects. It just make things complicated fixed the publisher ID in macro issue clean up branch for offical PR pass the expiration value when setting storage using the storage manager updated id system module md pass expire setting to storage * code tidy up * switch to getStorageManager instead of getCoreStorageManager * add mobkoiIdSystem to modules/.submodules.json file
No description provided.