Skip to content

New adapter: t Advertising x Blis#4706

Open
tb-emq wants to merge 31 commits intoprebid:masterfrom
emetriq:new-adapter-t-advertising-blis
Open

New adapter: t Advertising x Blis#4706
tb-emq wants to merge 31 commits intoprebid:masterfrom
emetriq:new-adapter-t-advertising-blis

Conversation

@tb-emq
Copy link
Copy Markdown

@tb-emq tb-emq commented Mar 2, 2026

Doc PR: prebid/prebid.github.io#6458

Type of change

  • Bugfix

  • Feature

  • New bidder adapter

  • Updated bidder adapter

  • Code style update (formatting, local variables)

  • Refactoring (no functional changes, no api changes)

  • Build related changes

  • CI related changes

  • Does this change affect user-facing APIs or examples documented on http://prebid.org?

  • Other

Description of change

New Bidder Adapter for T Advertising Solutions in cooperation with Blis

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 2, 2026

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 00fdb45

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		96.2%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:80:	MakeBids		94.7%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:114:	getMediaTypeForBid	80.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:129:	resolveMacros		100.0%
total:											(statements)		94.8%

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 2, 2026

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, fc08759

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		96.2%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:80:	MakeBids		94.7%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:114:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:129:	resolveMacros		100.0%
total:											(statements)		96.6%

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 2, 2026

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 8f035eb

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		96.2%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:80:	MakeBids		94.7%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:114:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:129:	resolveMacros		100.0%
total:											(statements)		96.6%

@ChrisHuie
Copy link
Copy Markdown
Contributor

AGENT PR REVIEW TESTING

PR #4706 Review: New Adapter: T Advertising x Blis

Author: tb-emq | Type: New Adapter | CI: Clean (all 6 checks passed)


Triage Manifest

Field Value
PR Type new-adapter
Files 21 files across all 3 skills
Bidder tadvertising_blis
Skills activated bidder-info-pr-review, bidder-params-pr-review, adapter-code-pr-review
Completeness All 10 required file types present
CI Status Clean (validate 1.24.x, validate 1.23.x, validate-merge, semgrep-check, run-coverage, notify — all passed)

File Routing

Skill Files
bidder-info static/bidder-info/tadvertising_blis.yaml [added]
bidder-params static/bidder-params/tadvertising_blis.json [added], openrtb_ext/imp_tadvertisingblis.go [added], adapters/tadvertising_blis/params_test.go [added]
adapter-code adapters/tadvertising_blis/tadvertising_blis.go [added], adapters/tadvertising_blis/tadvertising_blis_test.go [added], 11 test data files [added], exchange/adapter_builders.go [modified], openrtb_ext/bidders.go [modified]

Issues Found

FAIL: MakeBids silently drops errors — never returned to caller

The MakeBids function accumulates errors in a local var errors []error slice (e.g., when getMediaTypeForBid returns an unsupported media type error), but the function returns return bidResponse, nil — the errors are never propagated. This should be return bidResponse, errors.

This means unsupported media type errors (and any future MakeBids errors) are silently swallowed instead of being reported to the PBS framework for logging and diagnostics.

File: adapters/tadvertising_blis/tadvertising_blis.go, MakeBids return statement


FAIL: Capabilities declare banner + video only, but adapter handles native and has native test fixture

The bidder-info YAML declares capabilities as:

capabilities:
  site:
    mediaTypes:
      - banner
      - video

However, the adapter code handles openrtb2.MarkupNative (MType 4) in getMediaTypeForBid, and there is an exemplary/native.json test fixture. Since PBS filters impressions by declared capabilities before reaching the adapter, native impressions will never reach this adapter in production — making the native handling dead code.

Either:

  1. Add native to the site.mediaTypes capabilities list, OR
  2. Remove the native case from getMediaTypeForBid and delete exemplary/native.json

Files: static/bidder-info/tadvertising_blis.yaml line 12, adapters/tadvertising_blis/tadvertising_blis.go getMediaTypeForBid, adapters/tadvertising_blis/tadvertising_blistest/exemplary/native.json


WARN: Method: "POST" uses string literal instead of http.MethodPost constant

The MakeRequests method sets Method: "POST" as a string literal. PBS convention is to use the net/http constant http.MethodPost.

File: adapters/tadvertising_blis/tadvertising_blis.go, MakeRequests requestData


WARN: Currency set unconditionally — empty response.Cur overwrites default "USD"

bidResponse.Currency = response.Cur sets the currency without checking if response.Cur is empty. If the bid response omits the cur field, this overwrites the default "USD" with an empty string. Should be guarded:

if response.Cur != "" {
    bidResponse.Currency = response.Cur
}

File: adapters/tadvertising_blis/tadvertising_blis.go, MakeBids


WARN: unsupported-media-type.json missing expectedMakeBidsErrors

The unsupported-media-type.json supplemental fixture tests a bid with mtype: 6, which triggers an error in getMediaTypeForBid. However, the test fixture has no expectedMakeBidsErrors field. This currently passes only because the MakeBids function erroneously returns nil for errors (see FAIL above). Once the error return is fixed, this test fixture must also add an expectedMakeBidsErrors entry:

"expectedMakeBidsErrors": [
  {
    "value": "Failed to parse media type of impression ID \"testimp\"",
    "comparison": "literal"
  }
]

File: adapters/tadvertising_blis/tadvertising_blistest/supplemental/unsupported-media-type.json


INFO: bid-macro-replace.json is in supplemental/ but tests a success path

The bid-macro-replace.json test fixture validates ${AUCTION_PRICE} macro replacement in NURL, AdM, and BURL — a valid success scenario, not an error path. Conventionally, success-path tests belong in exemplary/. Not a blocker, but the categorization is slightly unconventional.

File: adapters/tadvertising_blis/tadvertising_blistest/supplemental/bid-macro-replace.json


Field-by-Field Verification

Bidder-Info: tadvertising_blis.yaml

endpoint: "https://prebid-blis.tads.xplosion.de/bid"

Check Result Evidence
URL format PASS Well-formed HTTPS URL
Reachability PASS HTTP 204 on POST, 1.57s response time
SSL/TLS PASS Amazon RSA 2048 M04 cert (CN=tads.xplosion.de), valid until May 16, 2026
Domain ownership PASS tads.xplosion.de — Xplosion is a known emetriq/T-Systems platform. Consistent with maintainer email dev@emetriq.com
No hardcoded credentials PASS Clean URL
No template macros PASS No {{...}} present

endpointCompression: gzip

Check Result Evidence
Valid value PASS gzip is the only accepted value

geoscope: [global]

Check Result Evidence
Valid value PASS global is a recognized geoscope value (CI validates and passes)
Casing INFO Convention in field-index recommends uppercase (GLOBAL), though CI passes with lowercase

maintainer.email: "dev@emetriq.com"

Check Result Evidence
Email format PASS Valid format user@domain.tld
Domain consistency PASS emetriq.com — emetriq is the parent company behind T Advertising, consistent with PR author tb-emq

gvlVendorID: 213

Check Result Evidence
Value range PASS Positive integer
Company match PASS GVL vendor 213 corresponds to emetriq GmbH, which is the company behind T Advertising/TADS

modifyingVastXmlAllowed: true

Check Result Evidence
Relevance PASS Adapter supports video media type — setting is appropriate

openrtb.version: "2.6"

Check Result Evidence
Valid value PASS "2.6" is a recognized OpenRTB version
Code compatibility PASS Adapter uses bid.MType (OpenRTB 2.6 feature) for media type resolution

capabilities: site (banner, video)

Check Result Evidence
Valid media types PASS banner and video are valid
At least one per platform PASS site has 2 media types
No app platform PASS Adapter code only handles request.Site, consistent with site-only capabilities
Native mismatch FAIL Adapter code handles native (MType 4) and has native test fixture, but native not declared in capabilities

Bidder-Params: tadvertising_blis.json + imp_tadvertisingblis.go + params_test.go

JSON Schema

Check Result Evidence
Draft-04 schema PASS $schema declares draft-04
Required fields PASS publisherId is required
Property type PASS type: string, minLength: 1, maxLength: 32 — appropriate constraints
Title format PASS "T-Advertising-Blis Adapter Params" follows convention
Description present PASS "Unique ID of the publisher/supply partner provided by T-Advertising"

imp_tadvertisingblis.go

Check Result Evidence
Struct matches schema PASS PublisherId string maps to schema publisherId
No omitempty on required fields PASS json:"publisherId" has no omitempty — correct for a required field
json tag matches schema PASS json:"publisherId" matches schema property name exactly
Package is openrtb_ext PASS package openrtb_ext
Type is exported PASS ImpExtTadvertising starts with uppercase

params_test.go

Check Result Evidence
Valid params tested PASS 1 valid case: {"publisherId": "1427ab10f2e448057ed3b422"}
Invalid params tested PASS 4 cases: empty object, empty string, wrong type (numeric), too long (33 chars)
Uses correct bidder constant PASS openrtb_ext.BidderTAdvertisingBlis
Correct schema path PASS "../../static/bidder-params"
Missing null test INFO No explicit null test case, though this is minor since the empty object case covers the required field check
Test function names PASS TestValidParams and TestInvalidParams

Adapter-Code: tadvertising_blis.go + tests + registration

Builder Function

Check Result Evidence
Correct signature PASS Builder(bidderName openrtb_ext.BidderName, config config.Adapter, server config.Server) (adapters.Bidder, error)
Endpoint from config PASS Uses config.Endpoint
No hardcoded credentials PASS No secrets in builder
No template macros PASS Endpoint used directly, no macro resolution needed

MakeRequests

Check Result Evidence
Imp ext unmarshaling PASS Two-step: adapters.ExtImpBidderopenrtb_ext.ImpExtTadvertising via jsonutil.Unmarshal
Uses shared imp ext struct PASS Uses openrtb_ext.ImpExtTadvertising from openrtb_ext/imp_tadvertisingblis.go
ImpIDs present PASS openrtb_ext.GetImpIDs(request.Imp) called
Headers PASS Content-Type: application/json + custom X-Supply-Partner-Id header
Copy semantics (Site) PASS Creates siteCopy := *request.Site before mutation
Copy semantics (Publisher) PASS Creates sitePublisherCopy := *request.Site.Publisher before mutation
Marshal error handled PASS Returns error from jsonutil.Marshal
Uses jsonutil PASS jsonutil.Marshal and jsonutil.Unmarshal throughout
Method constant WARN Uses "POST" string literal instead of http.MethodPost
Error types PASS Uses errortypes.BadInput for invalid request data
Multi-imp handling PASS Batches all impressions in a single request. Reads only Imp[0].Ext for publisherId — acceptable since all imps share the same publisher context

MakeBids

Check Result Evidence
HTTP status handling PASS 204 → nil, nil; error check before unmarshal
Response unmarshaling PASS jsonutil.Unmarshal used
Bid type resolution PASS Uses bid.MType switch (banner/video/native)
BidderResponse construction PASS adapters.NewBidderResponseWithBidsCapacity(len(request.Imp))
Bid pointer safety PASS Uses iterutil.SlicePointerValues — provides correct pointer iteration
Error return FAIL return bidResponse, nil — accumulated errors never returned. Should be return bidResponse, errors
Currency handling WARN bidResponse.Currency = response.Cur set unconditionally — empty Cur overwrites default USD

Macro Resolution (resolveMacros)

Check Result Evidence
Replaces ${AUCTION_PRICE} in NURL PASS strings.ReplaceAll(bid.NURL, ...)
Replaces ${AUCTION_PRICE} in AdM PASS strings.ReplaceAll(bid.AdM, ...)
Replaces ${AUCTION_PRICE} in BURL PASS strings.ReplaceAll(bid.BURL, ...)
Null check PASS if bid != nil guard
No JSON injection risk PASS String replacement on plain text fields, not raw JSON

Registration

Check Result Evidence
openrtb_ext/bidders.go PASS BidderTAdvertisingBlis constant added
exchange/adapter_builders.go PASS Import and builder map entry added

Test Runner

Check Result Evidence
Package name PASS package tadvertising_blis
Test function PASS func TestJsonSamples(t *testing.T)
Builder invocation PASS Correct bidder constant, fake endpoint, server config
Test directory PASS "tadvertising_blistest" — correct naming
Build error check PASS require.NoError(t, buildErr)
Minimal test runner PASS ~20 lines, thin wrapper

Test Data

Check Result Evidence
Exemplary fixtures PASS 3 files: banner.json, video.json, native.json
Supplemental fixtures PASS 8 files: edge cases, error paths, macro replacement, multi-imp
Banner coverage PASS exemplary/banner.json with MType 1
Video coverage PASS exemplary/video.json with MType 2, includes VAST markup
Native coverage FAIL exemplary/native.json exists but native not in capabilities
Macro replacement coverage PASS supplemental/bid-macro-replace.json tests ${AUCTION_PRICE} in NURL, AdM, BURL
Error path: invalid ext PASS invalid-imp-ext.json, invalid-imp-ext-bidder.json
Error path: HTTP 204 PASS response-http-204.json
Error path: HTTP 500 PASS response-http-500.json
Error path: unsupported media type WARN Present but missing expectedMakeBidsErrors (masked by the error return bug)
Edge case: no site PASS banner_no_site.json — adapter creates Site+Publisher from scratch
Edge case: no publisher PASS banner_no_publisher.json — adapter creates Publisher
Edge case: no publisher ID PASS banner_no_publisher_id.json
Multi-impression PASS multiImpressionsRequest.json — 2 impressions, 2 bids returned
App context test N/A App not declared in capabilities — not required

PR-Level Checks

Check Result Evidence
Documentation PR PASS PR description links prebid/prebid.github.io#6458
Duplicate PR check PASS No other open PRs for "tadvertising_blis"
New adapter completeness PASS All 10 required file types present
CI status PASS All 6 checks passed
Naming consistency PASS Directory tadvertising_blis/, package tadvertising_blis, test dir tadvertising_blistest, constant BidderTAdvertisingBlis — all consistent

Recommendation: Request Changes

This is a well-structured new adapter PR with good test coverage and clean code patterns. The adapter correctly uses jsonutil, iterutil.SlicePointerValues, copy semantics for Site/Publisher, and MType-based bid type resolution. However, there are two issues that must be fixed:

  1. Must fix: MakeBids returns nil instead of accumulated errors — change return bidResponse, nil to return bidResponse, errors. Then update unsupported-media-type.json to include expectedMakeBidsErrors.
  2. Must fix: Capabilities declare only banner + video, but the adapter handles native and has a native.json exemplary test. Either add native to capabilities or remove the dead native handling.
  3. Should fix: Use http.MethodPost instead of string literal "POST"
  4. Should fix: Guard currency assignment: if response.Cur != "" { bidResponse.Currency = response.Cur }
  5. Consider: Capitalize geoscope to GLOBAL per convention

Task Completion Summary

Task # Subject Status
1 PR Triage: Classify PR type, route files, check CI Completed
2 Bidder-info: Verify tadvertising_blis.yaml fields Completed
3 Bidder-params: Verify JSON schema + imp struct + params_test Completed
4 Adapter-code: Verify adapter Go code, MakeRequests, MakeBids Completed
5 Adapter-code: Verify test runner, test data, registration Completed
6 Produce final review summary for PR #4706 Completed

Skills Called

Skill Outcome
pr-triage Executed inline — file categorization, CI check (all 6 passed), completeness check (all 10 files present), cross-skill concerns (native capability mismatch)
bidder-info-pr-review Executed inline — endpoint reachability (204), SSL (Amazon RSA, valid May 2026), GVL (213 = emetriq), capabilities, geoscope
bidder-params-pr-review Executed inline — schema validation (draft-04, required publisherId), struct alignment, params_test coverage
adapter-code-pr-review Executed inline — code quality (jsonutil, copy semantics, ImpIDs), error handling bug found, registration, test data coverage

Code / Commands Executed

Command Purpose Result
curl -X POST https://prebid-blis.tads.xplosion.de/bid Endpoint reachability HTTP 204, 1.57s
openssl s_client -connect prebid-blis.tads.xplosion.de:443 SSL certificate details Amazon RSA 2048 M04, CN=tads.xplosion.de, valid until May 16 2026

WebFetch API Calls

URL Purpose
api.github.com/.../pulls/4706 PR metadata (title, author, description)
api.github.com/.../pulls/4706/files File list + patches
api.github.com/.../pulls/4706/commits Head SHA for CI check
api.github.com/.../commits/{sha}/check-runs CI status (all 6 passed)
raw.githubusercontent.com/.../tadvertising_blis.go Full adapter source code
raw.githubusercontent.com/.../tadvertising_blis.yaml Bidder-info YAML
raw.githubusercontent.com/.../tadvertising_blis.json Params JSON schema
raw.githubusercontent.com/.../imp_tadvertisingblis.go Imp ext struct
raw.githubusercontent.com/.../params_test.go Params validation tests
raw.githubusercontent.com/.../tadvertising_blis_test.go Test runner
raw.githubusercontent.com/.../exemplary/banner.json Banner test fixture
raw.githubusercontent.com/.../exemplary/video.json Video test fixture
raw.githubusercontent.com/.../exemplary/native.json Native test fixture
raw.githubusercontent.com/.../supplemental/bid-macro-replace.json Macro replacement test
raw.githubusercontent.com/.../supplemental/unsupported-media-type.json Unsupported media type test
raw.githubusercontent.com/.../supplemental/multiImpressionsRequest.json Multi-impression test
vendor-list.consensu.org/v3/vendor-list.json GVL vendor lookup (vendor 213)

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 4, 2026

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 88eb579

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		96.2%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:80:	MakeBids		95.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:117:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v3/adapters/tadvertising_blis/tadvertising_blis.go:132:	resolveMacros		100.0%
total:											(statements)		96.6%

@github-actions
Copy link
Copy Markdown

github-actions bot commented Mar 6, 2026

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, f25b92d

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		96.2%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:80:	MakeBids		95.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:117:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:132:	resolveMacros		100.0%
total:											(statements)		96.6%

Comment thread static/bidder-info/tadvertising_blis.yaml
@github-actions
Copy link
Copy Markdown

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 92e5ac2

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		96.2%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:80:	MakeBids		95.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:117:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:132:	resolveMacros		100.0%
total:											(statements)		96.6%

Comment thread adapters/tadvertising_blis/tadvertising_blis.go Outdated
@github-actions
Copy link
Copy Markdown

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 6df14f3

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		74.3%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:92:	MakeBids		95.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:129:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:144:	resolveMacros		100.0%
total:											(statements)		85.3%

@github-actions
Copy link
Copy Markdown

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 4153545

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		88.6%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:92:	MakeBids		95.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:129:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:144:	resolveMacros		100.0%
total:											(statements)		92.6%

@github-actions
Copy link
Copy Markdown

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 7639b3a

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		97.1%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:92:	MakeBids		95.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:129:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:144:	resolveMacros		100.0%
total:											(statements)		97.1%

@tb-emq tb-emq requested a review from linux019 March 25, 2026 07:23
Copy link
Copy Markdown
Contributor

@postindustria-code postindustria-code left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does T-Advertising Blis intend to support user sync?
The adapter has site capabilities and it could be beneficial for it.

Comment thread adapters/tadvertising_blis/tadvertising_blis.go Outdated
Comment thread static/bidder-info/tadvertising_blis.yaml
@github-actions
Copy link
Copy Markdown

Code coverage summary

Note:

  • Prebid team doesn't anticipate tests covering code paths that might result in marshal and unmarshal errors
  • Coverage summary encompasses all commits leading up to the latest one, 9dfe53f

tadvertising_blis

Refer here for heat map coverage report

github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:22:	Builder			100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:28:	MakeRequests		97.1%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:92:	MakeBids		95.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:129:	getMediaTypeForBid	100.0%
github.com/prebid/prebid-server/v4/adapters/tadvertising_blis/tadvertising_blis.go:144:	resolveMacros		100.0%
total:											(statements)		97.1%

@tb-emq
Copy link
Copy Markdown
Author

tb-emq commented Mar 30, 2026

Does T-Advertising Blis intend to support user sync? The adapter has site capabilities and it could be beneficial for it.

At the current time we do not intent to support user syncs. This may be revisited in the future as the business needs change down the line but it is not a current priority.

Copy link
Copy Markdown
Contributor

@postindustria-code postindustria-code left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the clarification on the user sync.
Overall, the PR is well-structured and looks solid. LGTM.

@tb-emq
Copy link
Copy Markdown
Author

tb-emq commented Apr 8, 2026

Dear Maintainers,
we are excited about moving forward. Could you let us know what the timeline looks like for merging, and whether there is anything additional you need from our side?

Thanks for your time and the thorough reviews.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants