@parity/product-sdk-host 0.0.0-dev.312.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.
@@ -0,0 +1,105 @@
1
+ import { TrUApiClient } from '@parity/truapi';
2
+ import { a as HostChainIdentifier } from './chain-discovery-nLrPzb3d.js';
3
+ export { s as setTruApiClient } from './chain-discovery-nLrPzb3d.js';
4
+
5
+ /**
6
+ * Test fakes for `@parity/product-sdk-host`.
7
+ *
8
+ * The host reaches its container through one cached `TrUApiClient`.
9
+ * `createFakeHost()` injects a fake via `setTruApiClient` so every accessor
10
+ * (`getHostLocalStorage`, `getAccountsProvider`, `getStatementStore`, `getTruApi`,
11
+ * …) resolves against it and `isInsideContainer()` reports `true` — which also
12
+ * makes a default `SignerManager`, `local-storage` auto-detection, and the
13
+ * `statement-store` / `cloud-storage` host paths testable.
14
+ *
15
+ * Of the `chain` domain only `getChainInfo` is modeled, so host chain discovery
16
+ * (and `getChainAPI()` on top of it) resolves in tests; see the `chainInfo`
17
+ * option. Not modeled: the rest of the PAPI `chain` JSON-RPC surface behind
18
+ * `getHostProvider()` — there's no chain-read fake, by design; the host owns RPC
19
+ * selection — and the `chat` / `coinPayment` / `entropy` / `notifications` /
20
+ * `payment` / `permissions` / `resourceAllocation` / `theme` domains. Touching
21
+ * an unmodeled domain throws a descriptive error rather than failing with
22
+ * `undefined is not a function`.
23
+ *
24
+ * @packageDocumentation
25
+ */
26
+
27
+ /**
28
+ * What a fake host reports through `chain.getChainInfo`: the network id it is
29
+ * configured for, and a genesis hash per chain role it serves.
30
+ *
31
+ * Roles left out are answered `NotSupported`, exactly as a host that does not
32
+ * serve them. Use the genesis hashes the descriptors expose (e.g.
33
+ * `paseo_asset_hub.genesis`) if the test drives `getChainAPI()`, since the
34
+ * environment is derived by matching the asset hub genesis against the bundle.
35
+ */
36
+ interface FakeChainInfo {
37
+ /** Ecosystem the fake host claims, e.g. `"paseo"`. */
38
+ network: string;
39
+ /** Genesis hash per chain role served. */
40
+ chains: Partial<Record<HostChainIdentifier, `0x${string}`>>;
41
+ }
42
+ /** Options for {@link createFakeTruApiClient}. */
43
+ interface CreateFakeTruApiClientOptions {
44
+ /** `account.getUserId` primary username. Default `"alice.dot"`. */
45
+ primaryUsername?: string;
46
+ /** Product-account public key. Default 32 bytes of `0x11`. */
47
+ publicKey?: Uint8Array;
48
+ /** Bytes returned by the signing domain (signatures / proofs / transactions). Default 64 bytes of `0x22`. */
49
+ signature?: Uint8Array;
50
+ /** Whether `system.featureSupported` reports the chain supported. Default `true`. */
51
+ chainSupported?: boolean;
52
+ /** Seed the in-memory host localStorage, keyed by storage key. */
53
+ localStorage?: Record<string, Uint8Array>;
54
+ /** Legacy accounts returned by `account.getLegacyAccounts`. Default none. */
55
+ legacyAccounts?: Array<{
56
+ publicKey: Uint8Array;
57
+ name: string;
58
+ }>;
59
+ /** Seed the in-memory preimage store, keyed by the `0x` preimage key. */
60
+ preimages?: Record<string, Uint8Array>;
61
+ /**
62
+ * What `chain.getChainInfo` reports. Omit to model a host predating chain
63
+ * discovery: the call is refused as `Unsupported`, so `getHostChainInfo`
64
+ * resolves `null` and `getChainAPI` needs an explicit environment.
65
+ */
66
+ chainInfo?: FakeChainInfo;
67
+ }
68
+ /**
69
+ * Build a fake `TrUApiClient` covering the domains the host accessors use:
70
+ * `localStorage` (real in-memory KV), `account` / `signing` (canned data),
71
+ * `statementStore`, `preimage`, and `system`. Unmodeled domains (`chain` et al —
72
+ * see the module header) throw on member access.
73
+ */
74
+ declare function createFakeTruApiClient(options?: CreateFakeTruApiClientOptions): TrUApiClient;
75
+ /** Handle returned by {@link createFakeHost}. */
76
+ interface FakeHost extends Disposable {
77
+ /** The injected fake client (also what `getTruApi()` returns). */
78
+ client: TrUApiClient;
79
+ /** Clear the override. Idempotent; safe to call more than once. */
80
+ dispose(): void;
81
+ /** `using host = createFakeHost()` restores the real client at scope end. */
82
+ [Symbol.dispose](): void;
83
+ }
84
+ /**
85
+ * Inject a fake client via {@link setTruApiClient} and return a disposer.
86
+ *
87
+ * Cleanup is guaranteed three ways, so a forgotten reset can't leak the override
88
+ * into the next test or file: prefer `using` (scope-end disposal), otherwise the
89
+ * handle self-registers `onTestFinished` when created inside a Vitest run, and
90
+ * `dispose()` is always there to call by hand.
91
+ *
92
+ * @example
93
+ * ```ts
94
+ * import { createFakeHost } from "@parity/product-sdk-host/testing";
95
+ *
96
+ * test("host storage is reachable", async () => {
97
+ * using host = createFakeHost({ primaryUsername: "carol.dot" });
98
+ * // getHostLocalStorage(), getAccountsProvider(), a default SignerManager, etc.
99
+ * // resolve the fake; the real client is restored when the test scope ends.
100
+ * });
101
+ * ```
102
+ */
103
+ declare function createFakeHost(options?: CreateFakeTruApiClientOptions): FakeHost;
104
+
105
+ export { type CreateFakeTruApiClientOptions, type FakeChainInfo, type FakeHost, createFakeHost, createFakeTruApiClient };
@@ -0,0 +1,177 @@
1
+ import { setTruApiClient } from './chunk-GDXSV7JV.js';
2
+ export { setTruApiClient } from './chunk-GDXSV7JV.js';
3
+ import { okAsync, errAsync } from 'neverthrow';
4
+
5
+ function toHex(bytes) {
6
+ return `0x${Array.from(bytes, (b) => b.toString(16).padStart(2, "0")).join("")}`;
7
+ }
8
+ function fakeSubscription() {
9
+ return { unsubscribe: () => {
10
+ }, subscriptionId: "fake-subscription" };
11
+ }
12
+ function makeObservable(subscribe) {
13
+ const observable = {
14
+ subscribe,
15
+ [Symbol.observable]() {
16
+ return observable;
17
+ }
18
+ };
19
+ return observable;
20
+ }
21
+ function inertObservable() {
22
+ return makeObservable(() => fakeSubscription());
23
+ }
24
+ function oneShotObservable(item) {
25
+ return makeObservable((observer) => {
26
+ queueMicrotask(() => observer?.next?.(item));
27
+ return fakeSubscription();
28
+ });
29
+ }
30
+ function notModeled(domain, modeled) {
31
+ return new Proxy(modeled ?? {}, {
32
+ get(target, member) {
33
+ if (member in target) return target[member];
34
+ if (typeof member === "symbol" || member === "then") return void 0;
35
+ throw new Error(
36
+ `createFakeTruApiClient: \`${domain}.${member}\` is not modeled by the fake. See the @parity/product-sdk-host/testing module docs for what is covered.`
37
+ );
38
+ }
39
+ });
40
+ }
41
+ function preimageKey(hexValue) {
42
+ let h = 2166136261;
43
+ for (let i = 0; i < hexValue.length; i++) {
44
+ h ^= hexValue.charCodeAt(i);
45
+ h = Math.imul(h, 16777619);
46
+ }
47
+ return `0x${(h >>> 0).toString(16).padStart(8, "0")}`;
48
+ }
49
+ function createFakeTruApiClient(options) {
50
+ const primaryUsername = options?.primaryUsername ?? "alice.dot";
51
+ const publicKey = toHex(options?.publicKey ?? new Uint8Array(32).fill(17));
52
+ const signature = toHex(options?.signature ?? new Uint8Array(64).fill(34));
53
+ const chainSupported = options?.chainSupported ?? true;
54
+ const chainInfo = options?.chainInfo;
55
+ const kv = /* @__PURE__ */ new Map();
56
+ for (const [key, value] of Object.entries(options?.localStorage ?? {})) {
57
+ kv.set(key, toHex(value));
58
+ }
59
+ const legacyAccounts = (options?.legacyAccounts ?? []).map((a) => ({
60
+ publicKey: toHex(a.publicKey),
61
+ name: a.name
62
+ }));
63
+ const preimages = /* @__PURE__ */ new Map();
64
+ for (const [key, value] of Object.entries(options?.preimages ?? {})) {
65
+ preimages.set(key, toHex(value));
66
+ }
67
+ const client = {
68
+ localStorage: {
69
+ read: ({ key }) => okAsync({ value: kv.get(key) }),
70
+ write: ({ key, value }) => {
71
+ kv.set(key, value);
72
+ return okAsync(void 0);
73
+ },
74
+ clear: ({ key }) => {
75
+ kv.delete(key);
76
+ return okAsync(void 0);
77
+ }
78
+ },
79
+ account: {
80
+ getUserId: () => okAsync({ primaryUsername }),
81
+ requestLogin: () => okAsync("Success"),
82
+ getAccount: () => okAsync({ account: { publicKey } }),
83
+ getAccountAlias: () => okAsync({ context: toHex(new Uint8Array([1])), alias: toHex(new Uint8Array([2])) }),
84
+ getLegacyAccounts: () => okAsync({ accounts: legacyAccounts }),
85
+ createAccountProof: () => okAsync({
86
+ proof: signature,
87
+ contextualAlias: {
88
+ context: toHex(new Uint8Array([1])),
89
+ alias: toHex(new Uint8Array([2]))
90
+ },
91
+ ringIndex: 0,
92
+ ringRevision: 0
93
+ }),
94
+ registerRingVrfKey: () => okAsync(publicKey),
95
+ listRingVrfKeys: () => okAsync([]),
96
+ ringVrfSign: () => okAsync(signature),
97
+ signVrf: () => okAsync({ preOutput: publicKey, proof: signature }),
98
+ connectionStatusSubscribe: () => inertObservable()
99
+ },
100
+ signing: {
101
+ createTransaction: () => okAsync({ transaction: signature }),
102
+ createTransactionWithLegacyAccount: () => okAsync({ transaction: signature }),
103
+ signRaw: () => okAsync({ signature }),
104
+ signRawWithLegacyAccount: () => okAsync({ signature }),
105
+ signPayload: () => okAsync({ signature }),
106
+ signPayloadWithLegacyAccount: () => okAsync({ signature })
107
+ },
108
+ statementStore: {
109
+ subscribe: () => inertObservable(),
110
+ createProof: () => okAsync({ proof: { tag: "Sr25519", value: { signature, signer: publicKey } } }),
111
+ createProofAuthorized: () => okAsync({ proof: { tag: "Sr25519", value: { signature, signer: publicKey } } }),
112
+ submit: () => okAsync(void 0)
113
+ },
114
+ system: {
115
+ handshake: () => okAsync(void 0),
116
+ featureSupported: () => okAsync({ supported: chainSupported }),
117
+ navigateTo: () => okAsync(void 0)
118
+ },
119
+ preimage: {
120
+ lookupSubscribe: ({ request: { key } }) => oneShotObservable({ value: preimages.get(key) }),
121
+ submit: (value) => {
122
+ const key = preimageKey(value);
123
+ preimages.set(key, value);
124
+ return okAsync(key);
125
+ }
126
+ },
127
+ // Only `getChainInfo` is modeled; the rest of the domain still throws.
128
+ chain: notModeled("chain", {
129
+ getChainInfo: ({ chain }) => {
130
+ if (!chainInfo) return errAsync({ tag: "Unsupported" });
131
+ const genesisHash = chainInfo.chains[chain];
132
+ if (!genesisHash) {
133
+ return errAsync({
134
+ tag: "Domain",
135
+ value: { tag: "V1", value: { tag: "NotSupported" } }
136
+ });
137
+ }
138
+ return okAsync({ network: chainInfo.network, chain, genesisHash });
139
+ }
140
+ }),
141
+ chat: notModeled("chat"),
142
+ coinPayment: notModeled("coinPayment"),
143
+ entropy: notModeled("entropy"),
144
+ notifications: notModeled("notifications"),
145
+ payment: notModeled("payment"),
146
+ permissions: notModeled("permissions"),
147
+ resourceAllocation: notModeled("resourceAllocation"),
148
+ theme: notModeled("theme")
149
+ };
150
+ return client;
151
+ }
152
+ function createFakeHost(options) {
153
+ const client = createFakeTruApiClient(options);
154
+ setTruApiClient(client);
155
+ let disposed = false;
156
+ const dispose = () => {
157
+ if (disposed) return;
158
+ disposed = true;
159
+ setTruApiClient(null);
160
+ };
161
+ const onTestFinished = globalThis.onTestFinished;
162
+ if (typeof onTestFinished === "function") {
163
+ try {
164
+ onTestFinished(dispose);
165
+ } catch {
166
+ }
167
+ }
168
+ return {
169
+ client,
170
+ dispose,
171
+ [Symbol.dispose]: dispose
172
+ };
173
+ }
174
+
175
+ export { createFakeHost, createFakeTruApiClient };
176
+ //# sourceMappingURL=testing.js.map
177
+ //# sourceMappingURL=testing.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/testing.ts"],"names":[],"mappings":"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","file":"testing.js","sourcesContent":["// Copyright 2026 Parity Technologies (UK) Ltd.\n// SPDX-License-Identifier: Apache-2.0\n/**\n * Test fakes for `@parity/product-sdk-host`.\n *\n * The host reaches its container through one cached `TrUApiClient`.\n * `createFakeHost()` injects a fake via `setTruApiClient` so every accessor\n * (`getHostLocalStorage`, `getAccountsProvider`, `getStatementStore`, `getTruApi`,\n * …) resolves against it and `isInsideContainer()` reports `true` — which also\n * makes a default `SignerManager`, `local-storage` auto-detection, and the\n * `statement-store` / `cloud-storage` host paths testable.\n *\n * Of the `chain` domain only `getChainInfo` is modeled, so host chain discovery\n * (and `getChainAPI()` on top of it) resolves in tests; see the `chainInfo`\n * option. Not modeled: the rest of the PAPI `chain` JSON-RPC surface behind\n * `getHostProvider()` — there's no chain-read fake, by design; the host owns RPC\n * selection — and the `chat` / `coinPayment` / `entropy` / `notifications` /\n * `payment` / `permissions` / `resourceAllocation` / `theme` domains. Touching\n * an unmodeled domain throws a descriptive error rather than failing with\n * `undefined is not a function`.\n *\n * @packageDocumentation\n */\nimport type { ObservableLike, Observer, Subscription, TrUApiClient } from \"@parity/truapi\";\nimport { errAsync, okAsync } from \"neverthrow\";\n\nimport type { HostChainIdentifier } from \"./chain-discovery.js\";\n\nimport { setTruApiClient } from \"./transport.js\";\n\nexport { setTruApiClient };\n\n/**\n * The public surface of a generated truapi domain client. `keyof` skips private\n * members, so this is the shape a plain object can implement — the classes\n * themselves are unimplementable outside truapi because of their\n * `private transport`.\n */\ntype PublicSurface<C> = { [K in keyof C]: C[K] };\n\n/**\n * `TrUApiClient` seen through public surfaces only. The fake is checked against\n * this member-by-member, so drift from the generated client — a renamed method,\n * a changed request or response type — fails compilation here instead of\n * surfacing as a runtime mismatch in consumers' tests.\n */\ntype PublicTruApiClient = { [D in keyof TrUApiClient]: PublicSurface<TrUApiClient[D]> };\n\n/** Inlined to keep the `truapi` facade out of this entry's bundle. */\nfunction toHex(bytes: Uint8Array): `0x${string}` {\n return `0x${Array.from(bytes, (b) => b.toString(16).padStart(2, \"0\")).join(\"\")}`;\n}\n\nfunction fakeSubscription(): Subscription {\n return { unsubscribe: () => {}, subscriptionId: \"fake-subscription\" };\n}\n\n/**\n * Wrap a `subscribe` implementation into a full `ObservableLike`. The\n * `Symbol.observable` interop member only lands on the object when the symbol\n * is polyfilled (e.g. by rxjs) — same as the generated client — and nothing in\n * the SDK reads it; it exists to satisfy the interface.\n */\nfunction makeObservable<Item, Reason = never>(\n subscribe: (observer?: Partial<Observer<Item, Reason>>) => Subscription,\n): ObservableLike<Item, Reason> {\n const observable: ObservableLike<Item, Reason> = {\n subscribe,\n [Symbol.observable]() {\n return observable;\n },\n };\n return observable;\n}\n\n/** An `ObservableLike` that never emits. Drive statement delivery with `createFakeStatementTransport`. */\nfunction inertObservable<Item, Reason = never>(): ObservableLike<Item, Reason> {\n return makeObservable(() => fakeSubscription());\n}\n\n/**\n * An `ObservableLike` that emits `item` once, asynchronously. The microtask defer\n * matters: the caller assigns its subscription handle from the return value, so\n * the item must arrive after `subscribe()` returns, not during it.\n */\nfunction oneShotObservable<Item>(item: Item): ObservableLike<Item> {\n return makeObservable((observer) => {\n queueMicrotask(() => observer?.next?.(item));\n return fakeSubscription();\n });\n}\n\n/**\n * A domain the fake deliberately doesn't model (see the module header). Any\n * member access throws with a pointer here, instead of the bare TypeError an\n * empty stub would give. The empty-object cast is the one concession a Proxy\n * needs; every modeled domain is checked structurally.\n *\n * `modeled` carries the members that _are_ implemented, for a domain where the\n * fake covers some calls but not the whole surface.\n */\nfunction notModeled<D extends keyof TrUApiClient>(\n domain: D,\n modeled?: Partial<PublicSurface<TrUApiClient[D]>>,\n): PublicSurface<TrUApiClient[D]> {\n return new Proxy((modeled ?? {}) as PublicSurface<TrUApiClient[D]>, {\n get(target, member) {\n if (member in target) return target[member as keyof typeof target];\n // Stay quiet for inspection probes (console.log, await-resolution).\n if (typeof member === \"symbol\" || member === \"then\") return undefined;\n throw new Error(\n `createFakeTruApiClient: \\`${domain}.${member}\\` is not modeled by the fake. See the @parity/product-sdk-host/testing module docs for what is covered.`,\n );\n },\n });\n}\n\n/** Deterministic `0x`-prefixed preimage key derived from a hex value (FNV-1a). */\nfunction preimageKey(hexValue: string): `0x${string}` {\n let h = 0x811c9dc5;\n for (let i = 0; i < hexValue.length; i++) {\n h ^= hexValue.charCodeAt(i);\n h = Math.imul(h, 0x01000193);\n }\n return `0x${(h >>> 0).toString(16).padStart(8, \"0\")}`;\n}\n\n/**\n * What a fake host reports through `chain.getChainInfo`: the network id it is\n * configured for, and a genesis hash per chain role it serves.\n *\n * Roles left out are answered `NotSupported`, exactly as a host that does not\n * serve them. Use the genesis hashes the descriptors expose (e.g.\n * `paseo_asset_hub.genesis`) if the test drives `getChainAPI()`, since the\n * environment is derived by matching the asset hub genesis against the bundle.\n */\nexport interface FakeChainInfo {\n /** Ecosystem the fake host claims, e.g. `\"paseo\"`. */\n network: string;\n /** Genesis hash per chain role served. */\n chains: Partial<Record<HostChainIdentifier, `0x${string}`>>;\n}\n\n/** Options for {@link createFakeTruApiClient}. */\nexport interface CreateFakeTruApiClientOptions {\n /** `account.getUserId` primary username. Default `\"alice.dot\"`. */\n primaryUsername?: string;\n /** Product-account public key. Default 32 bytes of `0x11`. */\n publicKey?: Uint8Array;\n /** Bytes returned by the signing domain (signatures / proofs / transactions). Default 64 bytes of `0x22`. */\n signature?: Uint8Array;\n /** Whether `system.featureSupported` reports the chain supported. Default `true`. */\n chainSupported?: boolean;\n /** Seed the in-memory host localStorage, keyed by storage key. */\n localStorage?: Record<string, Uint8Array>;\n /** Legacy accounts returned by `account.getLegacyAccounts`. Default none. */\n legacyAccounts?: Array<{ publicKey: Uint8Array; name: string }>;\n /** Seed the in-memory preimage store, keyed by the `0x` preimage key. */\n preimages?: Record<string, Uint8Array>;\n /**\n * What `chain.getChainInfo` reports. Omit to model a host predating chain\n * discovery: the call is refused as `Unsupported`, so `getHostChainInfo`\n * resolves `null` and `getChainAPI` needs an explicit environment.\n */\n chainInfo?: FakeChainInfo;\n}\n\n/**\n * Build a fake `TrUApiClient` covering the domains the host accessors use:\n * `localStorage` (real in-memory KV), `account` / `signing` (canned data),\n * `statementStore`, `preimage`, and `system`. Unmodeled domains (`chain` et al —\n * see the module header) throw on member access.\n */\nexport function createFakeTruApiClient(options?: CreateFakeTruApiClientOptions): TrUApiClient {\n const primaryUsername = options?.primaryUsername ?? \"alice.dot\";\n const publicKey = toHex(options?.publicKey ?? new Uint8Array(32).fill(0x11));\n const signature = toHex(options?.signature ?? new Uint8Array(64).fill(0x22));\n const chainSupported = options?.chainSupported ?? true;\n const chainInfo = options?.chainInfo;\n\n // Real in-memory KV (hex values) so getHostLocalStorage()/createLocalKvStore() round-trip.\n const kv = new Map<string, `0x${string}`>();\n for (const [key, value] of Object.entries(options?.localStorage ?? {})) {\n kv.set(key, toHex(value));\n }\n\n const legacyAccounts = (options?.legacyAccounts ?? []).map((a) => ({\n publicKey: toHex(a.publicKey),\n name: a.name,\n }));\n\n // Preimage store (hex key -> hex value), for getPreimageManager() and submit/lookup round-trips.\n const preimages = new Map<string, `0x${string}`>();\n for (const [key, value] of Object.entries(options?.preimages ?? {})) {\n preimages.set(key, toHex(value));\n }\n\n // Typed against the generated client's public surface: every method below is\n // structurally checked, so a truapi signature change breaks this file's build,\n // not a consumer's test run.\n const client: PublicTruApiClient = {\n localStorage: {\n read: ({ key }) => okAsync({ value: kv.get(key) }),\n write: ({ key, value }) => {\n kv.set(key, value);\n return okAsync(undefined);\n },\n clear: ({ key }) => {\n kv.delete(key);\n return okAsync(undefined);\n },\n },\n account: {\n getUserId: () => okAsync({ primaryUsername }),\n requestLogin: () => okAsync(\"Success\"),\n getAccount: () => okAsync({ account: { publicKey } }),\n getAccountAlias: () =>\n okAsync({ context: toHex(new Uint8Array([1])), alias: toHex(new Uint8Array([2])) }),\n getLegacyAccounts: () => okAsync({ accounts: legacyAccounts }),\n createAccountProof: () =>\n okAsync({\n proof: signature,\n contextualAlias: {\n context: toHex(new Uint8Array([1])),\n alias: toHex(new Uint8Array([2])),\n },\n ringIndex: 0,\n ringRevision: 0,\n }),\n registerRingVrfKey: () => okAsync(publicKey),\n listRingVrfKeys: () => okAsync([]),\n ringVrfSign: () => okAsync(signature),\n signVrf: () => okAsync({ preOutput: publicKey, proof: signature }),\n connectionStatusSubscribe: () => inertObservable(),\n },\n signing: {\n createTransaction: () => okAsync({ transaction: signature }),\n createTransactionWithLegacyAccount: () => okAsync({ transaction: signature }),\n signRaw: () => okAsync({ signature }),\n signRawWithLegacyAccount: () => okAsync({ signature }),\n signPayload: () => okAsync({ signature }),\n signPayloadWithLegacyAccount: () => okAsync({ signature }),\n },\n statementStore: {\n subscribe: () => inertObservable(),\n createProof: () =>\n okAsync({ proof: { tag: \"Sr25519\", value: { signature, signer: publicKey } } }),\n createProofAuthorized: () =>\n okAsync({ proof: { tag: \"Sr25519\", value: { signature, signer: publicKey } } }),\n submit: () => okAsync(undefined),\n },\n system: {\n handshake: () => okAsync(undefined),\n featureSupported: () => okAsync({ supported: chainSupported }),\n navigateTo: () => okAsync(undefined),\n },\n preimage: {\n lookupSubscribe: ({ request: { key } }) =>\n oneShotObservable({ value: preimages.get(key) }),\n submit: (value) => {\n const key = preimageKey(value);\n preimages.set(key, value);\n return okAsync(key);\n },\n },\n // Only `getChainInfo` is modeled; the rest of the domain still throws.\n chain: notModeled(\"chain\", {\n getChainInfo: ({ chain }) => {\n if (!chainInfo) return errAsync({ tag: \"Unsupported\" } as const);\n const genesisHash = chainInfo.chains[chain];\n if (!genesisHash) {\n return errAsync({\n tag: \"Domain\",\n value: { tag: \"V1\", value: { tag: \"NotSupported\" } },\n } as const);\n }\n return okAsync({ network: chainInfo.network, chain, genesisHash });\n },\n }),\n chat: notModeled(\"chat\"),\n coinPayment: notModeled(\"coinPayment\"),\n entropy: notModeled(\"entropy\"),\n notifications: notModeled(\"notifications\"),\n payment: notModeled(\"payment\"),\n permissions: notModeled(\"permissions\"),\n resourceAllocation: notModeled(\"resourceAllocation\"),\n theme: notModeled(\"theme\"),\n };\n\n // A plain downcast, not an `unknown` bridge: each generated class is\n // assignable to its `PublicSurface`, and TS has already verified every fake\n // member against the generated signatures in the annotation above.\n return client as TrUApiClient;\n}\n\n/**\n * A `beforeEach`-registered test hook, e.g. Vitest's `onTestFinished`. Read off\n * `globalThis` so we couple to no test framework: present under Vitest's globals\n * mode, absent everywhere else (Jest, `node:test`, plain scripts).\n */\ntype TestFinishedHook = (fn: () => void) => void;\n\n/** Handle returned by {@link createFakeHost}. */\nexport interface FakeHost extends Disposable {\n /** The injected fake client (also what `getTruApi()` returns). */\n client: TrUApiClient;\n /** Clear the override. Idempotent; safe to call more than once. */\n dispose(): void;\n /** `using host = createFakeHost()` restores the real client at scope end. */\n [Symbol.dispose](): void;\n}\n\n/**\n * Inject a fake client via {@link setTruApiClient} and return a disposer.\n *\n * Cleanup is guaranteed three ways, so a forgotten reset can't leak the override\n * into the next test or file: prefer `using` (scope-end disposal), otherwise the\n * handle self-registers `onTestFinished` when created inside a Vitest run, and\n * `dispose()` is always there to call by hand.\n *\n * @example\n * ```ts\n * import { createFakeHost } from \"@parity/product-sdk-host/testing\";\n *\n * test(\"host storage is reachable\", async () => {\n * using host = createFakeHost({ primaryUsername: \"carol.dot\" });\n * // getHostLocalStorage(), getAccountsProvider(), a default SignerManager, etc.\n * // resolve the fake; the real client is restored when the test scope ends.\n * });\n * ```\n */\nexport function createFakeHost(options?: CreateFakeTruApiClientOptions): FakeHost {\n const client = createFakeTruApiClient(options);\n setTruApiClient(client);\n\n let disposed = false;\n const dispose = () => {\n if (disposed) return;\n disposed = true;\n setTruApiClient(null);\n };\n\n // Best-effort auto-cleanup for the common case (a bare `const host =\n // createFakeHost()` with no `using` and no manual reset). Under Vitest's\n // globals mode `onTestFinished` is on `globalThis`; elsewhere it's absent and\n // we quietly rely on `using` / manual `dispose()`.\n const onTestFinished = (globalThis as { onTestFinished?: TestFinishedHook }).onTestFinished;\n if (typeof onTestFinished === \"function\") {\n try {\n onTestFinished(dispose);\n } catch {\n // Not inside a running test (e.g. called at module scope) — ignore.\n }\n }\n\n return {\n client,\n dispose,\n [Symbol.dispose]: dispose,\n };\n}\n\nif (import.meta.vitest) {\n // Round-trip guard: drive the fake through the *real* host accessors.\n const { describe, test, expect, afterEach } = import.meta.vitest;\n const { getHostLocalStorage, getStatementStore, isInsideContainer } = await import(\n \"./container.js\"\n );\n const { getAccountsProvider } = await import(\"./accounts.js\");\n const { getHostChainInfo } = await import(\"./chain-discovery.js\");\n const { getPreimageManager } = await import(\"./truapi.js\");\n\n const lookupOnce = (\n manager: NonNullable<Awaited<ReturnType<typeof getPreimageManager>>>,\n key: `0x${string}`,\n ) =>\n new Promise<Uint8Array | null>((resolve) => {\n manager.lookup(key, (preimage) => {\n if (preimage !== null) resolve(preimage);\n });\n });\n\n afterEach(() => setTruApiClient(null));\n\n describe(\"createFakeHost / createFakeTruApiClient\", () => {\n test(\"host localStorage round-trips through the real adapter\", async () => {\n createFakeHost();\n const ls = await getHostLocalStorage();\n expect(ls).not.toBeNull();\n await ls?.writeString(\"k\", \"v\");\n expect(await ls?.readString(\"k\")).toBe(\"v\");\n await ls?.writeJSON(\"j\", { a: 1 });\n expect(await ls?.readJSON(\"j\")).toEqual({ a: 1 });\n expect(await ls?.readString(\"missing\")).toBe(\"\");\n });\n\n test(\"seeded localStorage is readable\", async () => {\n createFakeHost({ localStorage: { greeting: new TextEncoder().encode(\"hi\") } });\n const ls = await getHostLocalStorage();\n expect(await ls?.readString(\"greeting\")).toBe(\"hi\");\n });\n\n test(\"accounts provider resolves the configured user\", async () => {\n createFakeHost({ primaryUsername: \"carol.dot\" });\n const accounts = await getAccountsProvider();\n expect(accounts).not.toBeNull();\n const userId = await accounts?.getUserId().match(\n (v) => v,\n () => null,\n );\n expect(userId?.primaryUsername).toBe(\"carol.dot\");\n });\n\n test(\"signVrf round-trips through the real adapter\", async () => {\n // The fake is the only way a product can test a VRF flow: there is no\n // dev-provider implementation and the e2e test host does not expose the\n // call. So the fake's wire shape has to stay decodable by the adapter.\n createFakeHost();\n const accounts = await getAccountsProvider();\n const signature = await accounts\n ?.signVrf({ dotNsIdentifier: \"app.dot\" }, new Uint8Array([1]), [\n { label: new Uint8Array([2]), value: new Uint8Array([3]) },\n ])\n .match(\n (s) => s,\n () => null,\n );\n expect(signature?.preOutput).toBeInstanceOf(Uint8Array);\n expect(signature?.proof).toBeInstanceOf(Uint8Array);\n expect(signature?.preOutput).toHaveLength(32);\n expect(signature?.proof).toHaveLength(64);\n });\n\n test(\"chain discovery is refused by default, so a legacy host is modeled\", async () => {\n createFakeHost();\n // Refused, not unmodeled: a bare `getChainAPI(\"paseo\")` in a consumer\n // test must not warn about the fake on every call.\n expect(await getHostChainInfo([\"AssetHub\"])).toBeNull();\n });\n\n test(\"chainInfo drives discovery, with unserved roles left out\", async () => {\n createFakeHost({\n chainInfo: { network: \"paseo\", chains: { AssetHub: \"0xaa\", Bulletin: \"0xbb\" } },\n });\n expect(await getHostChainInfo([\"AssetHub\", \"Bulletin\", \"People\"])).toEqual({\n network: \"paseo\",\n chains: { AssetHub: \"0xaa\", Bulletin: \"0xbb\" },\n });\n });\n\n test(\"the rest of the chain domain still reports itself unmodeled\", async () => {\n const host = createFakeHost();\n expect(() => (host.client.chain as { chainName?: unknown }).chainName).toThrow(\n /not modeled by the fake/,\n );\n });\n\n test(\"statement store resolves\", async () => {\n createFakeHost();\n expect(await getStatementStore()).not.toBeNull();\n });\n\n test(\"preimage manager reads seeded bytes and round-trips submit -> lookup\", async () => {\n createFakeHost({ preimages: { \"0xabc\": new Uint8Array([1, 2, 3]) } });\n const pm = await getPreimageManager();\n expect(pm).not.toBeNull();\n\n const seeded = await lookupOnce(pm!, \"0xabc\");\n expect(Array.from(seeded ?? [])).toEqual([1, 2, 3]);\n\n const key = await pm!.submit(new Uint8Array([9, 9]));\n const back = await lookupOnce(pm!, key);\n expect(Array.from(back ?? [])).toEqual([9, 9]);\n });\n\n test(\"isInsideContainer is true while set, false after dispose\", async () => {\n const host = createFakeHost();\n expect(await isInsideContainer()).toBe(true);\n host.dispose();\n expect(await isInsideContainer()).toBe(false);\n expect(await getHostLocalStorage()).toBeNull();\n });\n\n test(\"Symbol.dispose clears the override and dispose is idempotent\", async () => {\n {\n using host = createFakeHost();\n expect(await isInsideContainer()).toBe(true);\n host.dispose(); // explicit + scope-end Symbol.dispose must not double-clear badly\n }\n expect(await isInsideContainer()).toBe(false);\n });\n });\n}\n"]}
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@parity/product-sdk-host",
3
+ "version": "0.0.0-dev.312.0",
4
+ "description": "Host container detection and storage access for Polkadot Desktop and Mobile environments",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/index.js",
13
+ "types": "./dist/index.d.ts"
14
+ },
15
+ "./testing": {
16
+ "import": "./dist/testing.js",
17
+ "types": "./dist/testing.d.ts"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "src"
23
+ ],
24
+ "dependencies": {
25
+ "@parity/truapi": "^0.9.0",
26
+ "@polkadot-api/json-rpc-provider": "^0.2.0",
27
+ "@polkadot-api/substrate-bindings": "^0.20.3",
28
+ "neverthrow": "^8.2.0",
29
+ "polkadot-api": "^2.1.6",
30
+ "@parity/product-sdk-logger": "0.1.1",
31
+ "@parity/product-sdk-errors": "0.2.0",
32
+ "@parity/result": "0.2.0"
33
+ },
34
+ "devDependencies": {
35
+ "tsup": "^8.5.1",
36
+ "typescript": "^5.7.0",
37
+ "vitest": "^3.0.0"
38
+ },
39
+ "license": "Apache-2.0",
40
+ "scripts": {
41
+ "build": "tsup",
42
+ "test": "vitest",
43
+ "clean": "rm -rf dist",
44
+ "typecheck": "tsc -p tsconfig.typecheck.json"
45
+ }
46
+ }