@kya-os/mcp-i-core 1.3.7-canary.0 → 1.3.7-canary.clientinfo.20251126041014
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/.turbo/turbo-build.log +4 -0
- package/.turbo/turbo-test$colon$coverage.log +4239 -0
- package/.turbo/turbo-test.log +2973 -0
- package/COMPLIANCE_IMPROVEMENT_REPORT.md +483 -0
- package/Composer 3.md +615 -0
- package/GPT-5.md +1169 -0
- package/OPUS-plan.md +352 -0
- package/PHASE_3_AND_4.1_SUMMARY.md +585 -0
- package/PHASE_3_SUMMARY.md +317 -0
- package/PHASE_4.1.3_SUMMARY.md +428 -0
- package/PHASE_4.1_COMPLETE.md +525 -0
- package/PHASE_4_USER_DID_IDENTITY_LINKING_PLAN.md +1240 -0
- package/SCHEMA_COMPLIANCE_REPORT.md +275 -0
- package/TEST_PLAN.md +571 -0
- package/coverage/coverage-final.json +57 -0
- package/dist/__tests__/utils/mock-providers.d.ts +1 -2
- package/dist/__tests__/utils/mock-providers.d.ts.map +1 -1
- package/dist/__tests__/utils/mock-providers.js.map +1 -1
- package/dist/cache/oauth-config-cache.d.ts +69 -0
- package/dist/cache/oauth-config-cache.d.ts.map +1 -0
- package/dist/cache/oauth-config-cache.js +76 -0
- package/dist/cache/oauth-config-cache.js.map +1 -0
- package/dist/identity/idp-token-resolver.d.ts +53 -0
- package/dist/identity/idp-token-resolver.d.ts.map +1 -0
- package/dist/identity/idp-token-resolver.js +108 -0
- package/dist/identity/idp-token-resolver.js.map +1 -0
- package/dist/identity/idp-token-storage.interface.d.ts +42 -0
- package/dist/identity/idp-token-storage.interface.d.ts.map +1 -0
- package/dist/identity/idp-token-storage.interface.js +12 -0
- package/dist/identity/idp-token-storage.interface.js.map +1 -0
- package/dist/identity/user-did-manager.d.ts +39 -1
- package/dist/identity/user-did-manager.d.ts.map +1 -1
- package/dist/identity/user-did-manager.js +69 -3
- package/dist/identity/user-did-manager.js.map +1 -1
- package/dist/index.d.ts +24 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +43 -1
- package/dist/index.js.map +1 -1
- package/dist/runtime/audit-logger.d.ts +37 -0
- package/dist/runtime/audit-logger.d.ts.map +1 -0
- package/dist/runtime/audit-logger.js +9 -0
- package/dist/runtime/audit-logger.js.map +1 -0
- package/dist/runtime/base.d.ts +19 -2
- package/dist/runtime/base.d.ts.map +1 -1
- package/dist/runtime/base.js +227 -11
- package/dist/runtime/base.js.map +1 -1
- package/dist/services/access-control.service.d.ts.map +1 -1
- package/dist/services/access-control.service.js +199 -15
- package/dist/services/access-control.service.js.map +1 -1
- package/dist/services/authorization/authorization-registry.d.ts +29 -0
- package/dist/services/authorization/authorization-registry.d.ts.map +1 -0
- package/dist/services/authorization/authorization-registry.js +57 -0
- package/dist/services/authorization/authorization-registry.js.map +1 -0
- package/dist/services/authorization/types.d.ts +53 -0
- package/dist/services/authorization/types.d.ts.map +1 -0
- package/dist/services/authorization/types.js +10 -0
- package/dist/services/authorization/types.js.map +1 -0
- package/dist/services/batch-delegation.service.d.ts +53 -0
- package/dist/services/batch-delegation.service.d.ts.map +1 -0
- package/dist/services/batch-delegation.service.js +95 -0
- package/dist/services/batch-delegation.service.js.map +1 -0
- package/dist/services/index.d.ts +2 -0
- package/dist/services/index.d.ts.map +1 -1
- package/dist/services/index.js +4 -1
- package/dist/services/index.js.map +1 -1
- package/dist/services/oauth-config.service.d.ts +53 -0
- package/dist/services/oauth-config.service.d.ts.map +1 -0
- package/dist/services/oauth-config.service.js +141 -0
- package/dist/services/oauth-config.service.js.map +1 -0
- package/dist/services/oauth-provider-registry.d.ts +88 -0
- package/dist/services/oauth-provider-registry.d.ts.map +1 -0
- package/dist/services/oauth-provider-registry.js +128 -0
- package/dist/services/oauth-provider-registry.js.map +1 -0
- package/dist/services/oauth-service.d.ts +77 -0
- package/dist/services/oauth-service.d.ts.map +1 -0
- package/dist/services/oauth-service.js +373 -0
- package/dist/services/oauth-service.js.map +1 -0
- package/dist/services/oauth-token-retrieval.service.d.ts +49 -0
- package/dist/services/oauth-token-retrieval.service.d.ts.map +1 -0
- package/dist/services/oauth-token-retrieval.service.js +150 -0
- package/dist/services/oauth-token-retrieval.service.js.map +1 -0
- package/dist/services/provider-resolver.d.ts +48 -0
- package/dist/services/provider-resolver.d.ts.map +1 -0
- package/dist/services/provider-resolver.js +121 -0
- package/dist/services/provider-resolver.js.map +1 -0
- package/dist/services/provider-validator.d.ts +55 -0
- package/dist/services/provider-validator.d.ts.map +1 -0
- package/dist/services/provider-validator.js +135 -0
- package/dist/services/provider-validator.js.map +1 -0
- package/dist/services/session-registration.service.d.ts +80 -0
- package/dist/services/session-registration.service.d.ts.map +1 -0
- package/dist/services/session-registration.service.js +228 -0
- package/dist/services/session-registration.service.js.map +1 -0
- package/dist/services/tool-context-builder.d.ts +57 -0
- package/dist/services/tool-context-builder.d.ts.map +1 -0
- package/dist/services/tool-context-builder.js +125 -0
- package/dist/services/tool-context-builder.js.map +1 -0
- package/dist/services/tool-protection.service.d.ts +27 -0
- package/dist/services/tool-protection.service.d.ts.map +1 -1
- package/dist/services/tool-protection.service.js +194 -4
- package/dist/services/tool-protection.service.js.map +1 -1
- package/dist/types/oauth-required-error.d.ts +40 -0
- package/dist/types/oauth-required-error.d.ts.map +1 -0
- package/dist/types/oauth-required-error.js +40 -0
- package/dist/types/oauth-required-error.js.map +1 -0
- package/dist/utils/did-helpers.d.ts +33 -0
- package/dist/utils/did-helpers.d.ts.map +1 -1
- package/dist/utils/did-helpers.js +40 -0
- package/dist/utils/did-helpers.js.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +1 -0
- package/dist/utils/index.js.map +1 -1
- package/docs/API_REFERENCE.md +1362 -0
- package/docs/COMPLIANCE_MATRIX.md +691 -0
- package/docs/STATUSLIST2021_GUIDE.md +696 -0
- package/docs/W3C_VC_DELEGATION_GUIDE.md +710 -0
- package/package.json +23 -54
- package/scripts/audit-compliance.ts +724 -0
- package/src/__tests__/cache/tool-protection-cache.test.ts +640 -0
- package/src/__tests__/config/provider-runtime-config.test.ts +309 -0
- package/src/__tests__/delegation-e2e.test.ts +690 -0
- package/src/__tests__/identity/user-did-manager.test.ts +213 -0
- package/src/__tests__/index.test.ts +56 -0
- package/src/__tests__/integration/full-flow.test.ts +776 -0
- package/src/__tests__/integration.test.ts +281 -0
- package/src/__tests__/providers/base.test.ts +173 -0
- package/src/__tests__/providers/memory.test.ts +319 -0
- package/src/__tests__/regression/phase2-regression.test.ts +429 -0
- package/src/__tests__/runtime/audit-logger.test.ts +154 -0
- package/src/__tests__/runtime/base-extensions.test.ts +593 -0
- package/src/__tests__/runtime/base.test.ts +869 -0
- package/src/__tests__/runtime/delegation-flow.test.ts +164 -0
- package/src/__tests__/runtime/proof-client-did.test.ts +375 -0
- package/src/__tests__/runtime/route-interception.test.ts +686 -0
- package/src/__tests__/runtime/tool-protection-enforcement.test.ts +908 -0
- package/src/__tests__/services/agentshield-integration.test.ts +784 -0
- package/src/__tests__/services/cache-busting.test.ts +125 -0
- package/src/__tests__/services/oauth-service-pkce.test.ts +556 -0
- package/src/__tests__/services/provider-resolver-edge-cases.test.ts +591 -0
- package/src/__tests__/services/tool-protection-oauth-provider.test.ts +480 -0
- package/src/__tests__/services/tool-protection.service.test.ts +1366 -0
- package/src/__tests__/utils/mock-providers.ts +340 -0
- package/src/cache/oauth-config-cache.d.ts +69 -0
- package/src/cache/oauth-config-cache.d.ts.map +1 -0
- package/src/cache/oauth-config-cache.js.map +1 -0
- package/src/cache/oauth-config-cache.ts +123 -0
- package/src/cache/tool-protection-cache.ts +171 -0
- package/src/compliance/EXAMPLE.md +412 -0
- package/src/compliance/__tests__/schema-verifier.test.ts +797 -0
- package/src/compliance/index.ts +8 -0
- package/src/compliance/schema-registry.ts +460 -0
- package/src/compliance/schema-verifier.ts +708 -0
- package/src/config/__tests__/remote-config.spec.ts +268 -0
- package/src/config/remote-config.ts +174 -0
- package/src/config.ts +309 -0
- package/src/delegation/__tests__/audience-validator.test.ts +112 -0
- package/src/delegation/__tests__/bitstring.test.ts +346 -0
- package/src/delegation/__tests__/cascading-revocation.test.ts +628 -0
- package/src/delegation/__tests__/delegation-graph.test.ts +584 -0
- package/src/delegation/__tests__/utils.test.ts +152 -0
- package/src/delegation/__tests__/vc-issuer.test.ts +442 -0
- package/src/delegation/__tests__/vc-verifier.test.ts +922 -0
- package/src/delegation/audience-validator.ts +52 -0
- package/src/delegation/bitstring.ts +278 -0
- package/src/delegation/cascading-revocation.ts +370 -0
- package/src/delegation/delegation-graph.ts +299 -0
- package/src/delegation/index.ts +14 -0
- package/src/delegation/statuslist-manager.ts +353 -0
- package/src/delegation/storage/__tests__/memory-graph-storage.test.ts +366 -0
- package/src/delegation/storage/__tests__/memory-statuslist-storage.test.ts +228 -0
- package/src/delegation/storage/index.ts +9 -0
- package/src/delegation/storage/memory-graph-storage.ts +178 -0
- package/src/delegation/storage/memory-statuslist-storage.ts +77 -0
- package/src/delegation/utils.ts +42 -0
- package/src/delegation/vc-issuer.ts +232 -0
- package/src/delegation/vc-verifier.ts +568 -0
- package/src/identity/idp-token-resolver.ts +147 -0
- package/src/identity/idp-token-storage.interface.ts +59 -0
- package/src/identity/user-did-manager.ts +370 -0
- package/src/index.ts +271 -0
- package/src/providers/base.d.ts +91 -0
- package/src/providers/base.d.ts.map +1 -0
- package/src/providers/base.js.map +1 -0
- package/src/providers/base.ts +96 -0
- package/src/providers/memory.ts +142 -0
- package/src/runtime/audit-logger.ts +39 -0
- package/src/runtime/base.ts +1329 -0
- package/src/services/__tests__/access-control.integration.test.ts +443 -0
- package/src/services/__tests__/access-control.proof-response-validation.test.ts +578 -0
- package/src/services/__tests__/access-control.service.test.ts +970 -0
- package/src/services/__tests__/batch-delegation.service.test.ts +351 -0
- package/src/services/__tests__/crypto.service.test.ts +531 -0
- package/src/services/__tests__/oauth-provider-registry.test.ts +142 -0
- package/src/services/__tests__/proof-verifier.integration.test.ts +485 -0
- package/src/services/__tests__/proof-verifier.test.ts +489 -0
- package/src/services/__tests__/provider-resolution.integration.test.ts +202 -0
- package/src/services/__tests__/provider-resolver.test.ts +213 -0
- package/src/services/__tests__/storage.service.test.ts +358 -0
- package/src/services/access-control.service.ts +990 -0
- package/src/services/authorization/authorization-registry.ts +66 -0
- package/src/services/authorization/types.ts +71 -0
- package/src/services/batch-delegation.service.ts +137 -0
- package/src/services/crypto.service.ts +302 -0
- package/src/services/errors.ts +76 -0
- package/src/services/index.ts +18 -0
- package/src/services/oauth-config.service.d.ts +53 -0
- package/src/services/oauth-config.service.d.ts.map +1 -0
- package/src/services/oauth-config.service.js.map +1 -0
- package/src/services/oauth-config.service.ts +192 -0
- package/src/services/oauth-provider-registry.d.ts +57 -0
- package/src/services/oauth-provider-registry.d.ts.map +1 -0
- package/src/services/oauth-provider-registry.js.map +1 -0
- package/src/services/oauth-provider-registry.ts +141 -0
- package/src/services/oauth-service.ts +544 -0
- package/src/services/oauth-token-retrieval.service.ts +245 -0
- package/src/services/proof-verifier.ts +478 -0
- package/src/services/provider-resolver.d.ts +48 -0
- package/src/services/provider-resolver.d.ts.map +1 -0
- package/src/services/provider-resolver.js.map +1 -0
- package/src/services/provider-resolver.ts +146 -0
- package/src/services/provider-validator.ts +170 -0
- package/src/services/session-registration.service.ts +317 -0
- package/src/services/storage.service.ts +566 -0
- package/src/services/tool-context-builder.ts +172 -0
- package/src/services/tool-protection.service.ts +982 -0
- package/src/types/oauth-required-error.ts +63 -0
- package/src/types/tool-protection.ts +155 -0
- package/src/utils/__tests__/did-helpers.test.ts +101 -0
- package/src/utils/base64.ts +148 -0
- package/src/utils/cors.ts +83 -0
- package/src/utils/did-helpers.ts +150 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/storage-keys.ts +278 -0
- package/tsconfig.json +21 -0
- package/vitest.config.ts +56 -0
|
@@ -0,0 +1,628 @@
|
|
|
1
|
+
import { describe, it, expect, beforeEach, vi, Mock } from "vitest";
|
|
2
|
+
import {
|
|
3
|
+
CascadingRevocationManager,
|
|
4
|
+
createCascadingRevocationManager,
|
|
5
|
+
type RevocationEvent,
|
|
6
|
+
type CascadingRevocationOptions,
|
|
7
|
+
} from "../cascading-revocation.js";
|
|
8
|
+
import {
|
|
9
|
+
DelegationGraphManager,
|
|
10
|
+
type DelegationNode,
|
|
11
|
+
} from "../delegation-graph.js";
|
|
12
|
+
import { StatusList2021Manager } from "../statuslist-manager.js";
|
|
13
|
+
import type { CredentialStatus } from "@kya-os/contracts";
|
|
14
|
+
|
|
15
|
+
describe("CascadingRevocationManager", () => {
|
|
16
|
+
let mockGraph: DelegationGraphManager;
|
|
17
|
+
let mockStatusList: StatusList2021Manager;
|
|
18
|
+
let revocationManager: CascadingRevocationManager;
|
|
19
|
+
|
|
20
|
+
// Mock storage for graph
|
|
21
|
+
const createMockGraphStorage = () => {
|
|
22
|
+
const nodes = new Map<string, DelegationNode>();
|
|
23
|
+
|
|
24
|
+
return {
|
|
25
|
+
getNode: vi.fn(async (id: string) => nodes.get(id) || null),
|
|
26
|
+
setNode: vi.fn(async (node: DelegationNode) => {
|
|
27
|
+
nodes.set(node.id, { ...node });
|
|
28
|
+
}),
|
|
29
|
+
getChildren: vi.fn(async (id: string) => {
|
|
30
|
+
const node = nodes.get(id);
|
|
31
|
+
if (!node) return [];
|
|
32
|
+
return node.children
|
|
33
|
+
.map((childId) => nodes.get(childId))
|
|
34
|
+
.filter((n): n is DelegationNode => n !== undefined);
|
|
35
|
+
}),
|
|
36
|
+
getChain: vi.fn(async (id: string) => {
|
|
37
|
+
const chain: DelegationNode[] = [];
|
|
38
|
+
let currentId: string | null = id;
|
|
39
|
+
while (currentId) {
|
|
40
|
+
const node = nodes.get(currentId);
|
|
41
|
+
if (!node) break;
|
|
42
|
+
chain.unshift(node);
|
|
43
|
+
currentId = node.parentId;
|
|
44
|
+
}
|
|
45
|
+
return chain;
|
|
46
|
+
}),
|
|
47
|
+
getDescendants: vi.fn(async (id: string) => {
|
|
48
|
+
const descendants: DelegationNode[] = [];
|
|
49
|
+
const queue: string[] = [id];
|
|
50
|
+
const visited = new Set<string>();
|
|
51
|
+
|
|
52
|
+
while (queue.length > 0) {
|
|
53
|
+
const currentId = queue.shift()!;
|
|
54
|
+
if (visited.has(currentId)) continue;
|
|
55
|
+
visited.add(currentId);
|
|
56
|
+
|
|
57
|
+
const node = nodes.get(currentId);
|
|
58
|
+
if (!node) continue;
|
|
59
|
+
|
|
60
|
+
for (const childId of node.children) {
|
|
61
|
+
if (!visited.has(childId)) {
|
|
62
|
+
queue.push(childId);
|
|
63
|
+
const childNode = nodes.get(childId);
|
|
64
|
+
if (childNode) {
|
|
65
|
+
descendants.push(childNode);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
return descendants;
|
|
71
|
+
}),
|
|
72
|
+
deleteNode: vi.fn(async (id: string) => {
|
|
73
|
+
nodes.delete(id);
|
|
74
|
+
}),
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
beforeEach(() => {
|
|
79
|
+
vi.clearAllMocks();
|
|
80
|
+
|
|
81
|
+
// Create mock graph with storage
|
|
82
|
+
const graphStorage = createMockGraphStorage();
|
|
83
|
+
mockGraph = new DelegationGraphManager(graphStorage as any);
|
|
84
|
+
|
|
85
|
+
// Create mock status list manager
|
|
86
|
+
mockStatusList = {
|
|
87
|
+
checkStatus: vi.fn().mockResolvedValue(false),
|
|
88
|
+
updateStatus: vi.fn().mockResolvedValue(undefined),
|
|
89
|
+
} as any;
|
|
90
|
+
|
|
91
|
+
revocationManager = new CascadingRevocationManager(
|
|
92
|
+
mockGraph,
|
|
93
|
+
mockStatusList
|
|
94
|
+
);
|
|
95
|
+
});
|
|
96
|
+
|
|
97
|
+
describe("constructor", () => {
|
|
98
|
+
it("should create revocation manager with graph and status list", () => {
|
|
99
|
+
const manager = new CascadingRevocationManager(mockGraph, mockStatusList);
|
|
100
|
+
expect(manager).toBeInstanceOf(CascadingRevocationManager);
|
|
101
|
+
});
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
describe("createCascadingRevocationManager", () => {
|
|
105
|
+
it("should create a revocation manager instance", () => {
|
|
106
|
+
const manager = createCascadingRevocationManager(
|
|
107
|
+
mockGraph,
|
|
108
|
+
mockStatusList
|
|
109
|
+
);
|
|
110
|
+
expect(manager).toBeInstanceOf(CascadingRevocationManager);
|
|
111
|
+
});
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
describe("revokeDelegation", () => {
|
|
115
|
+
it("should revoke a single delegation with no children", async () => {
|
|
116
|
+
// Register a root delegation
|
|
117
|
+
const node = await mockGraph.registerDelegation({
|
|
118
|
+
id: "del-001",
|
|
119
|
+
parentId: null,
|
|
120
|
+
issuerDid: "did:web:example.com:issuer",
|
|
121
|
+
subjectDid: "did:web:example.com:subject",
|
|
122
|
+
credentialStatusId: "https://example.com/status#123",
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
const events = await revocationManager.revokeDelegation("del-001");
|
|
126
|
+
|
|
127
|
+
expect(events).toHaveLength(1);
|
|
128
|
+
expect(events[0].delegationId).toBe("del-001");
|
|
129
|
+
expect(events[0].isRoot).toBe(true);
|
|
130
|
+
expect(events[0].timestamp).toBeGreaterThan(0);
|
|
131
|
+
});
|
|
132
|
+
|
|
133
|
+
it("should cascade revocation to all descendants", async () => {
|
|
134
|
+
// Create tree: root -> child1, child2 -> grandchild
|
|
135
|
+
await mockGraph.registerDelegation({
|
|
136
|
+
id: "del-root",
|
|
137
|
+
parentId: null,
|
|
138
|
+
issuerDid: "did:web:example.com:issuer",
|
|
139
|
+
subjectDid: "did:web:example.com:subject",
|
|
140
|
+
credentialStatusId: "https://example.com/status#root",
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
await mockGraph.registerDelegation({
|
|
144
|
+
id: "del-child1",
|
|
145
|
+
parentId: "del-root",
|
|
146
|
+
issuerDid: "did:web:example.com:subject",
|
|
147
|
+
subjectDid: "did:web:example.com:subject2",
|
|
148
|
+
credentialStatusId: "https://example.com/status#child1",
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
await mockGraph.registerDelegation({
|
|
152
|
+
id: "del-child2",
|
|
153
|
+
parentId: "del-root",
|
|
154
|
+
issuerDid: "did:web:example.com:subject",
|
|
155
|
+
subjectDid: "did:web:example.com:subject3",
|
|
156
|
+
credentialStatusId: "https://example.com/status#child2",
|
|
157
|
+
});
|
|
158
|
+
|
|
159
|
+
await mockGraph.registerDelegation({
|
|
160
|
+
id: "del-grandchild",
|
|
161
|
+
parentId: "del-child1",
|
|
162
|
+
issuerDid: "did:web:example.com:subject2",
|
|
163
|
+
subjectDid: "did:web:example.com:subject4",
|
|
164
|
+
credentialStatusId: "https://example.com/status#grandchild",
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
const events = await revocationManager.revokeDelegation("del-root");
|
|
168
|
+
|
|
169
|
+
// Should revoke root + 3 descendants
|
|
170
|
+
expect(events.length).toBeGreaterThanOrEqual(4);
|
|
171
|
+
expect(events[0].delegationId).toBe("del-root");
|
|
172
|
+
expect(events[0].isRoot).toBe(true);
|
|
173
|
+
|
|
174
|
+
// Check that descendants were revoked
|
|
175
|
+
const revokedIds = events.map((e) => e.delegationId);
|
|
176
|
+
expect(revokedIds).toContain("del-child1");
|
|
177
|
+
expect(revokedIds).toContain("del-child2");
|
|
178
|
+
expect(revokedIds).toContain("del-grandchild");
|
|
179
|
+
});
|
|
180
|
+
|
|
181
|
+
it("should call onRevoke hook for each revocation", async () => {
|
|
182
|
+
await mockGraph.registerDelegation({
|
|
183
|
+
id: "del-root",
|
|
184
|
+
parentId: null,
|
|
185
|
+
issuerDid: "did:web:example.com:issuer",
|
|
186
|
+
subjectDid: "did:web:example.com:subject",
|
|
187
|
+
credentialStatusId: "https://example.com/status#root",
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
await mockGraph.registerDelegation({
|
|
191
|
+
id: "del-child",
|
|
192
|
+
parentId: "del-root",
|
|
193
|
+
issuerDid: "did:web:example.com:subject",
|
|
194
|
+
subjectDid: "did:web:example.com:subject2",
|
|
195
|
+
credentialStatusId: "https://example.com/status#child",
|
|
196
|
+
});
|
|
197
|
+
|
|
198
|
+
const onRevokeHook = vi.fn().mockResolvedValue(undefined);
|
|
199
|
+
|
|
200
|
+
const events = await revocationManager.revokeDelegation("del-root", {
|
|
201
|
+
onRevoke: onRevokeHook,
|
|
202
|
+
});
|
|
203
|
+
|
|
204
|
+
expect(onRevokeHook).toHaveBeenCalledTimes(events.length);
|
|
205
|
+
expect(onRevokeHook).toHaveBeenCalledWith(
|
|
206
|
+
expect.objectContaining({
|
|
207
|
+
delegationId: "del-root",
|
|
208
|
+
isRoot: true,
|
|
209
|
+
})
|
|
210
|
+
);
|
|
211
|
+
});
|
|
212
|
+
|
|
213
|
+
it("should include reason in revocation events", async () => {
|
|
214
|
+
await mockGraph.registerDelegation({
|
|
215
|
+
id: "del-001",
|
|
216
|
+
parentId: null,
|
|
217
|
+
issuerDid: "did:web:example.com:issuer",
|
|
218
|
+
subjectDid: "did:web:example.com:subject",
|
|
219
|
+
credentialStatusId: "https://example.com/status#123",
|
|
220
|
+
});
|
|
221
|
+
|
|
222
|
+
const events = await revocationManager.revokeDelegation("del-001", {
|
|
223
|
+
reason: "Security breach",
|
|
224
|
+
});
|
|
225
|
+
|
|
226
|
+
expect(events[0].reason).toBe("Security breach");
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
it("should set cascaded reason for descendants", async () => {
|
|
230
|
+
await mockGraph.registerDelegation({
|
|
231
|
+
id: "del-root",
|
|
232
|
+
parentId: null,
|
|
233
|
+
issuerDid: "did:web:example.com:issuer",
|
|
234
|
+
subjectDid: "did:web:example.com:subject",
|
|
235
|
+
credentialStatusId: "https://example.com/status#root",
|
|
236
|
+
});
|
|
237
|
+
|
|
238
|
+
await mockGraph.registerDelegation({
|
|
239
|
+
id: "del-child",
|
|
240
|
+
parentId: "del-root",
|
|
241
|
+
issuerDid: "did:web:example.com:subject",
|
|
242
|
+
subjectDid: "did:web:example.com:subject2",
|
|
243
|
+
credentialStatusId: "https://example.com/status#child",
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
const events = await revocationManager.revokeDelegation("del-root", {
|
|
247
|
+
reason: "Root revoked",
|
|
248
|
+
});
|
|
249
|
+
|
|
250
|
+
const childEvent = events.find((e) => e.delegationId === "del-child");
|
|
251
|
+
expect(childEvent).toBeDefined();
|
|
252
|
+
expect(childEvent?.reason).toContain("Cascaded from del-root");
|
|
253
|
+
expect(childEvent?.parentId).toBe("del-root");
|
|
254
|
+
expect(childEvent?.isRoot).toBe(false);
|
|
255
|
+
});
|
|
256
|
+
|
|
257
|
+
it("should throw error if delegation not found", async () => {
|
|
258
|
+
await expect(
|
|
259
|
+
revocationManager.revokeDelegation("non-existent")
|
|
260
|
+
).rejects.toThrow("Delegation not found");
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
it("should respect maxDepth option", async () => {
|
|
264
|
+
// Create a deep chain (depth 0, 1, 2, 3, 4 = 5 levels)
|
|
265
|
+
let parentId: string | null = null;
|
|
266
|
+
for (let i = 0; i < 5; i++) {
|
|
267
|
+
const id = `del-${i}`;
|
|
268
|
+
await mockGraph.registerDelegation({
|
|
269
|
+
id,
|
|
270
|
+
parentId,
|
|
271
|
+
issuerDid: `did:web:example.com:issuer${i}`,
|
|
272
|
+
subjectDid: `did:web:example.com:subject${i + 1}`,
|
|
273
|
+
credentialStatusId: `https://example.com/status#${i}`,
|
|
274
|
+
});
|
|
275
|
+
parentId = id;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
// Should work with default maxDepth (100)
|
|
279
|
+
await expect(
|
|
280
|
+
revocationManager.revokeDelegation("del-0")
|
|
281
|
+
).resolves.toBeDefined();
|
|
282
|
+
|
|
283
|
+
// Check depth of deepest node (del-4 has depth 4, which exceeds maxDepth 2)
|
|
284
|
+
// Actually, getDepth returns the depth from root, so del-4 has depth 4
|
|
285
|
+
// But we're revoking del-0 (root), which has depth 0, so it won't exceed maxDepth 2
|
|
286
|
+
// Let's revoke a deeper node instead
|
|
287
|
+
await expect(
|
|
288
|
+
revocationManager.revokeDelegation("del-4", { maxDepth: 2 })
|
|
289
|
+
).rejects.toThrow("exceeds maximum");
|
|
290
|
+
});
|
|
291
|
+
|
|
292
|
+
it("should skip actual revocation in dry run mode", async () => {
|
|
293
|
+
await mockGraph.registerDelegation({
|
|
294
|
+
id: "del-001",
|
|
295
|
+
parentId: null,
|
|
296
|
+
issuerDid: "did:web:example.com:issuer",
|
|
297
|
+
subjectDid: "did:web:example.com:subject",
|
|
298
|
+
credentialStatusId: "https://example.com/status#123",
|
|
299
|
+
});
|
|
300
|
+
|
|
301
|
+
const events = await revocationManager.revokeDelegation("del-001", {
|
|
302
|
+
dryRun: true,
|
|
303
|
+
});
|
|
304
|
+
|
|
305
|
+
expect(events).toHaveLength(1);
|
|
306
|
+
expect(events[0].delegationId).toBe("del-001");
|
|
307
|
+
// In dry run, updateStatus should not be called
|
|
308
|
+
expect(mockStatusList.updateStatus).not.toHaveBeenCalled();
|
|
309
|
+
});
|
|
310
|
+
});
|
|
311
|
+
|
|
312
|
+
describe("restoreDelegation", () => {
|
|
313
|
+
it("should restore a revoked delegation", async () => {
|
|
314
|
+
await mockGraph.registerDelegation({
|
|
315
|
+
id: "del-001",
|
|
316
|
+
parentId: null,
|
|
317
|
+
issuerDid: "did:web:example.com:issuer",
|
|
318
|
+
subjectDid: "did:web:example.com:subject",
|
|
319
|
+
credentialStatusId: "https://example.com/status#123",
|
|
320
|
+
});
|
|
321
|
+
|
|
322
|
+
const event = await revocationManager.restoreDelegation("del-001");
|
|
323
|
+
|
|
324
|
+
expect(event.delegationId).toBe("del-001");
|
|
325
|
+
expect(event.isRoot).toBe(true);
|
|
326
|
+
expect(event.reason).toBe("Restored");
|
|
327
|
+
expect(mockStatusList.updateStatus).toHaveBeenCalled();
|
|
328
|
+
});
|
|
329
|
+
|
|
330
|
+
it("should throw error if delegation not found", async () => {
|
|
331
|
+
await expect(
|
|
332
|
+
revocationManager.restoreDelegation("non-existent")
|
|
333
|
+
).rejects.toThrow("Delegation not found");
|
|
334
|
+
});
|
|
335
|
+
|
|
336
|
+
it("should not cascade restore to children", async () => {
|
|
337
|
+
await mockGraph.registerDelegation({
|
|
338
|
+
id: "del-root",
|
|
339
|
+
parentId: null,
|
|
340
|
+
issuerDid: "did:web:example.com:issuer",
|
|
341
|
+
subjectDid: "did:web:example.com:subject",
|
|
342
|
+
credentialStatusId: "https://example.com/status#0", // Use numeric index
|
|
343
|
+
});
|
|
344
|
+
|
|
345
|
+
await mockGraph.registerDelegation({
|
|
346
|
+
id: "del-child",
|
|
347
|
+
parentId: "del-root",
|
|
348
|
+
issuerDid: "did:web:example.com:subject",
|
|
349
|
+
subjectDid: "did:web:example.com:subject2",
|
|
350
|
+
credentialStatusId: "https://example.com/status#1", // Use numeric index
|
|
351
|
+
});
|
|
352
|
+
|
|
353
|
+
// Clear any previous calls
|
|
354
|
+
vi.clearAllMocks();
|
|
355
|
+
|
|
356
|
+
// Restore root - should not restore child
|
|
357
|
+
const event = await revocationManager.restoreDelegation("del-root");
|
|
358
|
+
|
|
359
|
+
expect(event.delegationId).toBe("del-root");
|
|
360
|
+
// Should only call updateStatus once (for root, not child)
|
|
361
|
+
// Note: updateStatus is only called if credentialStatusId exists and parses correctly
|
|
362
|
+
const updateStatusMock = mockStatusList.updateStatus as Mock;
|
|
363
|
+
if (updateStatusMock.mock.calls.length > 0) {
|
|
364
|
+
expect(mockStatusList.updateStatus).toHaveBeenCalledTimes(1);
|
|
365
|
+
}
|
|
366
|
+
});
|
|
367
|
+
});
|
|
368
|
+
|
|
369
|
+
describe("isRevoked", () => {
|
|
370
|
+
it("should return false for non-revoked delegation", async () => {
|
|
371
|
+
await mockGraph.registerDelegation({
|
|
372
|
+
id: "del-001",
|
|
373
|
+
parentId: null,
|
|
374
|
+
issuerDid: "did:web:example.com:issuer",
|
|
375
|
+
subjectDid: "did:web:example.com:subject",
|
|
376
|
+
credentialStatusId: "https://example.com/status#123",
|
|
377
|
+
});
|
|
378
|
+
|
|
379
|
+
mockStatusList.checkStatus = vi.fn().mockResolvedValue(false);
|
|
380
|
+
|
|
381
|
+
const result = await revocationManager.isRevoked("del-001");
|
|
382
|
+
|
|
383
|
+
expect(result.revoked).toBe(false);
|
|
384
|
+
});
|
|
385
|
+
|
|
386
|
+
it("should return true for directly revoked delegation", async () => {
|
|
387
|
+
await mockGraph.registerDelegation({
|
|
388
|
+
id: "del-001",
|
|
389
|
+
parentId: null,
|
|
390
|
+
issuerDid: "did:web:example.com:issuer",
|
|
391
|
+
subjectDid: "did:web:example.com:subject",
|
|
392
|
+
credentialStatusId: "https://example.com/status#123",
|
|
393
|
+
});
|
|
394
|
+
|
|
395
|
+
mockStatusList.checkStatus = vi.fn().mockResolvedValue(true);
|
|
396
|
+
|
|
397
|
+
const result = await revocationManager.isRevoked("del-001");
|
|
398
|
+
|
|
399
|
+
expect(result.revoked).toBe(true);
|
|
400
|
+
expect(result.reason).toBe("Directly revoked");
|
|
401
|
+
expect(result.revokedAncestor).toBeUndefined();
|
|
402
|
+
});
|
|
403
|
+
|
|
404
|
+
it("should return true if ancestor is revoked", async () => {
|
|
405
|
+
await mockGraph.registerDelegation({
|
|
406
|
+
id: "del-root",
|
|
407
|
+
parentId: null,
|
|
408
|
+
issuerDid: "did:web:example.com:issuer",
|
|
409
|
+
subjectDid: "did:web:example.com:subject",
|
|
410
|
+
credentialStatusId: "https://example.com/status#0", // Use numeric index
|
|
411
|
+
});
|
|
412
|
+
|
|
413
|
+
await mockGraph.registerDelegation({
|
|
414
|
+
id: "del-child",
|
|
415
|
+
parentId: "del-root",
|
|
416
|
+
issuerDid: "did:web:example.com:subject",
|
|
417
|
+
subjectDid: "did:web:example.com:subject2",
|
|
418
|
+
credentialStatusId: "https://example.com/status#1", // Use numeric index
|
|
419
|
+
});
|
|
420
|
+
|
|
421
|
+
// Root is revoked (index 0), child is not
|
|
422
|
+
mockStatusList.checkStatus = vi
|
|
423
|
+
.fn()
|
|
424
|
+
.mockImplementation(async (status: CredentialStatus) => {
|
|
425
|
+
// parseCredentialStatus parses "#0" -> statusListIndex "0"
|
|
426
|
+
if (
|
|
427
|
+
status.statusListIndex === "0" ||
|
|
428
|
+
status.id === "https://example.com/status#0"
|
|
429
|
+
) {
|
|
430
|
+
return true;
|
|
431
|
+
}
|
|
432
|
+
return false;
|
|
433
|
+
});
|
|
434
|
+
|
|
435
|
+
const result = await revocationManager.isRevoked("del-child");
|
|
436
|
+
|
|
437
|
+
expect(result.revoked).toBe(true);
|
|
438
|
+
expect(result.reason).toBe("Ancestor revoked");
|
|
439
|
+
expect(result.revokedAncestor).toBe("del-root");
|
|
440
|
+
});
|
|
441
|
+
|
|
442
|
+
it("should check chain from root to delegation", async () => {
|
|
443
|
+
await mockGraph.registerDelegation({
|
|
444
|
+
id: "del-root",
|
|
445
|
+
parentId: null,
|
|
446
|
+
issuerDid: "did:web:example.com:issuer",
|
|
447
|
+
subjectDid: "did:web:example.com:subject",
|
|
448
|
+
credentialStatusId: "https://example.com/status#0", // Use numeric index
|
|
449
|
+
});
|
|
450
|
+
|
|
451
|
+
await mockGraph.registerDelegation({
|
|
452
|
+
id: "del-child",
|
|
453
|
+
parentId: "del-root",
|
|
454
|
+
issuerDid: "did:web:example.com:subject",
|
|
455
|
+
subjectDid: "did:web:example.com:subject2",
|
|
456
|
+
credentialStatusId: "https://example.com/status#1", // Use numeric index
|
|
457
|
+
});
|
|
458
|
+
|
|
459
|
+
mockStatusList.checkStatus = vi.fn().mockResolvedValue(false);
|
|
460
|
+
|
|
461
|
+
await revocationManager.isRevoked("del-child");
|
|
462
|
+
|
|
463
|
+
// Should check both root and child (if they have credentialStatusId)
|
|
464
|
+
// The chain is checked in reverse order (child first, then root)
|
|
465
|
+
expect(mockStatusList.checkStatus).toHaveBeenCalled();
|
|
466
|
+
});
|
|
467
|
+
});
|
|
468
|
+
|
|
469
|
+
describe("validateDelegation", () => {
|
|
470
|
+
it("should return valid for non-revoked delegation", async () => {
|
|
471
|
+
await mockGraph.registerDelegation({
|
|
472
|
+
id: "del-001",
|
|
473
|
+
parentId: null,
|
|
474
|
+
issuerDid: "did:web:example.com:issuer",
|
|
475
|
+
subjectDid: "did:web:example.com:subject",
|
|
476
|
+
credentialStatusId: "https://example.com/status#123",
|
|
477
|
+
});
|
|
478
|
+
|
|
479
|
+
mockStatusList.checkStatus = vi.fn().mockResolvedValue(false);
|
|
480
|
+
|
|
481
|
+
// Mock validateChain to return valid
|
|
482
|
+
vi.spyOn(mockGraph, "validateChain").mockResolvedValue({ valid: true });
|
|
483
|
+
|
|
484
|
+
const result = await revocationManager.validateDelegation("del-001");
|
|
485
|
+
|
|
486
|
+
expect(result.valid).toBe(true);
|
|
487
|
+
});
|
|
488
|
+
|
|
489
|
+
it("should return invalid if delegation is revoked", async () => {
|
|
490
|
+
await mockGraph.registerDelegation({
|
|
491
|
+
id: "del-001",
|
|
492
|
+
parentId: null,
|
|
493
|
+
issuerDid: "did:web:example.com:issuer",
|
|
494
|
+
subjectDid: "did:web:example.com:subject",
|
|
495
|
+
credentialStatusId: "https://example.com/status#123",
|
|
496
|
+
});
|
|
497
|
+
|
|
498
|
+
mockStatusList.checkStatus = vi.fn().mockResolvedValue(true);
|
|
499
|
+
|
|
500
|
+
const result = await revocationManager.validateDelegation("del-001");
|
|
501
|
+
|
|
502
|
+
expect(result.valid).toBe(false);
|
|
503
|
+
expect(result.reason).toBe("Delegation is revoked");
|
|
504
|
+
});
|
|
505
|
+
|
|
506
|
+
it("should return invalid if ancestor is revoked", async () => {
|
|
507
|
+
await mockGraph.registerDelegation({
|
|
508
|
+
id: "del-root",
|
|
509
|
+
parentId: null,
|
|
510
|
+
issuerDid: "did:web:example.com:issuer",
|
|
511
|
+
subjectDid: "did:web:example.com:subject",
|
|
512
|
+
credentialStatusId: "https://example.com/status#0", // Use numeric index
|
|
513
|
+
});
|
|
514
|
+
|
|
515
|
+
await mockGraph.registerDelegation({
|
|
516
|
+
id: "del-child",
|
|
517
|
+
parentId: "del-root",
|
|
518
|
+
issuerDid: "did:web:example.com:subject",
|
|
519
|
+
subjectDid: "did:web:example.com:subject2",
|
|
520
|
+
credentialStatusId: "https://example.com/status#1", // Use numeric index
|
|
521
|
+
});
|
|
522
|
+
|
|
523
|
+
// Mock checkStatus to return true for root's credentialStatus (index 0)
|
|
524
|
+
mockStatusList.checkStatus = vi
|
|
525
|
+
.fn()
|
|
526
|
+
.mockImplementation(async (status: CredentialStatus) => {
|
|
527
|
+
// parseCredentialStatus parses "#0" -> statusListIndex "0"
|
|
528
|
+
if (
|
|
529
|
+
status.statusListIndex === "0" ||
|
|
530
|
+
status.id === "https://example.com/status#0"
|
|
531
|
+
) {
|
|
532
|
+
return true;
|
|
533
|
+
}
|
|
534
|
+
return false;
|
|
535
|
+
});
|
|
536
|
+
|
|
537
|
+
const result = await revocationManager.validateDelegation("del-child");
|
|
538
|
+
|
|
539
|
+
expect(result.valid).toBe(false);
|
|
540
|
+
expect(result.reason).toContain("Ancestor");
|
|
541
|
+
});
|
|
542
|
+
|
|
543
|
+
it("should return invalid if chain validation fails", async () => {
|
|
544
|
+
await mockGraph.registerDelegation({
|
|
545
|
+
id: "del-001",
|
|
546
|
+
parentId: null,
|
|
547
|
+
issuerDid: "did:web:example.com:issuer",
|
|
548
|
+
subjectDid: "did:web:example.com:subject",
|
|
549
|
+
credentialStatusId: "https://example.com/status#123",
|
|
550
|
+
});
|
|
551
|
+
|
|
552
|
+
mockStatusList.checkStatus = vi.fn().mockResolvedValue(false);
|
|
553
|
+
vi.spyOn(mockGraph, "validateChain").mockResolvedValue({
|
|
554
|
+
valid: false,
|
|
555
|
+
reason: "Invalid chain structure",
|
|
556
|
+
});
|
|
557
|
+
|
|
558
|
+
const result = await revocationManager.validateDelegation("del-001");
|
|
559
|
+
|
|
560
|
+
expect(result.valid).toBe(false);
|
|
561
|
+
expect(result.reason).toBe("Invalid chain structure");
|
|
562
|
+
});
|
|
563
|
+
});
|
|
564
|
+
|
|
565
|
+
describe("getRevokedInSubtree", () => {
|
|
566
|
+
it("should return empty array if no revocations", async () => {
|
|
567
|
+
await mockGraph.registerDelegation({
|
|
568
|
+
id: "del-root",
|
|
569
|
+
parentId: null,
|
|
570
|
+
issuerDid: "did:web:example.com:issuer",
|
|
571
|
+
subjectDid: "did:web:example.com:subject",
|
|
572
|
+
credentialStatusId: "https://example.com/status#root",
|
|
573
|
+
});
|
|
574
|
+
|
|
575
|
+
mockStatusList.checkStatus = vi.fn().mockResolvedValue(false);
|
|
576
|
+
|
|
577
|
+
const revoked = await revocationManager.getRevokedInSubtree("del-root");
|
|
578
|
+
|
|
579
|
+
expect(revoked).toEqual([]);
|
|
580
|
+
});
|
|
581
|
+
|
|
582
|
+
it("should return all revoked delegations in subtree", async () => {
|
|
583
|
+
await mockGraph.registerDelegation({
|
|
584
|
+
id: "del-root",
|
|
585
|
+
parentId: null,
|
|
586
|
+
issuerDid: "did:web:example.com:issuer",
|
|
587
|
+
subjectDid: "did:web:example.com:subject",
|
|
588
|
+
credentialStatusId: "https://example.com/status#0", // Use numeric index
|
|
589
|
+
});
|
|
590
|
+
|
|
591
|
+
await mockGraph.registerDelegation({
|
|
592
|
+
id: "del-child1",
|
|
593
|
+
parentId: "del-root",
|
|
594
|
+
issuerDid: "did:web:example.com:subject",
|
|
595
|
+
subjectDid: "did:web:example.com:subject2",
|
|
596
|
+
credentialStatusId: "https://example.com/status#1", // Use numeric index
|
|
597
|
+
});
|
|
598
|
+
|
|
599
|
+
await mockGraph.registerDelegation({
|
|
600
|
+
id: "del-child2",
|
|
601
|
+
parentId: "del-root",
|
|
602
|
+
issuerDid: "did:web:example.com:subject",
|
|
603
|
+
subjectDid: "did:web:example.com:subject3",
|
|
604
|
+
credentialStatusId: "https://example.com/status#2", // Use numeric index
|
|
605
|
+
});
|
|
606
|
+
|
|
607
|
+
// child1 is revoked (index 1), root and child2 are not
|
|
608
|
+
mockStatusList.checkStatus = vi
|
|
609
|
+
.fn()
|
|
610
|
+
.mockImplementation(async (status: CredentialStatus) => {
|
|
611
|
+
// parseCredentialStatus parses "#1" -> statusListIndex "1"
|
|
612
|
+
if (
|
|
613
|
+
status.statusListIndex === "1" ||
|
|
614
|
+
status.id === "https://example.com/status#1"
|
|
615
|
+
) {
|
|
616
|
+
return true;
|
|
617
|
+
}
|
|
618
|
+
return false;
|
|
619
|
+
});
|
|
620
|
+
|
|
621
|
+
const revoked = await revocationManager.getRevokedInSubtree("del-root");
|
|
622
|
+
|
|
623
|
+
expect(revoked).toContain("del-child1");
|
|
624
|
+
expect(revoked).not.toContain("del-root");
|
|
625
|
+
expect(revoked).not.toContain("del-child2");
|
|
626
|
+
});
|
|
627
|
+
});
|
|
628
|
+
});
|