26 lines
1.9 KiB
TypeScript
26 lines
1.9 KiB
TypeScript
|
|
import assert from "node:assert/strict";
|
||
|
|
import { readFileSync } from "node:fs";
|
||
|
|
import test from "node:test";
|
||
|
|
|
||
|
|
const pluginConnectionSectionSource = readFileSync(new URL("../PluginConnectionSection.tsx", import.meta.url), "utf8");
|
||
|
|
const pluginAuthenticationHostSource = readFileSync(new URL("./PluginAuthenticationHost.tsx", import.meta.url), "utf8");
|
||
|
|
const connectionHookSource = readFileSync(new URL("../../application/state/usePluginConnectionSectionState.ts", import.meta.url), "utf8");
|
||
|
|
const authenticationHookSource = readFileSync(new URL("../../application/state/usePluginAuthenticationChallenges.ts", import.meta.url), "utf8");
|
||
|
|
|
||
|
|
test("plugin connection section delegates provider discovery and credential catalog state to application state", () => {
|
||
|
|
assert.match(connectionHookSource, /pluginExtensionBridge\.listProviders\("connection"\)/u);
|
||
|
|
assert.match(connectionHookSource, /pluginExtensionBridge\.onContributionsChanged/u);
|
||
|
|
assert.match(connectionHookSource, /pluginExtensionBridge\.subscribeCredentialCatalog/u);
|
||
|
|
assert.doesNotMatch(pluginConnectionSectionSource, /pluginExtensionBridge/u);
|
||
|
|
});
|
||
|
|
|
||
|
|
test("plugin authentication host delegates challenge lifecycle effects to application state", () => {
|
||
|
|
assert.match(authenticationHookSource, /pluginExtensionBridge\.onAuthenticationChallenge/u);
|
||
|
|
assert.match(authenticationHookSource, /pluginExtensionBridge\.respondAuthenticationChallenge/u);
|
||
|
|
assert.match(authenticationHookSource, /catch \(error\) \{\s+setResponseError\(pluginAuthenticationResponseErrorMessage\(error\)\);/u);
|
||
|
|
assert.doesNotMatch(authenticationHookSource, /catch \{\s+setQueue\(\(existing\) => existing\.filter/u);
|
||
|
|
assert.match(pluginAuthenticationHostSource, /role="alert"/u);
|
||
|
|
assert.match(pluginAuthenticationHostSource, /plugins\.authentication\.responseFailed/u);
|
||
|
|
assert.doesNotMatch(pluginAuthenticationHostSource, /pluginExtensionBridge/u);
|
||
|
|
});
|