22 lines
536 B
Python
22 lines
536 B
Python
import pytest
|
|
|
|
from .common import verify_redirectors
|
|
|
|
URLS = {
|
|
"https://ads.stickyadstv.com/auto-user-sync?1": "image",
|
|
"https://ads.stickyadstv.com/user-matching?1": "image",
|
|
}
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.with_strict_etp
|
|
@pytest.mark.with_shims
|
|
async def test_works_with_shims(client):
|
|
await verify_redirectors(client, URLS, "REDIRECTED")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.with_strict_etp
|
|
@pytest.mark.without_shims
|
|
async def test_works_without_etp(client):
|
|
await verify_redirectors(client, URLS, "BLOCKED")
|