Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 1,538 Bytes
d7637ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | """Tests for Hugging Face plan normalization."""
import sys
from pathlib import Path
import pytest
_BACKEND_DIR = Path(__file__).resolve().parent.parent.parent / "backend"
if str(_BACKEND_DIR) not in sys.path:
sys.path.insert(0, str(_BACKEND_DIR))
import dependencies # noqa: E402
def test_oauth_is_pro_flag_takes_priority_over_user_type():
assert dependencies._normalize_user_plan({"type": "user", "isPro": True}) == "pro"
@pytest.mark.parametrize(
"payload",
[
{"is_pro": True},
{"accountType": "pro"},
{"plan": "HF Pro"},
{"subscription": "hf_pro"},
{"accountType": "team"},
{"plan": "enterprise"},
{"tier": "promotional"},
],
)
def test_non_ispro_signals_stay_free(payload):
assert dependencies._normalize_user_plan(payload) == "free"
def test_free_user_with_free_org_stays_free():
whoami = {
"name": "alice",
"type": "user",
"orgs": [{"name": "oss-friends", "plan": "free"}],
}
assert dependencies._normalize_user_plan(whoami) == "free"
def test_user_with_paid_org_without_personal_pro_stays_free():
whoami = {
"name": "alice",
"type": "user",
"orgs": [{"name": "team-a", "plan": "team"}],
}
assert dependencies._normalize_user_plan(whoami) == "free"
@pytest.mark.parametrize("payload", [None, [], {"type": "user"}, {"plan": "free"}])
def test_unknown_or_malformed_payload_defaults_to_free(payload):
assert dependencies._normalize_user_plan(payload) == "free"
|