Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions sherlock_project/resources/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -3211,4 +3211,16 @@
],
"username_claimed": "example"
}
,"Tracker.gg Valorant": {
"errorType": "status_code",
"regexCheck": "^[A-Za-z0-9_\\- ]{3,16}#[A-Za-z0-9]{3,5}$",
"url": "https://tracker.gg/valorant/profile/riot/{}/overview",
"urlMain": "https://tracker.gg/valorant",
"username_claimed": "TenZ#NA1",
"headers": {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
},
"tags": "gaming",
"__comment__": "Note: Detection may be affected by Cloudflare protection. The regex ensures valid Riot ID format."
}
}
32 changes: 32 additions & 0 deletions tests/test_probes.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ class TestLiveTargets:
])
def test_known_positives_via_message(self, sites_info, site, username):
assert simple_query(sites_info=sites_info, site=site, username=username) is QueryStatus.CLAIMED

@pytest.mark.online
@pytest.mark.parametrize('site,username',[
('Tracker.gg Valorant', 'TenZ#NA1'),
('Tracker.gg Valorant', 'ScreaM#1337'),
])
def test_known_valorant_positives(self, sites_info, site, username):
status = simple_query(sites_info=sites_info, site=site, username=username)
if status is not QueryStatus.CLAIMED:
pytest.xfail(f"Known Valorant player {username} detection failed - possible Cloudflare or API limitation")
assert status is QueryStatus.CLAIMED


# Known positives should only use sites trusted to be reliable and unchanging
Expand Down Expand Up @@ -94,6 +105,27 @@ def test_likely_negatives_via_status_code(self, sites_info, site, random_len):
break
assert status is QueryStatus.AVAILABLE, f"Could not validate available username after {num_attempts} attempts with randomly generated usernames {attempted_usernames}."

@pytest.mark.online
@pytest.mark.parametrize('site,invalid_username',[
('Tracker.gg Valorant', 'NonExistentPlayer#0000'),
('Tracker.gg Valorant', 'ThisUserDoesNotExist#TEST'),
])
def test_valorant_negatives(self, sites_info, site, invalid_username):
status = simple_query(sites_info=sites_info, site=site, username=invalid_username)
if status not in (QueryStatus.AVAILABLE, QueryStatus.UNKNOWN):
pytest.xfail(f"Non-existent Valorant player detection affected by Cloudflare protection")

@pytest.mark.online
@pytest.mark.parametrize('site,invalid_format',[
('Tracker.gg Valorant', 'no-hashtag'),
('Tracker.gg Valorant', '#notag'),
('Tracker.gg Valorant', 'short#1'),
('Tracker.gg Valorant', 'waytoolongusername123456#1234'),
])
def test_valorant_illegal_format(self, sites_info, site, invalid_format):
status = simple_query(sites_info=sites_info, site=site, username=invalid_format)
assert status is QueryStatus.ILLEGAL, f"Expected {invalid_format} to be marked as illegal format on {site}"


def test_username_illegal_regex(sites_info):
site: str = 'BitBucket'
Expand Down
Loading