style: apply ruff format to payment integrations

CI ruff format --check failed on 13 files. Applied ruff format to bring
them in line with project formatting (line wrapping, trailing commas,
quote consistency). No functional changes.
This commit is contained in:
Fringg
2026-05-04 20:47:48 +03:00
parent cd8be32671
commit 17732a0370
13 changed files with 29 additions and 67 deletions
+10 -10
View File
@@ -35,13 +35,15 @@ def _enable_apple_iap(monkeypatch: pytest.MonkeyPatch) -> None:
monkeypatch.setattr(
settings,
'APPLE_IAP_PRODUCTS',
json.dumps({
'com.bitnet.vpnclient.topup.100': 10_000,
'com.bitnet.vpnclient.topup.300': 30_000,
'com.bitnet.vpnclient.topup.500': 50_000,
'com.bitnet.vpnclient.topup.1000': 100_000,
'com.bitnet.vpnclient.topup.3000': 300_000,
}),
json.dumps(
{
'com.bitnet.vpnclient.topup.100': 10_000,
'com.bitnet.vpnclient.topup.300': 30_000,
'com.bitnet.vpnclient.topup.500': 50_000,
'com.bitnet.vpnclient.topup.1000': 100_000,
'com.bitnet.vpnclient.topup.3000': 300_000,
}
),
raising=False,
)
@@ -297,9 +299,7 @@ class TestVerifyAndDecodeJWS:
def test_rejects_empty_x5c(self) -> None:
service = AppleIAPService()
header = (
base64.urlsafe_b64encode(json.dumps({'alg': 'ES256', 'x5c': []}).encode()).rstrip(b'=').decode()
)
header = base64.urlsafe_b64encode(json.dumps({'alg': 'ES256', 'x5c': []}).encode()).rstrip(b'=').decode()
payload = base64.urlsafe_b64encode(b'{}').rstrip(b'=').decode()
sig = base64.urlsafe_b64encode(b'sig').rstrip(b'=').decode()
assert service._verify_and_decode_jws(f'{header}.{payload}.{sig}') is None