@7h3/protocol 0.1.2 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.dockerignore +19 -0
- package/.github/dependabot.yml +32 -0
- package/.github/workflows/ci.yml +31 -0
- package/.github/workflows/publish.yml +59 -0
- package/.github/workflows/scorecard.yml +37 -0
- package/7h3.example.yaml +125 -0
- package/CHANGELOG.md +92 -0
- package/CONTRIBUTING.md +82 -0
- package/Dockerfile +73 -0
- package/GOVERNANCE.md +62 -0
- package/README.md +323 -6
- package/SECURITY.md +70 -0
- package/bench-results/replay-cache-full-1777891033256.json +10 -0
- package/bench-results/replay-cache-full-1777896317488.json +10 -0
- package/bench-results/replay-cache-full-1777900993184.json +10 -0
- package/bench-results/replay-cache-full-1777901019285.json +10 -0
- package/bench-results/replay-cache-quick-1777870170126.json +10 -0
- package/bench-results/signature-profiles-quick-1775875160079.json +85 -0
- package/bench-results/signature-profiles-quick-1775983539716.json +85 -0
- package/bench-results/signature-profiles-quick-1776237913190.json +85 -0
- package/bench-results/wire-codecs-full-1777891019803.json +93 -0
- package/bench-results/wire-codecs-full-1777896260964.json +93 -0
- package/bench-results/wire-codecs-full-1777901004247.json +93 -0
- package/bench-results/wire-codecs-quick-1775972879056.json +93 -0
- package/bench-results/wire-codecs-quick-1775983541111.json +93 -0
- package/bench-results/wire-codecs-quick-1776237914299.json +93 -0
- package/bench-results/wire-codecs-quick-1777841285236.json +93 -0
- package/bench-results/wire-codecs-quick-1777841321772.json +93 -0
- package/bench-results/wire-codecs-quick-1777841330408.json +93 -0
- package/bench-results/wire-codecs-quick-1777852886082.json +93 -0
- package/bench-results/wire-codecs-quick-1777852988773.json +93 -0
- package/bench-results/wire-codecs-quick-1777870188095.json +93 -0
- package/bench-results/wire-codecs-quick-1777870263918.json +93 -0
- package/bench-results/wire-codecs-quick-1777870455034.json +93 -0
- package/bench-results/wire-codecs-quick-1778816163081.json +93 -0
- package/bench-results/wire-codecs-quick-1778843936130.json +93 -0
- package/bin/7h3.ts +385 -0
- package/conformance/7h3_v0_1.json +77 -0
- package/conformance/7h3_v0_1_binary.json +20 -0
- package/conformance/aip_v0_1_binary.json +20 -0
- package/docker-compose.yaml +77 -0
- package/docs/ADOPTION_PLAN.md +120 -0
- package/docs/AGENTS.md +77 -0
- package/docs/AIP_RFC_v0.1.md +97 -0
- package/docs/AI_DECISION_CARD.md +122 -0
- package/docs/AI_RUNTIME_POLICY.json +126 -0
- package/docs/AI_RUNTIME_POLICY.yaml +110 -0
- package/docs/BACKPRESSURE_TUNING.md +65 -0
- package/docs/BENCHMARK_CLAIM_MATRIX.md +42 -0
- package/docs/BENCHMARK_REPORT_TEMPLATE.md +169 -0
- package/docs/BINARY_CODEC_BENCH.md +23 -0
- package/docs/CLEAN_CLONE_RUNBOOK.md +36 -0
- package/docs/CLOCK_SKEW_POLICY.md +30 -0
- package/docs/DISTRIBUTED_REPLAY.md +142 -0
- package/docs/FUZZ_CAMPAIGN.md +121 -0
- package/docs/GATEWAY.md +195 -0
- package/docs/KEY_MANAGEMENT_POLICY.md +53 -0
- package/docs/KEY_REVOCATION.md +69 -0
- package/docs/MCP_WRAPPER.md +159 -0
- package/docs/MIGRATION_GUIDE.md +40 -0
- package/docs/OPERATORS.md +184 -0
- package/docs/PERF_REGRESSION_POLICY.md +34 -0
- package/docs/PROJECT_EXAMINATION_2026-05-31.md +219 -0
- package/docs/RELEASE_BENCHMARK_REPORT_2026-05-15.md +135 -0
- package/docs/RELEASE_GATE.md +25 -0
- package/docs/RELEASE_NOTES_v0.1.0.md +54 -0
- package/docs/SECURITY_REVIEW_2026-06-05.md +165 -0
- package/docs/TELEMETRY.md +41 -0
- package/docs/THREAT_MODEL.md +89 -0
- package/docs/VERSIONING_POLICY.md +30 -0
- package/docs/assets/banner.png +0 -0
- package/eslint.config.js +15 -0
- package/fuzz/ts/harness-decode.ts +136 -0
- package/fuzz/ts/harness-verify.ts +121 -0
- package/fuzz/ts/run.ts +35 -0
- package/mcp-server/README.md +38 -0
- package/mcp-server/package-lock.json +1187 -0
- package/mcp-server/package.json +35 -0
- package/mcp-server/src/index.ts +236 -0
- package/mcp-server/tsconfig.json +14 -0
- package/package.json +79 -13
- package/scripts/aip-framework-quickstart.ts +110 -0
- package/scripts/aip-mcp-gateway.ts +38 -0
- package/scripts/aip-mcp-wrap-demo.ts +72 -0
- package/scripts/aip-quickstart.ts +60 -0
- package/scripts/bench-diff.ts +118 -0
- package/scripts/bench-protocol-e2e.ts +937 -0
- package/scripts/bench-protocol-openloop.ts +1397 -0
- package/scripts/bench-replay-cache.ts +76 -0
- package/scripts/bench-signature-profiles.ts +180 -0
- package/scripts/bench-wire-codecs.ts +161 -0
- package/scripts/build-binary-conformance.ts +36 -0
- package/scripts/build-release-dashboard.ts +175 -0
- package/scripts/canary-rollout.ts +38 -0
- package/scripts/mcpGatewayCli.test.ts +116 -0
- package/scripts/prepare-aip-package.ts +88 -0
- package/scripts/regen-conformance-sigs.ts +18 -0
- package/scripts/release-gate.ts +19 -0
- package/scripts/validate-runtime-policy.ts +18 -0
- package/sdk/browser/index.test.ts +162 -0
- package/sdk/browser/index.ts +257 -0
- package/sdk/browser/package.json +13 -0
- package/sdk/go/go.mod +3 -0
- package/sdk/go/http.go +135 -0
- package/sdk/go/protocol.go +324 -0
- package/sdk/go/protocol_test.go +334 -0
- package/sdk/go/webhook.go +136 -0
- package/sdk/python/README.md +18 -0
- package/sdk/python/protocol_7h3/__init__.py +46 -0
- package/sdk/python/protocol_7h3/http.py +212 -0
- package/sdk/python/protocol_7h3/keys.py +149 -0
- package/sdk/python/protocol_7h3/protocol.py +525 -0
- package/sdk/python/protocol_7h3/queue.py +118 -0
- package/sdk/python/protocol_7h3/webhook.py +116 -0
- package/sdk/python/pyproject.toml +40 -0
- package/sdk/python/tests/test_conformance.py +110 -0
- package/sdk/python/tests/test_http.py +305 -0
- package/sdk/python/tests/test_keys.py +417 -0
- package/sdk/python/tests/test_queue.py +120 -0
- package/sdk/python/tests/test_webhook.py +345 -0
- package/sdk/rust/Cargo.lock +371 -0
- package/sdk/rust/Cargo.toml +25 -0
- package/sdk/rust/README.md +31 -0
- package/sdk/rust/fuzz/Cargo.toml +29 -0
- package/sdk/rust/fuzz/fuzz_targets/fuzz_canonicalize.rs +46 -0
- package/sdk/rust/fuzz/fuzz_targets/fuzz_decode.rs +11 -0
- package/sdk/rust/src/bin/aip_mcp_gateway.rs +59 -0
- package/sdk/rust/src/http.rs +145 -0
- package/sdk/rust/src/keys.rs +161 -0
- package/sdk/rust/src/lib.rs +688 -0
- package/sdk/rust/src/queue.rs +79 -0
- package/sdk/rust/src/webhook.rs +86 -0
- package/sdk/rust/tests/conformance.rs +148 -0
- package/sdk/rust/tests/gateway.rs +130 -0
- package/sdk/rust/tests/http_webhook_queue.rs +201 -0
- package/sdk/rust/tests/keys.rs +189 -0
- package/src/agentAdapter.test.ts +48 -0
- package/src/agentAdapter.ts +56 -0
- package/src/auditLog.test.ts +145 -0
- package/src/auditLog.ts +147 -0
- package/src/conformance.test.ts +136 -0
- package/src/conformanceVectors.ts +99 -0
- package/src/frameworkAdapters.test.ts +290 -0
- package/src/frameworkAdapters.ts +261 -0
- package/src/gateway.test.ts +343 -0
- package/src/gateway.ts +171 -0
- package/src/grpcBinding.test.ts +211 -0
- package/src/grpcBinding.ts +103 -0
- package/src/httpBinding.test.ts +376 -0
- package/src/httpBinding.ts +163 -0
- package/src/index.ts +32 -0
- package/src/keyInfra.test.ts +278 -0
- package/src/keyInfra.ts +228 -0
- package/src/keyRegistry.ts +59 -0
- package/src/keyRotation.test.ts +78 -0
- package/src/keyRotation.ts +72 -0
- package/src/mcpGateway.test.ts +129 -0
- package/src/mcpGateway.ts +250 -0
- package/src/mcpTransports.test.ts +92 -0
- package/src/mcpTransports.ts +169 -0
- package/src/mcpWrapper.test.ts +179 -0
- package/src/mcpWrapper.ts +206 -0
- package/src/policyEnforcer.test.ts +99 -0
- package/src/policyEnforcer.ts +169 -0
- package/src/policyTelemetryFeedback.test.ts +25 -0
- package/src/policyTelemetryFeedback.ts +38 -0
- package/src/protocol.bench.ts +37 -0
- package/src/protocol.test.ts +155 -0
- package/src/protocol.ts +413 -0
- package/src/protocolAgent.test.ts +105 -0
- package/src/protocolAgent.ts +169 -0
- package/src/protocolBinary.test.ts +165 -0
- package/src/protocolBinary.ts +312 -0
- package/src/protocolCapabilities.ts +70 -0
- package/src/protocolFuzz.advanced.test.ts +235 -0
- package/src/protocolFuzz.test.ts +111 -0
- package/src/protocolNegative.test.ts +97 -0
- package/src/protocolReplay.test.ts +71 -0
- package/src/protocolReplay.ts +194 -0
- package/src/protocolTransport.test.ts +556 -0
- package/src/protocolTransport.ts +483 -0
- package/src/queueBinding.test.ts +130 -0
- package/src/queueBinding.ts +102 -0
- package/src/rateLimiter.test.ts +96 -0
- package/src/rateLimiter.ts +46 -0
- package/src/redisClient.ts +140 -0
- package/src/redisIntegration.test.ts +134 -0
- package/src/replayStores.test.ts +141 -0
- package/src/replayStores.ts +82 -0
- package/src/revocation.test.ts +98 -0
- package/src/revocation.ts +0 -0
- package/src/routePolicy.test.ts +87 -0
- package/src/routePolicy.ts +72 -0
- package/src/runtimePolicy.test.ts +49 -0
- package/src/runtimePolicy.ts +81 -0
- package/src/runtimePolicyManager.test.ts +29 -0
- package/src/runtimePolicyManager.ts +50 -0
- package/src/runtimePolicyPresets.ts +43 -0
- package/src/signedResponse.test.ts +111 -0
- package/src/signedResponse.ts +83 -0
- package/src/webhookBinding.test.ts +144 -0
- package/src/webhookBinding.ts +115 -0
- package/src/wsBinding.test.ts +221 -0
- package/src/wsBinding.ts +100 -0
- package/tsconfig.json +15 -0
- package/tsconfig.lib.json +23 -0
- package/vite.lib.config.ts +16 -0
- package/agentAdapter.d.ts +0 -26
- package/conformanceVectors.d.ts +0 -20
- package/frameworkAdapters.d.ts +0 -72
- package/index.d.ts +0 -20
- package/index.js +0 -1702
- package/keyRotation.d.ts +0 -20
- package/mcpGateway.d.ts +0 -37
- package/mcpTransports.d.ts +0 -62
- package/mcpWrapper.d.ts +0 -83
- package/policyEnforcer.d.ts +0 -50
- package/policyTelemetryFeedback.d.ts +0 -11
- package/protocol.d.ts +0 -66
- package/protocolAgent.d.ts +0 -58
- package/protocolBinary.d.ts +0 -8
- package/protocolCapabilities.d.ts +0 -24
- package/protocolReplay.d.ts +0 -35
- package/protocolTransport.d.ts +0 -73
- package/redisClient.d.ts +0 -49
- package/replayStores.d.ts +0 -32
- package/revocation.d.ts +0 -71
- package/runtimePolicy.d.ts +0 -24
- package/runtimePolicyManager.d.ts +0 -15
- package/runtimePolicyPresets.d.ts +0 -11
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
"""Tests for the 7h3 Protocol webhook binding."""
|
|
2
|
+
from __future__ import annotations
|
|
3
|
+
|
|
4
|
+
import json
|
|
5
|
+
import time
|
|
6
|
+
import unittest
|
|
7
|
+
|
|
8
|
+
from protocol_7h3.webhook import (
|
|
9
|
+
WEBHOOK_SIG_HEADER,
|
|
10
|
+
WEBHOOK_TS_HEADER,
|
|
11
|
+
consume_webhook,
|
|
12
|
+
sign_webhook,
|
|
13
|
+
sign_webhook_hmac,
|
|
14
|
+
verify_webhook,
|
|
15
|
+
verify_webhook_hmac,
|
|
16
|
+
)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# ---------------------------------------------------------------------------
|
|
20
|
+
# Test key generation helpers
|
|
21
|
+
# ---------------------------------------------------------------------------
|
|
22
|
+
|
|
23
|
+
def _generate_ed25519_keypair_base64url():
|
|
24
|
+
"""Generate an Ed25519 keypair using whatever backend is available.
|
|
25
|
+
|
|
26
|
+
Returns (private_key_pkcs8_base64url, public_key_spki_base64url).
|
|
27
|
+
"""
|
|
28
|
+
import base64
|
|
29
|
+
import hashlib
|
|
30
|
+
|
|
31
|
+
# Attempt to use the cryptography package first
|
|
32
|
+
try:
|
|
33
|
+
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey
|
|
34
|
+
from cryptography.hazmat.primitives import serialization
|
|
35
|
+
|
|
36
|
+
priv = Ed25519PrivateKey.generate()
|
|
37
|
+
priv_der = priv.private_bytes(
|
|
38
|
+
encoding=serialization.Encoding.DER,
|
|
39
|
+
format=serialization.PrivateFormat.PKCS8,
|
|
40
|
+
encryption_algorithm=serialization.NoEncryption(),
|
|
41
|
+
)
|
|
42
|
+
pub_der = priv.public_key().public_bytes(
|
|
43
|
+
encoding=serialization.Encoding.DER,
|
|
44
|
+
format=serialization.PublicFormat.SubjectPublicKeyInfo,
|
|
45
|
+
)
|
|
46
|
+
b64 = lambda b: base64.urlsafe_b64encode(b).decode("ascii").rstrip("=")
|
|
47
|
+
return b64(priv_der), b64(pub_der)
|
|
48
|
+
except ImportError:
|
|
49
|
+
pass
|
|
50
|
+
|
|
51
|
+
# Fallback: use pure-Python implementation from protocol.py internals
|
|
52
|
+
# to build a minimal PKCS8/SPKI DER pair
|
|
53
|
+
import os
|
|
54
|
+
from protocol_7h3.protocol import (
|
|
55
|
+
_py_ed25519_sign,
|
|
56
|
+
_G_BASE,
|
|
57
|
+
_point_mul,
|
|
58
|
+
_compress,
|
|
59
|
+
_seed_from_pkcs8,
|
|
60
|
+
_pubkey_from_spki,
|
|
61
|
+
)
|
|
62
|
+
|
|
63
|
+
seed = os.urandom(32)
|
|
64
|
+
|
|
65
|
+
# PKCS8 v0 for Ed25519: 30 2e 02 01 00 30 05 06 03 2b 65 70 04 22 04 20 [32-byte seed]
|
|
66
|
+
pkcs8_der = bytes([
|
|
67
|
+
0x30, 0x2e,
|
|
68
|
+
0x02, 0x01, 0x00,
|
|
69
|
+
0x30, 0x05, 0x06, 0x03, 0x2b, 0x65, 0x70,
|
|
70
|
+
0x04, 0x22, 0x04, 0x20,
|
|
71
|
+
]) + seed
|
|
72
|
+
|
|
73
|
+
# Derive the public key from the seed
|
|
74
|
+
import hashlib as _hashlib
|
|
75
|
+
h = _hashlib.sha512(seed).digest()
|
|
76
|
+
from bytearray import bytearray # stdlib
|
|
77
|
+
a_bytes = bytearray(h[:32])
|
|
78
|
+
a_bytes[0] &= 248
|
|
79
|
+
a_bytes[31] &= 127
|
|
80
|
+
a_bytes[31] |= 64
|
|
81
|
+
a = int.from_bytes(a_bytes, "little")
|
|
82
|
+
A_bytes = _compress(_point_mul(a, _G_BASE))
|
|
83
|
+
|
|
84
|
+
# SPKI for Ed25519: 30 2a 30 05 06 03 2b 65 70 03 21 00 [32-byte public key]
|
|
85
|
+
spki_der = bytes([
|
|
86
|
+
0x30, 0x2a,
|
|
87
|
+
0x30, 0x05, 0x06, 0x03, 0x2b, 0x65, 0x70,
|
|
88
|
+
0x03, 0x21, 0x00,
|
|
89
|
+
]) + A_bytes
|
|
90
|
+
|
|
91
|
+
b64 = lambda b: base64.urlsafe_b64encode(b).decode("ascii").rstrip("=")
|
|
92
|
+
return b64(pkcs8_der), b64(spki_der)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def _generate_ed25519_keypair():
|
|
96
|
+
"""Return (private_key_b64url, public_key_b64url) using best available backend."""
|
|
97
|
+
import base64
|
|
98
|
+
import os
|
|
99
|
+
|
|
100
|
+
try:
|
|
101
|
+
from cryptography.hazmat.primitives.asymmetric.ed25519 import Ed25519PrivateKey
|
|
102
|
+
from cryptography.hazmat.primitives import serialization
|
|
103
|
+
|
|
104
|
+
priv = Ed25519PrivateKey.generate()
|
|
105
|
+
priv_der = priv.private_bytes(
|
|
106
|
+
encoding=serialization.Encoding.DER,
|
|
107
|
+
format=serialization.PrivateFormat.PKCS8,
|
|
108
|
+
encryption_algorithm=serialization.NoEncryption(),
|
|
109
|
+
)
|
|
110
|
+
pub_der = priv.public_key().public_bytes(
|
|
111
|
+
encoding=serialization.Encoding.DER,
|
|
112
|
+
format=serialization.PublicFormat.SubjectPublicKeyInfo,
|
|
113
|
+
)
|
|
114
|
+
b64url = lambda b: base64.urlsafe_b64encode(b).decode("ascii").rstrip("=")
|
|
115
|
+
return b64url(priv_der), b64url(pub_der)
|
|
116
|
+
except ImportError:
|
|
117
|
+
pass
|
|
118
|
+
|
|
119
|
+
# Pure-Python fallback
|
|
120
|
+
import hashlib as _hashlib
|
|
121
|
+
from protocol_7h3.protocol import _G_BASE, _point_mul, _compress
|
|
122
|
+
|
|
123
|
+
seed = os.urandom(32)
|
|
124
|
+
|
|
125
|
+
h = _hashlib.sha512(seed).digest()
|
|
126
|
+
a_bytes = bytearray(h[:32])
|
|
127
|
+
a_bytes[0] &= 248
|
|
128
|
+
a_bytes[31] &= 127
|
|
129
|
+
a_bytes[31] |= 64
|
|
130
|
+
a = int.from_bytes(bytes(a_bytes), "little")
|
|
131
|
+
A_bytes = _compress(_point_mul(a, _G_BASE))
|
|
132
|
+
|
|
133
|
+
pkcs8_der = bytes([
|
|
134
|
+
0x30, 0x2e,
|
|
135
|
+
0x02, 0x01, 0x00,
|
|
136
|
+
0x30, 0x05, 0x06, 0x03, 0x2b, 0x65, 0x70,
|
|
137
|
+
0x04, 0x22, 0x04, 0x20,
|
|
138
|
+
]) + seed
|
|
139
|
+
|
|
140
|
+
spki_der = bytes([
|
|
141
|
+
0x30, 0x2a,
|
|
142
|
+
0x30, 0x05, 0x06, 0x03, 0x2b, 0x65, 0x70,
|
|
143
|
+
0x03, 0x21, 0x00,
|
|
144
|
+
]) + A_bytes
|
|
145
|
+
|
|
146
|
+
b64url = lambda b: base64.urlsafe_b64encode(b).decode("ascii").rstrip("=")
|
|
147
|
+
return b64url(pkcs8_der), b64url(spki_der)
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
def _generate_second_keypair():
|
|
151
|
+
"""Generate a second, independent keypair (for wrong-key tests)."""
|
|
152
|
+
return _generate_ed25519_keypair()
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
# ---------------------------------------------------------------------------
|
|
156
|
+
# Test fixtures — generated once per module load
|
|
157
|
+
# ---------------------------------------------------------------------------
|
|
158
|
+
|
|
159
|
+
_PRIV_KEY, _PUB_KEY = _generate_ed25519_keypair()
|
|
160
|
+
_PRIV_KEY2, _PUB_KEY2 = _generate_ed25519_keypair()
|
|
161
|
+
_HMAC_SECRET = "super-secret-webhook-key-abc123"
|
|
162
|
+
_HMAC_SECRET2 = "different-secret-key-xyz789"
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
# ---------------------------------------------------------------------------
|
|
166
|
+
# Tests
|
|
167
|
+
# ---------------------------------------------------------------------------
|
|
168
|
+
|
|
169
|
+
class TestSignWebhookEd25519RoundTrip(unittest.TestCase):
|
|
170
|
+
"""1. sign_webhook + verify_webhook round trip."""
|
|
171
|
+
|
|
172
|
+
def test_str_payload(self):
|
|
173
|
+
payload = '{"event":"user.created","id":"123"}'
|
|
174
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
175
|
+
self.assertIn(WEBHOOK_SIG_HEADER, headers)
|
|
176
|
+
self.assertIn(WEBHOOK_TS_HEADER, headers)
|
|
177
|
+
result = verify_webhook(payload, headers, _PUB_KEY)
|
|
178
|
+
self.assertTrue(result)
|
|
179
|
+
|
|
180
|
+
def test_bytes_payload(self):
|
|
181
|
+
payload = b'{"event":"order.shipped"}'
|
|
182
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
183
|
+
result = verify_webhook(payload, headers, _PUB_KEY)
|
|
184
|
+
self.assertTrue(result)
|
|
185
|
+
|
|
186
|
+
def test_headers_are_strings(self):
|
|
187
|
+
headers = sign_webhook("hello", _PRIV_KEY)
|
|
188
|
+
self.assertIsInstance(headers[WEBHOOK_SIG_HEADER], str)
|
|
189
|
+
self.assertIsInstance(headers[WEBHOOK_TS_HEADER], str)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
class TestSignWebhookHmacRoundTrip(unittest.TestCase):
|
|
193
|
+
"""2. sign_webhook_hmac + verify_webhook_hmac round trip."""
|
|
194
|
+
|
|
195
|
+
def test_str_payload(self):
|
|
196
|
+
payload = '{"event":"payment.succeeded","amount":9900}'
|
|
197
|
+
headers = sign_webhook_hmac(payload, _HMAC_SECRET)
|
|
198
|
+
self.assertIn(WEBHOOK_SIG_HEADER, headers)
|
|
199
|
+
self.assertIn(WEBHOOK_TS_HEADER, headers)
|
|
200
|
+
result = verify_webhook_hmac(payload, headers, _HMAC_SECRET)
|
|
201
|
+
self.assertTrue(result)
|
|
202
|
+
|
|
203
|
+
def test_bytes_payload(self):
|
|
204
|
+
payload = b'{"event":"charge.failed"}'
|
|
205
|
+
headers = sign_webhook_hmac(payload, _HMAC_SECRET)
|
|
206
|
+
result = verify_webhook_hmac(payload, headers, _HMAC_SECRET)
|
|
207
|
+
self.assertTrue(result)
|
|
208
|
+
|
|
209
|
+
def test_headers_case_insensitive(self):
|
|
210
|
+
payload = "test-body"
|
|
211
|
+
headers_lower = sign_webhook_hmac(payload, _HMAC_SECRET)
|
|
212
|
+
# Uppercase header keys should still verify
|
|
213
|
+
upper_headers = {k.upper(): v for k, v in headers_lower.items()}
|
|
214
|
+
result = verify_webhook_hmac(payload, upper_headers, _HMAC_SECRET)
|
|
215
|
+
self.assertTrue(result)
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
class TestTamperedPayload(unittest.TestCase):
|
|
219
|
+
"""3. Tampered payload returns False."""
|
|
220
|
+
|
|
221
|
+
def test_tampered_ed25519(self):
|
|
222
|
+
original = '{"event":"user.deleted","id":"42"}'
|
|
223
|
+
headers = sign_webhook(original, _PRIV_KEY)
|
|
224
|
+
tampered = '{"event":"user.deleted","id":"99"}'
|
|
225
|
+
result = verify_webhook(tampered, headers, _PUB_KEY)
|
|
226
|
+
self.assertFalse(result)
|
|
227
|
+
|
|
228
|
+
def test_tampered_hmac(self):
|
|
229
|
+
original = '{"amount":100}'
|
|
230
|
+
headers = sign_webhook_hmac(original, _HMAC_SECRET)
|
|
231
|
+
tampered = '{"amount":999}'
|
|
232
|
+
result = verify_webhook_hmac(tampered, headers, _HMAC_SECRET)
|
|
233
|
+
self.assertFalse(result)
|
|
234
|
+
|
|
235
|
+
def test_tampered_signature_ed25519(self):
|
|
236
|
+
payload = "legitimate-body"
|
|
237
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
238
|
+
headers[WEBHOOK_SIG_HEADER] = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
|
|
239
|
+
result = verify_webhook(payload, headers, _PUB_KEY)
|
|
240
|
+
self.assertFalse(result)
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
class TestExpiredTimestamp(unittest.TestCase):
|
|
244
|
+
"""4. Expired timestamp returns False (use old timestamp to force expiry)."""
|
|
245
|
+
|
|
246
|
+
def test_expired_ed25519(self):
|
|
247
|
+
"""Use a timestamp 10 minutes in the past — beyond the 5-min default TTL."""
|
|
248
|
+
payload = '{"event":"subscription.renewed"}'
|
|
249
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
250
|
+
# Overwrite timestamp with something 10 minutes in the past
|
|
251
|
+
old_ts = int(time.time() * 1000) - 600_000
|
|
252
|
+
headers[WEBHOOK_TS_HEADER] = str(old_ts)
|
|
253
|
+
result = verify_webhook(payload, headers, _PUB_KEY)
|
|
254
|
+
self.assertFalse(result)
|
|
255
|
+
|
|
256
|
+
def test_expired_hmac(self):
|
|
257
|
+
"""Use a timestamp 10 minutes in the past — beyond the 5-min default TTL."""
|
|
258
|
+
payload = '{"event":"invoice.paid"}'
|
|
259
|
+
headers = sign_webhook_hmac(payload, _HMAC_SECRET)
|
|
260
|
+
old_ts = int(time.time() * 1000) - 600_000
|
|
261
|
+
headers[WEBHOOK_TS_HEADER] = str(old_ts)
|
|
262
|
+
result = verify_webhook_hmac(payload, headers, _HMAC_SECRET)
|
|
263
|
+
self.assertFalse(result)
|
|
264
|
+
|
|
265
|
+
def test_expired_very_small_max_age(self):
|
|
266
|
+
"""Craft headers with old timestamp; use explicit short max_age_ms."""
|
|
267
|
+
payload = "some-body"
|
|
268
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
269
|
+
# Timestamp 1 second old with max_age 500 ms — must fail
|
|
270
|
+
old_ts = int(time.time() * 1000) - 1000
|
|
271
|
+
headers[WEBHOOK_TS_HEADER] = str(old_ts)
|
|
272
|
+
result = verify_webhook(payload, headers, _PUB_KEY, max_age_ms=500)
|
|
273
|
+
self.assertFalse(result)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
class TestWrongKey(unittest.TestCase):
|
|
277
|
+
"""5. Wrong key returns False."""
|
|
278
|
+
|
|
279
|
+
def test_wrong_public_key_ed25519(self):
|
|
280
|
+
payload = '{"event":"user.updated"}'
|
|
281
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
282
|
+
# Verify with a different public key
|
|
283
|
+
result = verify_webhook(payload, headers, _PUB_KEY2)
|
|
284
|
+
self.assertFalse(result)
|
|
285
|
+
|
|
286
|
+
def test_wrong_secret_hmac(self):
|
|
287
|
+
payload = '{"event":"payment.failed"}'
|
|
288
|
+
headers = sign_webhook_hmac(payload, _HMAC_SECRET)
|
|
289
|
+
result = verify_webhook_hmac(payload, headers, _HMAC_SECRET2)
|
|
290
|
+
self.assertFalse(result)
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
class TestConsumeWebhook(unittest.TestCase):
|
|
294
|
+
"""6. consume_webhook: valid payload parses JSON and returns dict."""
|
|
295
|
+
|
|
296
|
+
def test_valid_payload_returns_dict(self):
|
|
297
|
+
payload = '{"event":"checkout.completed","order_id":"ord-456"}'
|
|
298
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
299
|
+
result = consume_webhook(payload, headers, _PUB_KEY)
|
|
300
|
+
self.assertIsInstance(result, dict)
|
|
301
|
+
self.assertEqual(result["event"], "checkout.completed")
|
|
302
|
+
self.assertEqual(result["order_id"], "ord-456")
|
|
303
|
+
|
|
304
|
+
def test_valid_payload_with_nested_json(self):
|
|
305
|
+
data = {"event": "order.created", "data": {"items": [1, 2, 3], "total": 49.99}}
|
|
306
|
+
payload = json.dumps(data)
|
|
307
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
308
|
+
result = consume_webhook(payload, headers, _PUB_KEY)
|
|
309
|
+
self.assertEqual(result["data"]["total"], 49.99)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
class TestConsumeWebhookInvalidSig(unittest.TestCase):
|
|
313
|
+
"""7. consume_webhook: invalid sig raises ValueError."""
|
|
314
|
+
|
|
315
|
+
def test_wrong_key_raises(self):
|
|
316
|
+
payload = '{"event":"refund.issued"}'
|
|
317
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
318
|
+
with self.assertRaises(ValueError) as ctx:
|
|
319
|
+
consume_webhook(payload, headers, _PUB_KEY2)
|
|
320
|
+
self.assertIn("7h3", str(ctx.exception))
|
|
321
|
+
|
|
322
|
+
def test_tampered_payload_raises(self):
|
|
323
|
+
original = '{"event":"user.created"}'
|
|
324
|
+
headers = sign_webhook(original, _PRIV_KEY)
|
|
325
|
+
tampered = '{"event":"admin.created"}'
|
|
326
|
+
with self.assertRaises(ValueError):
|
|
327
|
+
consume_webhook(tampered, headers, _PUB_KEY)
|
|
328
|
+
|
|
329
|
+
def test_missing_headers_raises(self):
|
|
330
|
+
payload = '{"event":"ping"}'
|
|
331
|
+
with self.assertRaises(ValueError):
|
|
332
|
+
consume_webhook(payload, {}, _PUB_KEY)
|
|
333
|
+
|
|
334
|
+
def test_expired_signature_raises(self):
|
|
335
|
+
payload = '{"event":"ping"}'
|
|
336
|
+
headers = sign_webhook(payload, _PRIV_KEY)
|
|
337
|
+
# Overwrite timestamp with 10-minute-old value to force expiry
|
|
338
|
+
old_ts = int(time.time() * 1000) - 600_000
|
|
339
|
+
headers[WEBHOOK_TS_HEADER] = str(old_ts)
|
|
340
|
+
with self.assertRaises(ValueError):
|
|
341
|
+
consume_webhook(payload, headers, _PUB_KEY)
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
if __name__ == "__main__":
|
|
345
|
+
unittest.main()
|