Skip to content

Commit

Permalink
Test matching for eTLD+1 on the private list
Browse files Browse the repository at this point in the history
  • Loading branch information
sammacbeth committed Sep 26, 2024
1 parent 6133e7d commit f632a65
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,21 @@
"requestURL": "https://sub1asub2.format.test/test6.js",
"requestType": "script",
"expectAction": "ignore"
}
},
{
"name": "private eTLD tracker - default block match",
"siteURL": "https://example.com",
"requestURL": "https://privateetld.appspot.com/script.js",
"requestType": "script",
"expectAction": "block"
},
{
"name": "private eTLD other domain - no match",
"siteURL": "https://example.com",
"requestURL": "https://other.appspot.com/script.js",
"requestType": "script",
"expectAction": "ignore"
},
]
},
"surrogateTests": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,15 @@
"action": "ignore"
}
]
},
"privateetld.appspot.com": {
"domain": "privateetld.appspot.com",
"owner": {},
"prevalence": 0.1,
"fingerprinting": 2,
"cookies": 0.1,
"categories": [],
"default": "block"
}
},
"entities": {
Expand Down

0 comments on commit f632a65

Please sign in to comment.