@astrale-os/cli 0.8.1-alpha.0 → 0.8.1-alpha.2
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/dist/astrale.js +62959 -41238
- package/dist/public/connect-core.js +55030 -0
- package/dist/public/keys/index.js +45631 -0
- package/dist/public/paths/index.js +43990 -0
- package/dist/types/admin/instance/model.d.ts +40 -0
- package/dist/types/connect-core.d.ts +22 -0
- package/dist/types/connection/auth.d.ts +33 -0
- package/dist/types/errors.d.ts +23 -0
- package/dist/types/identity/registry.d.ts +25 -0
- package/dist/types/keys/algorithm.d.ts +6 -0
- package/dist/types/keys/credential.d.ts +21 -0
- package/dist/types/keys/index.d.ts +4 -0
- package/dist/types/keys/pair.d.ts +34 -0
- package/dist/types/lib/admin-target.d.ts +74 -0
- package/dist/types/lib/ca-fetch.d.ts +2 -0
- package/dist/types/lib/config.d.ts +71 -0
- package/dist/types/lib/format.d.ts +1 -0
- package/dist/types/lib/idp-session.d.ts +33 -0
- package/dist/types/lib/idp.d.ts +397 -0
- package/dist/types/lib/instance-target.d.ts +36 -0
- package/dist/types/lib/instance.d.ts +186 -0
- package/dist/types/lib/log.d.ts +30 -0
- package/dist/types/lib/login-flow.d.ts +49 -0
- package/dist/types/lib/meta.d.ts +36 -0
- package/dist/types/lib/output.d.ts +83 -0
- package/dist/types/lib/table.d.ts +18 -0
- package/dist/types/lib/validation.d.ts +11 -0
- package/dist/types/paths/index.d.ts +2 -0
- package/dist/types/state/exchange-credentials.d.ts +25 -0
- package/dist/types/state/files.d.ts +9 -0
- package/dist/types/state/identities.d.ts +42 -0
- package/dist/types/state/index.d.ts +8 -0
- package/dist/types/state/paths.d.ts +32 -0
- package/package.json +22 -7
- package/src/admin/.spec/api.d.ts +3 -0
- package/src/admin/.spec/architecture.md +15 -0
- package/src/admin/.spec/icon.svg +3 -0
- package/src/admin/.spec/layout.ts +6 -0
- package/src/admin/catalog/.spec/api.d.ts +65 -0
- package/src/admin/catalog/.spec/architecture.md +6 -0
- package/src/admin/catalog/.spec/icon.svg +3 -0
- package/src/admin/catalog/.spec/layout.ts +6 -0
- package/src/admin/catalog/__tests__/client.test.ts +171 -0
- package/src/admin/catalog/client.ts +214 -0
- package/src/admin/catalog/index.ts +13 -0
- package/src/admin/catalog/model.ts +42 -0
- package/src/admin/catalog/tsconfig.json +8 -0
- package/src/admin/graph/.spec/api.d.ts +28 -0
- package/src/admin/graph/.spec/architecture.md +5 -0
- package/src/admin/graph/.spec/icon.svg +3 -0
- package/src/admin/graph/.spec/layout.ts +3 -0
- package/src/admin/graph/index.ts +6 -0
- package/src/admin/graph/nodes.ts +56 -0
- package/src/admin/index.ts +2 -0
- package/src/admin/instance/.spec/api.d.ts +66 -0
- package/src/admin/instance/.spec/architecture.md +10 -0
- package/src/admin/instance/.spec/icon.svg +3 -0
- package/src/admin/instance/.spec/layout.ts +6 -0
- package/src/admin/instance/__tests__/client.test.ts +289 -0
- package/src/admin/instance/client.ts +298 -0
- package/src/admin/instance/index.ts +16 -0
- package/src/admin/instance/model.ts +65 -0
- package/src/admin/instance/tsconfig.json +8 -0
- package/src/commands/__tests__/admin-instance.test.ts +3 -36
- package/src/commands/__tests__/call.test.ts +21 -68
- package/src/commands/__tests__/domain-install-owned.test.ts +26 -27
- package/src/commands/__tests__/domain-list.test.ts +2 -6
- package/src/commands/__tests__/logs.test.ts +50 -98
- package/src/commands/__tests__/ls.test.ts +21 -17
- package/src/commands/__tests__/read-commands.test.ts +171 -101
- package/src/commands/__tests__/view.test.ts +100 -51
- package/src/commands/admin/status.ts +3 -3
- package/src/commands/admin/use.ts +29 -6
- package/src/commands/auth/login.ts +1 -1
- package/src/commands/auth/logout.ts +4 -2
- package/src/commands/auth/status.ts +2 -2
- package/src/commands/auth/token.ts +2 -2
- package/src/commands/browser.ts +1 -1
- package/src/commands/call.ts +55 -91
- package/src/commands/describe.ts +52 -147
- package/src/commands/domain/install.ts +81 -50
- package/src/commands/domain/list.ts +4 -8
- package/src/commands/domain/publish.ts +9 -31
- package/src/commands/get.ts +32 -65
- package/src/commands/identity/__tests__/register.test.ts +93 -0
- package/src/commands/identity/create.ts +2 -2
- package/src/commands/identity/delete.ts +2 -2
- package/src/commands/identity/export.ts +7 -33
- package/src/commands/identity/import.ts +21 -70
- package/src/commands/identity/list.ts +2 -2
- package/src/commands/identity/register.ts +148 -117
- package/src/commands/identity/sync.ts +2 -2
- package/src/commands/identity/unsync.ts +2 -2
- package/src/commands/identity/use.ts +2 -2
- package/src/commands/identity/whoami.ts +2 -2
- package/src/commands/idp/add.ts +1 -1
- package/src/commands/idp/list.ts +1 -1
- package/src/commands/idp/refresh.ts +1 -1
- package/src/commands/idp/remove.ts +2 -2
- package/src/commands/idp/show.ts +1 -1
- package/src/commands/instance/active.ts +2 -2
- package/src/commands/instance/bookmark.ts +8 -2
- package/src/commands/instance/create.ts +1 -1
- package/src/commands/instance/delete.ts +4 -10
- package/src/commands/instance/forget.ts +1 -1
- package/src/commands/instance/list.ts +3 -3
- package/src/commands/instance/status.ts +5 -7
- package/src/commands/instance/use.ts +3 -3
- package/src/commands/logs.ts +152 -279
- package/src/commands/ls.ts +78 -204
- package/src/commands/mutate.ts +70 -139
- package/src/commands/query.ts +100 -278
- package/src/commands/session/analyze.ts +1 -1
- package/src/commands/session/list.ts +1 -1
- package/src/commands/setup.ts +1 -1
- package/src/commands/status.ts +1 -1
- package/src/commands/studio.ts +1 -1
- package/src/commands/token.ts +26 -21
- package/src/commands/update.ts +1 -1
- package/src/commands/use.ts +2 -3
- package/src/commands/view-serve.ts +1 -1
- package/src/commands/view.ts +67 -109
- package/src/connect-core.test.ts +38 -0
- package/src/connect-core.ts +42 -0
- package/src/connection/.spec/api.d.ts +111 -0
- package/src/connection/.spec/architecture.md +41 -0
- package/src/connection/.spec/capabilities/connection.ts +13 -0
- package/src/connection/.spec/examples/call.ts +7 -0
- package/src/connection/.spec/flows/command.ts +20 -0
- package/src/connection/.spec/flows/session.ts +61 -0
- package/src/connection/.spec/laws/connection.ts +181 -0
- package/src/connection/.spec/layout.ts +19 -0
- package/src/{kernel → connection}/__tests__/auth.test.ts +26 -2
- package/src/connection/__tests__/ca-fetch.test.ts +53 -0
- package/src/connection/__tests__/call.test.ts +17 -0
- package/src/connection/__tests__/credential.test.ts +109 -0
- package/src/connection/__tests__/errors.test.ts +96 -0
- package/src/connection/__tests__/exchange.test.ts +224 -0
- package/src/connection/__tests__/fixtures/localhost-cert.pem +19 -0
- package/src/connection/__tests__/fixtures/localhost-key.base64 +1 -0
- package/src/connection/__tests__/managed.test.ts +39 -0
- package/src/connection/__tests__/self.test.ts +51 -0
- package/src/connection/__tests__/session.test.ts +140 -0
- package/src/connection/__tests__/target.test.ts +93 -0
- package/src/{kernel → connection}/auth.ts +8 -8
- package/src/connection/call.ts +7 -0
- package/src/{kernel/run.ts → connection/command.ts} +22 -13
- package/src/connection/credential.ts +114 -0
- package/src/{kernel → connection}/errors.ts +32 -9
- package/src/connection/exchange.ts +274 -0
- package/src/connection/index.ts +8 -0
- package/src/connection/self.ts +120 -0
- package/src/connection/session.ts +176 -0
- package/src/connection/target.ts +111 -0
- package/src/connection/tsconfig.json +6 -0
- package/src/graph/.spec/api.d.ts +34 -0
- package/src/graph/.spec/laws/documents.ts +24 -0
- package/src/graph/.spec/laws/projection.ts +13 -0
- package/src/graph/.spec/layout.ts +6 -0
- package/src/graph/__tests__/mutation.test.ts +43 -0
- package/src/graph/__tests__/projection.test.ts +22 -0
- package/src/graph/__tests__/query.test.ts +154 -0
- package/src/graph/index.ts +3 -0
- package/src/graph/mutation.ts +18 -0
- package/src/graph/projection.ts +21 -0
- package/src/graph/query.ts +108 -0
- package/src/graph/tsconfig.json +6 -0
- package/src/identity/.history/ard/bootstrap-root-transfer.md +57 -0
- package/src/identity/.history/ard/domain-mediated-registration.md +36 -0
- package/src/identity/.spec/api.d.ts +124 -0
- package/src/identity/.spec/architecture.md +33 -0
- package/src/identity/.spec/capabilities/identity.ts +7 -0
- package/src/identity/.spec/flows/bootstrap-root.ts +79 -0
- package/src/identity/.spec/flows/domain-mediated-registration.ts +51 -0
- package/src/identity/.spec/flows/import.ts +29 -0
- package/src/identity/.spec/laws/identity.ts +56 -0
- package/src/identity/.spec/layout.ts +13 -0
- package/src/identity/.spec/schemas/identity-export-v1.schema.json +25 -0
- package/src/identity/__tests__/fixtures/registry-journey.ts +53 -0
- package/src/identity/__tests__/registration.test.ts +64 -0
- package/src/identity/__tests__/registry.test.ts +70 -0
- package/src/identity/__tests__/transfer.test.ts +198 -0
- package/src/identity/index.ts +23 -0
- package/src/identity/registration.ts +72 -0
- package/src/identity/registry.ts +172 -0
- package/src/identity/transfer.ts +187 -0
- package/src/identity/tsconfig.json +6 -0
- package/src/index.ts +1 -0
- package/src/keys/.spec/api.d.ts +74 -0
- package/src/keys/.spec/architecture.md +13 -0
- package/src/keys/.spec/laws/keys.ts +43 -0
- package/src/keys/.spec/layout.ts +6 -0
- package/src/keys/__tests__/algorithm.test.ts +39 -0
- package/src/keys/__tests__/keys.test.ts +168 -0
- package/src/keys/algorithm.ts +33 -0
- package/src/keys/credential.ts +112 -0
- package/src/keys/index.ts +14 -0
- package/src/keys/pair.ts +219 -0
- package/src/keys/tsconfig.json +6 -0
- package/src/lib/__tests__/admin-target.test.ts +67 -7
- package/src/lib/__tests__/binary.test.ts +2 -3
- package/src/lib/__tests__/command-dx.test.ts +2 -2
- package/src/lib/__tests__/config.test.ts +3 -2
- package/src/lib/__tests__/idp.test.ts +4 -6
- package/src/lib/__tests__/instance-target.test.ts +7 -4
- package/src/lib/__tests__/local-status.test.ts +1 -1
- package/src/lib/__tests__/log.test.ts +31 -0
- package/src/lib/__tests__/meta.test.ts +55 -0
- package/src/lib/__tests__/sdk-deps.test.ts +1 -1
- package/src/lib/__tests__/self.test.ts +8 -230
- package/src/lib/__tests__/use-target.test.ts +1 -1
- package/src/lib/__tests__/view-open-intent.test.ts +78 -104
- package/src/lib/__tests__/view-session.test.ts +99 -0
- package/src/lib/admin-domain.ts +39 -25
- package/src/lib/admin-instance.ts +38 -43
- package/src/lib/admin-target.ts +67 -13
- package/src/lib/binary.ts +13 -34
- package/src/lib/browser.ts +1 -1
- package/src/{kernel → lib}/ca-fetch.ts +35 -27
- package/src/lib/config.ts +1 -1
- package/src/lib/idp-session.ts +1 -1
- package/src/lib/idp.ts +3 -8
- package/src/lib/instance-target.ts +12 -8
- package/src/lib/instance.ts +34 -2
- package/src/lib/local-status.ts +2 -2
- package/src/lib/log.ts +3 -1
- package/src/lib/login-flow.ts +32 -5
- package/src/lib/meta.ts +15 -11
- package/src/lib/provision-instance.ts +4 -12
- package/src/lib/self.ts +5 -147
- package/src/lib/update.ts +1 -1
- package/src/lib/use-target.ts +1 -1
- package/src/lib/validation.ts +2 -2
- package/src/lib/view/open-intent.ts +7 -37
- package/src/lib/view/port-allocation.ts +1 -1
- package/src/lib/view/resolve.ts +52 -45
- package/src/lib/view/server.ts +16 -33
- package/src/lib/view/session.ts +51 -22
- package/src/paths/.spec/api.d.ts +13 -0
- package/src/paths/.spec/architecture.md +5 -0
- package/src/paths/.spec/layout.ts +3 -0
- package/src/paths/index.ts +13 -0
- package/src/program/.spec/api.d.ts +42 -0
- package/src/program/.spec/architecture.md +18 -0
- package/src/program/.spec/laws/program.ts +29 -0
- package/src/program/.spec/layout.ts +14 -0
- package/src/program/__tests__/program.test.ts +359 -0
- package/src/program/build.ts +190 -0
- package/src/program/command.ts +42 -0
- package/src/program/index.ts +2 -0
- package/src/program/options.ts +40 -0
- package/src/{registry.ts → program/registry.ts} +5 -1
- package/src/program/tsconfig.json +6 -0
- package/src/setup/steps/admin.ts +18 -3
- package/src/setup/steps/instance.ts +1 -1
- package/src/state/.spec/api.d.ts +133 -0
- package/src/state/.spec/architecture.md +31 -0
- package/src/state/.spec/capabilities/state.ts +7 -0
- package/src/state/.spec/flows/identity-update.ts +22 -0
- package/src/state/.spec/laws/state.ts +73 -0
- package/src/state/.spec/layout.ts +14 -0
- package/src/state/__tests__/exchange-credentials.test.ts +188 -0
- package/src/state/__tests__/files.test.ts +113 -0
- package/src/state/__tests__/fixtures/identity-transition.ts +37 -0
- package/src/state/__tests__/identities.test.ts +142 -0
- package/src/state/__tests__/paths.test.ts +27 -0
- package/src/state/exchange-credentials.ts +219 -0
- package/src/state/files.ts +129 -0
- package/src/state/identities.ts +236 -0
- package/src/state/index.ts +29 -0
- package/src/state/paths.ts +61 -0
- package/src/state/tsconfig.json +6 -0
- package/src/telemetry/__tests__/redact.test.ts +3 -3
- package/src/telemetry/__tests__/trigger.test.ts +1 -1
- package/src/telemetry/settings.ts +1 -1
- package/src/telemetry/store.ts +1 -1
- package/src/test-utils.ts +1 -1
- package/studio/client/dist/assets/{elk-api-DVw5WDTH.js → elk-api-D0cBetPW.js} +1 -1
- package/studio/client/dist/assets/index-Dspir4w7.js +81 -0
- package/studio/client/dist/assets/{index-Dl709Ra1.js → index-bVD2KJgz.js} +4 -4
- package/studio/client/dist/index.html +1 -1
- package/studio/package.json +10 -1
- package/studio/server/introspect/extractor.ts +1 -1
- package/studio/server/state/views.test.ts +3 -7
- package/studio/server/state/views.ts +23 -30
- package/tsconfig.json +1 -1
- package/viewer/dist/main.js +65 -39
- package/src/command.ts +0 -42
- package/src/commands/__tests__/help-contract.test.ts +0 -164
- package/src/kernel/__tests__/client-owned-lookup.test.ts +0 -51
- package/src/kernel/__tests__/errors.test.ts +0 -43
- package/src/kernel/__tests__/expand.test.ts +0 -123
- package/src/kernel/client.ts +0 -214
- package/src/kernel/expand.ts +0 -192
- package/src/kernel/graph.ts +0 -96
- package/src/kernel/index.ts +0 -29
- package/src/kernel/options.ts +0 -22
- package/src/kernel/types.ts +0 -14
- package/src/lib/__tests__/domain-identity.test.ts +0 -60
- package/src/lib/__tests__/fs-atomic.test.ts +0 -104
- package/src/lib/__tests__/identity.test.ts +0 -79
- package/src/lib/__tests__/keys.test.ts +0 -129
- package/src/lib/domain-identity.ts +0 -49
- package/src/lib/env.ts +0 -49
- package/src/lib/fs-atomic.ts +0 -126
- package/src/lib/identity.ts +0 -256
- package/src/lib/keys.ts +0 -294
- package/src/lib/paths.ts +0 -11
- package/src/program.ts +0 -213
- package/studio/client/dist/assets/index-CTbkDp3z.js +0 -81
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { afterEach, beforeEach, describe, expect, test } from 'bun:test'
|
|
2
|
+
import { mkdtemp, readFile, rm, stat, writeFile } from 'node:fs/promises'
|
|
3
|
+
import { tmpdir } from 'node:os'
|
|
4
|
+
import { join } from 'node:path'
|
|
5
|
+
|
|
6
|
+
import {
|
|
7
|
+
IDENTITY_STORE_VERSION,
|
|
8
|
+
IdentityStateError,
|
|
9
|
+
readIdentityStore,
|
|
10
|
+
updateIdentityStore,
|
|
11
|
+
type IdentityStore,
|
|
12
|
+
} from '../identities'
|
|
13
|
+
|
|
14
|
+
let directory: string
|
|
15
|
+
let path: string
|
|
16
|
+
|
|
17
|
+
const legacy = JSON.stringify(
|
|
18
|
+
{
|
|
19
|
+
default: 'manager',
|
|
20
|
+
identities: {
|
|
21
|
+
manager: {
|
|
22
|
+
subject: 'manager',
|
|
23
|
+
createdAt: '2024-01-01T00:00:00.000Z',
|
|
24
|
+
source: 'key',
|
|
25
|
+
mode: 'local',
|
|
26
|
+
},
|
|
27
|
+
},
|
|
28
|
+
},
|
|
29
|
+
null,
|
|
30
|
+
2,
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
beforeEach(async () => {
|
|
34
|
+
directory = await mkdtemp(join(tmpdir(), 'astrale-identity-state-'))
|
|
35
|
+
path = join(directory, 'identities.json')
|
|
36
|
+
})
|
|
37
|
+
|
|
38
|
+
afterEach(async () => {
|
|
39
|
+
await rm(directory, { recursive: true, force: true })
|
|
40
|
+
})
|
|
41
|
+
|
|
42
|
+
describe('identity state', () => {
|
|
43
|
+
/** @evidence TEST-CLI-STATE-IDENTITY-READ-SAFE */
|
|
44
|
+
test('reads missing, legacy, and current state without writing', async () => {
|
|
45
|
+
const missing = await readIdentityStore({
|
|
46
|
+
path,
|
|
47
|
+
now: () => new Date('2025-01-01T00:00:00.000Z'),
|
|
48
|
+
})
|
|
49
|
+
expect(missing.identities.manager.createdAt).toBe('2025-01-01T00:00:00.000Z')
|
|
50
|
+
await expect(readFile(path, 'utf-8')).rejects.toThrow()
|
|
51
|
+
|
|
52
|
+
await writeFile(path, legacy)
|
|
53
|
+
expect((await readIdentityStore({ path })).default).toBe('manager')
|
|
54
|
+
expect(await readFile(path, 'utf-8')).toBe(legacy)
|
|
55
|
+
await expect(readFile(`${path}.v0.bak`, 'utf-8')).rejects.toThrow()
|
|
56
|
+
|
|
57
|
+
const current = `${JSON.stringify({ version: IDENTITY_STORE_VERSION, ...missing })}\n`
|
|
58
|
+
await writeFile(path, current)
|
|
59
|
+
expect((await readIdentityStore({ path })).identities.manager.subject).toBe('manager')
|
|
60
|
+
expect(await readFile(path, 'utf-8')).toBe(current)
|
|
61
|
+
})
|
|
62
|
+
|
|
63
|
+
/** @evidence TEST-CLI-STATE-IDENTITY-FAILS-CLOSED */
|
|
64
|
+
test('rejects malformed and unsupported state without replacing it', async () => {
|
|
65
|
+
for (const raw of ['{', JSON.stringify({ version: 2, default: 'manager', identities: {} })]) {
|
|
66
|
+
await writeFile(path, raw)
|
|
67
|
+
const error = await readIdentityStore({ path }).catch((caught) => caught)
|
|
68
|
+
expect(error).toBeInstanceOf(IdentityStateError)
|
|
69
|
+
expect((error as IdentityStateError).code).toBe(
|
|
70
|
+
raw === '{' ? 'IDENTITY_STATE_INVALID' : 'IDENTITY_STATE_VERSION_UNSUPPORTED',
|
|
71
|
+
)
|
|
72
|
+
expect(await readFile(path, 'utf-8')).toBe(raw)
|
|
73
|
+
}
|
|
74
|
+
})
|
|
75
|
+
|
|
76
|
+
/** @evidence TEST-CLI-STATE-IDENTITY-MIGRATES */
|
|
77
|
+
test('backs up exact legacy bytes before the first V1 mutation', async () => {
|
|
78
|
+
await writeFile(path, legacy)
|
|
79
|
+
|
|
80
|
+
await updateIdentityStore(
|
|
81
|
+
(current) => ({ next: { ...current, default: 'alice' }, value: undefined }),
|
|
82
|
+
{ path },
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
expect(await readFile(`${path}.v0.bak`, 'utf-8')).toBe(legacy)
|
|
86
|
+
expect((await stat(`${path}.v0.bak`)).mode & 0o777).toBe(0o600)
|
|
87
|
+
const written = JSON.parse(await readFile(path, 'utf-8')) as {
|
|
88
|
+
version: number
|
|
89
|
+
default: string
|
|
90
|
+
}
|
|
91
|
+
expect(written).toMatchObject({ version: 1, default: 'alice' })
|
|
92
|
+
expect((await stat(path)).mode & 0o777).toBe(0o600)
|
|
93
|
+
})
|
|
94
|
+
|
|
95
|
+
/** @evidence TEST-CLI-STATE-IDENTITY-CONCURRENT */
|
|
96
|
+
test('retains concurrent selection and registration from separate processes', async () => {
|
|
97
|
+
const alice = {
|
|
98
|
+
subject: 'alice',
|
|
99
|
+
createdAt: '2025-01-01T00:00:00.000Z',
|
|
100
|
+
source: 'key' as const,
|
|
101
|
+
mode: 'local' as const,
|
|
102
|
+
}
|
|
103
|
+
const bob = { ...alice, subject: 'bob' }
|
|
104
|
+
await writeFile(
|
|
105
|
+
path,
|
|
106
|
+
JSON.stringify({
|
|
107
|
+
version: IDENTITY_STORE_VERSION,
|
|
108
|
+
default: 'manager',
|
|
109
|
+
identities: {
|
|
110
|
+
manager: { ...alice, subject: 'manager' },
|
|
111
|
+
alice,
|
|
112
|
+
bob,
|
|
113
|
+
},
|
|
114
|
+
}),
|
|
115
|
+
)
|
|
116
|
+
const fixture = join(import.meta.dir, 'fixtures', 'identity-transition.ts')
|
|
117
|
+
const commands = [
|
|
118
|
+
['default', 'alice'],
|
|
119
|
+
...Array.from({ length: 8 }, (_, index) => ['registration', 'bob', `instance-${index}`]),
|
|
120
|
+
]
|
|
121
|
+
const processes = commands.map((args) =>
|
|
122
|
+
Bun.spawn({
|
|
123
|
+
cmd: ['bun', fixture, ...args],
|
|
124
|
+
env: { ...process.env, ASTRALE_HOME: directory },
|
|
125
|
+
stdout: 'pipe',
|
|
126
|
+
stderr: 'pipe',
|
|
127
|
+
}),
|
|
128
|
+
)
|
|
129
|
+
const outcomes = await Promise.all(
|
|
130
|
+
processes.map(async (process) => ({
|
|
131
|
+
code: await process.exited,
|
|
132
|
+
stderr: await new Response(process.stderr).text(),
|
|
133
|
+
})),
|
|
134
|
+
)
|
|
135
|
+
expect(outcomes).toEqual(outcomes.map(() => ({ code: 0, stderr: '' })))
|
|
136
|
+
|
|
137
|
+
const store: IdentityStore = await readIdentityStore({ path })
|
|
138
|
+
expect(store.default).toBe('alice')
|
|
139
|
+
expect(Object.keys(store.identities.bob.registrations ?? {})).toHaveLength(8)
|
|
140
|
+
await expect(readFile(`${path}.lock`, 'utf-8')).rejects.toThrow()
|
|
141
|
+
})
|
|
142
|
+
})
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { describe, expect, test } from 'bun:test'
|
|
2
|
+
import { join } from 'node:path'
|
|
3
|
+
|
|
4
|
+
import { createPaths } from '../paths'
|
|
5
|
+
|
|
6
|
+
describe('state paths', () => {
|
|
7
|
+
/** @evidence TEST-CLI-STATE-PATHS-CAPTURED */
|
|
8
|
+
test('captures explicit and environment coordinates once', () => {
|
|
9
|
+
const environment: Record<string, string | undefined> = {
|
|
10
|
+
ASTRALE_HOME: '/environment/home',
|
|
11
|
+
ASTRALE_KEYS_DIR: '/environment/keys',
|
|
12
|
+
ASTRALE_DATA_DIR: '/environment/data',
|
|
13
|
+
}
|
|
14
|
+
const explicit = createPaths('/explicit/home', environment)
|
|
15
|
+
const inherited = createPaths(undefined, environment)
|
|
16
|
+
|
|
17
|
+
environment.ASTRALE_HOME = '/changed/home'
|
|
18
|
+
environment.ASTRALE_KEYS_DIR = '/changed/keys'
|
|
19
|
+
|
|
20
|
+
expect(explicit.home).toBe('/explicit/home')
|
|
21
|
+
expect(explicit.keys).toBe('/environment/keys')
|
|
22
|
+
expect(explicit.config).toBe(join('/explicit/home', 'config.json'))
|
|
23
|
+
expect(inherited.home).toBe('/environment/home')
|
|
24
|
+
expect(inherited.keys).toBe('/environment/keys')
|
|
25
|
+
expect(Object.isFrozen(explicit)).toBe(true)
|
|
26
|
+
})
|
|
27
|
+
})
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
import { credential, grant } from '@astrale-os/sdk/auth'
|
|
2
|
+
import { chmod, mkdir, readFile } from 'node:fs/promises'
|
|
3
|
+
import { dirname } from 'node:path'
|
|
4
|
+
|
|
5
|
+
import { atomicWrite, withFileLock } from './files'
|
|
6
|
+
import { EXCHANGE_CREDENTIALS_PATH } from './paths'
|
|
7
|
+
|
|
8
|
+
const VERSION = 1
|
|
9
|
+
const MINIMUM_REMAINING_SECONDS = 30
|
|
10
|
+
|
|
11
|
+
export namespace exchange {
|
|
12
|
+
export interface Artifact {
|
|
13
|
+
readonly version: 1
|
|
14
|
+
readonly entries: Record<string, Entry>
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface Key {
|
|
18
|
+
readonly kernelIssuer: string
|
|
19
|
+
readonly domainIssuer: string
|
|
20
|
+
readonly user: string
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export interface Entry {
|
|
24
|
+
readonly credential: string
|
|
25
|
+
readonly expiresAt: number
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export class ExchangeCredentialCache {
|
|
30
|
+
private readonly refreshing = new Map<string, Promise<string>>()
|
|
31
|
+
|
|
32
|
+
constructor(private readonly path = EXCHANGE_CREDENTIALS_PATH) {}
|
|
33
|
+
|
|
34
|
+
getOrRefresh(
|
|
35
|
+
key: exchange.Key,
|
|
36
|
+
refresh: () => Promise<exchange.Entry>,
|
|
37
|
+
now = () => Math.floor(Date.now() / 1_000),
|
|
38
|
+
): Promise<string> {
|
|
39
|
+
const encoded = encodeKey(key)
|
|
40
|
+
const current = this.refreshing.get(encoded)
|
|
41
|
+
if (current !== undefined) return current
|
|
42
|
+
const pending = this.getOrRefreshOnce(key, encoded, refresh, now).finally(() => {
|
|
43
|
+
this.refreshing.delete(encoded)
|
|
44
|
+
})
|
|
45
|
+
this.refreshing.set(encoded, pending)
|
|
46
|
+
return pending
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
async deleteKernel(kernelIssuer: string): Promise<void> {
|
|
50
|
+
await this.transition((store) => {
|
|
51
|
+
for (const encoded of Object.keys(store.entries)) {
|
|
52
|
+
const key = decodeKey(encoded)
|
|
53
|
+
if (key === undefined || key.kernelIssuer === kernelIssuer) delete store.entries[encoded]
|
|
54
|
+
}
|
|
55
|
+
})
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
async clear(): Promise<void> {
|
|
59
|
+
await this.transition((store) => {
|
|
60
|
+
for (const encoded of Object.keys(store.entries)) delete store.entries[encoded]
|
|
61
|
+
})
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
private async getOrRefreshOnce(
|
|
65
|
+
key: exchange.Key,
|
|
66
|
+
encoded: string,
|
|
67
|
+
refresh: () => Promise<exchange.Entry>,
|
|
68
|
+
now: () => number,
|
|
69
|
+
): Promise<string> {
|
|
70
|
+
return withFileLock(`${this.path}.lock`, async () => {
|
|
71
|
+
await ensurePrivateDirectory(this.path)
|
|
72
|
+
const store = await readStore(this.path)
|
|
73
|
+
const changed = scrub(store, now())
|
|
74
|
+
const cached = store.entries[encoded]
|
|
75
|
+
if (cached !== undefined && validEntry(key, cached, now())) {
|
|
76
|
+
if (changed) await writeStore(this.path, store)
|
|
77
|
+
return cached.credential
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
const next = await refresh()
|
|
81
|
+
if (!validEntry(key, next, now(), 1)) {
|
|
82
|
+
throw new Error('Token exchange returned a credential inconsistent with its cache key.')
|
|
83
|
+
}
|
|
84
|
+
store.entries[encoded] = Object.freeze({ ...next })
|
|
85
|
+
await writeStore(this.path, store)
|
|
86
|
+
return next.credential
|
|
87
|
+
})
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
private async transition(change: (store: exchange.Artifact) => void): Promise<void> {
|
|
91
|
+
await withFileLock(`${this.path}.lock`, async () => {
|
|
92
|
+
await ensurePrivateDirectory(this.path)
|
|
93
|
+
const store = await readStore(this.path)
|
|
94
|
+
change(store)
|
|
95
|
+
await writeStore(this.path, store)
|
|
96
|
+
})
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
async function readStore(path: string): Promise<exchange.Artifact> {
|
|
101
|
+
try {
|
|
102
|
+
const input = JSON.parse(await readFile(path, 'utf8')) as unknown
|
|
103
|
+
if (input === null || typeof input !== 'object' || Array.isArray(input)) return emptyStore()
|
|
104
|
+
const value = input as Record<string, unknown>
|
|
105
|
+
if (
|
|
106
|
+
value.version !== VERSION ||
|
|
107
|
+
value.entries === null ||
|
|
108
|
+
typeof value.entries !== 'object' ||
|
|
109
|
+
Array.isArray(value.entries)
|
|
110
|
+
) {
|
|
111
|
+
return emptyStore()
|
|
112
|
+
}
|
|
113
|
+
return { version: VERSION, entries: { ...(value.entries as Record<string, exchange.Entry>) } }
|
|
114
|
+
} catch {
|
|
115
|
+
return emptyStore()
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
function emptyStore(): exchange.Artifact {
|
|
120
|
+
return { version: VERSION, entries: {} }
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
async function writeStore(path: string, store: exchange.Artifact): Promise<void> {
|
|
124
|
+
await atomicWrite(path, `${JSON.stringify(store, null, 2)}\n`)
|
|
125
|
+
await chmod(path, 0o600)
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
async function ensurePrivateDirectory(path: string): Promise<void> {
|
|
129
|
+
const directory = dirname(path)
|
|
130
|
+
await mkdir(directory, { recursive: true, mode: 0o700 })
|
|
131
|
+
await chmod(directory, 0o700)
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
function validEntry(
|
|
135
|
+
key: exchange.Key,
|
|
136
|
+
entry: exchange.Entry,
|
|
137
|
+
now: number,
|
|
138
|
+
minimumRemaining = MINIMUM_REMAINING_SECONDS,
|
|
139
|
+
): boolean {
|
|
140
|
+
if (
|
|
141
|
+
entry === null ||
|
|
142
|
+
typeof entry !== 'object' ||
|
|
143
|
+
Reflect.ownKeys(entry).length !== 2 ||
|
|
144
|
+
typeof entry.credential !== 'string' ||
|
|
145
|
+
entry.credential.length === 0 ||
|
|
146
|
+
!Number.isSafeInteger(entry.expiresAt) ||
|
|
147
|
+
entry.expiresAt - now < minimumRemaining
|
|
148
|
+
) {
|
|
149
|
+
return false
|
|
150
|
+
}
|
|
151
|
+
try {
|
|
152
|
+
const inspected = credential.inspect(entry.credential)
|
|
153
|
+
const carried = grant.acceptUnresolved(inspected.claims.grant).expr
|
|
154
|
+
if (
|
|
155
|
+
carried.kind !== 'identity' ||
|
|
156
|
+
!('credential' in carried) ||
|
|
157
|
+
typeof carried.credential !== 'string'
|
|
158
|
+
) {
|
|
159
|
+
return false
|
|
160
|
+
}
|
|
161
|
+
const proof = credential.inspect(carried.credential)
|
|
162
|
+
const issued = proof.claims.delegation
|
|
163
|
+
if (
|
|
164
|
+
issued === null ||
|
|
165
|
+
typeof issued !== 'object' ||
|
|
166
|
+
Array.isArray(issued) ||
|
|
167
|
+
Reflect.ownKeys(issued).length !== 2 ||
|
|
168
|
+
!Object.hasOwn(issued, 'v') ||
|
|
169
|
+
!Object.hasOwn(issued, 'expr') ||
|
|
170
|
+
Reflect.get(issued, 'v') !== 1
|
|
171
|
+
) {
|
|
172
|
+
return false
|
|
173
|
+
}
|
|
174
|
+
grant.accept({ expr: Reflect.get(issued, 'expr') })
|
|
175
|
+
return (
|
|
176
|
+
inspected.iss === key.domainIssuer &&
|
|
177
|
+
inspected.aud === key.kernelIssuer &&
|
|
178
|
+
inspected.claims.exp === entry.expiresAt &&
|
|
179
|
+
!Object.hasOwn(inspected.claims, 'delegation') &&
|
|
180
|
+
proof.iss === key.kernelIssuer &&
|
|
181
|
+
proof.sub === key.user &&
|
|
182
|
+
proof.aud === key.kernelIssuer
|
|
183
|
+
)
|
|
184
|
+
} catch {
|
|
185
|
+
return false
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
function encodeKey(key: exchange.Key): string {
|
|
190
|
+
return JSON.stringify([key.kernelIssuer, key.domainIssuer, key.user])
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
function decodeKey(input: string): exchange.Key | undefined {
|
|
194
|
+
try {
|
|
195
|
+
const value = JSON.parse(input) as unknown
|
|
196
|
+
if (
|
|
197
|
+
!Array.isArray(value) ||
|
|
198
|
+
value.length !== 3 ||
|
|
199
|
+
value.some((part) => typeof part !== 'string' || part.length === 0)
|
|
200
|
+
) {
|
|
201
|
+
return undefined
|
|
202
|
+
}
|
|
203
|
+
return { kernelIssuer: value[0]!, domainIssuer: value[1]!, user: value[2]! }
|
|
204
|
+
} catch {
|
|
205
|
+
return undefined
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
function scrub(store: Pick<exchange.Artifact, 'entries'>, now: number): boolean {
|
|
210
|
+
let changed = false
|
|
211
|
+
for (const [encoded, entry] of Object.entries(store.entries)) {
|
|
212
|
+
const key = decodeKey(encoded)
|
|
213
|
+
if (key === undefined || !validEntry(key, entry, now, 1)) {
|
|
214
|
+
delete store.entries[encoded]
|
|
215
|
+
changed = true
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
return changed
|
|
219
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { randomUUID } from 'node:crypto'
|
|
2
|
+
import { mkdir, open, readFile, rename, stat, unlink } from 'node:fs/promises'
|
|
3
|
+
import { dirname } from 'node:path'
|
|
4
|
+
|
|
5
|
+
/** Atomically publish one complete private state file through a same-directory temporary file. */
|
|
6
|
+
export async function atomicWrite(path: string, data: string): Promise<void> {
|
|
7
|
+
const directory = dirname(path)
|
|
8
|
+
const temporary = `${path}.${randomUUID()}.tmp`
|
|
9
|
+
await mkdir(directory, { recursive: true })
|
|
10
|
+
|
|
11
|
+
let handle: Awaited<ReturnType<typeof open>> | undefined
|
|
12
|
+
try {
|
|
13
|
+
handle = await open(temporary, 'wx', 0o600)
|
|
14
|
+
await handle.writeFile(data)
|
|
15
|
+
await handle.sync()
|
|
16
|
+
await handle.close()
|
|
17
|
+
handle = undefined
|
|
18
|
+
await rename(temporary, path)
|
|
19
|
+
|
|
20
|
+
const directoryHandle = await open(directory, 'r')
|
|
21
|
+
try {
|
|
22
|
+
await directoryHandle.sync()
|
|
23
|
+
} finally {
|
|
24
|
+
await directoryHandle.close()
|
|
25
|
+
}
|
|
26
|
+
} catch (error) {
|
|
27
|
+
await handle?.close().catch(() => undefined)
|
|
28
|
+
await unlink(temporary).catch(() => undefined)
|
|
29
|
+
throw error
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface FileLockOptions {
|
|
34
|
+
readonly pollIntervalMs?: number
|
|
35
|
+
readonly staleAfterMs?: number
|
|
36
|
+
readonly timeoutMs?: number
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
/** Run one transition under a bounded cross-process create-exclusive lock. */
|
|
40
|
+
export async function withFileLock<Value>(
|
|
41
|
+
lockPath: string,
|
|
42
|
+
transition: () => Promise<Value>,
|
|
43
|
+
options: FileLockOptions = {},
|
|
44
|
+
): Promise<Value> {
|
|
45
|
+
const pollIntervalMs = options.pollIntervalMs ?? 100
|
|
46
|
+
const staleAfterMs = options.staleAfterMs ?? 30_000
|
|
47
|
+
const timeoutMs = options.timeoutMs ?? 60_000
|
|
48
|
+
const deadline = Date.now() + timeoutMs
|
|
49
|
+
|
|
50
|
+
for (;;) {
|
|
51
|
+
if (await tryAcquire(lockPath)) {
|
|
52
|
+
try {
|
|
53
|
+
return await transition()
|
|
54
|
+
} finally {
|
|
55
|
+
await unlink(lockPath).catch(() => undefined)
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
if (await takeoverIfAbandoned(lockPath, staleAfterMs)) continue
|
|
59
|
+
if (Date.now() >= deadline) {
|
|
60
|
+
throw new Error(`Timed out after ${timeoutMs}ms waiting for lock ${lockPath}`)
|
|
61
|
+
}
|
|
62
|
+
await sleep(pollIntervalMs)
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
async function tryAcquire(lockPath: string): Promise<boolean> {
|
|
67
|
+
try {
|
|
68
|
+
const handle = await open(lockPath, 'wx', 0o600)
|
|
69
|
+
try {
|
|
70
|
+
await handle.writeFile(
|
|
71
|
+
JSON.stringify({ pid: process.pid, createdAt: new Date().toISOString() }),
|
|
72
|
+
)
|
|
73
|
+
await handle.sync()
|
|
74
|
+
} finally {
|
|
75
|
+
await handle.close()
|
|
76
|
+
}
|
|
77
|
+
return true
|
|
78
|
+
} catch (error) {
|
|
79
|
+
const code = (error as { code?: string }).code
|
|
80
|
+
if (code === 'EEXIST') return false
|
|
81
|
+
if (code === 'ENOENT') {
|
|
82
|
+
await mkdir(dirname(lockPath), { recursive: true })
|
|
83
|
+
return tryAcquire(lockPath)
|
|
84
|
+
}
|
|
85
|
+
throw error
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
async function takeoverIfAbandoned(lockPath: string, staleAfterMs: number): Promise<boolean> {
|
|
90
|
+
try {
|
|
91
|
+
const info = await stat(lockPath)
|
|
92
|
+
if (Date.now() - info.mtimeMs > staleAfterMs) {
|
|
93
|
+
await unlink(lockPath).catch(() => undefined)
|
|
94
|
+
return true
|
|
95
|
+
}
|
|
96
|
+
} catch (error) {
|
|
97
|
+
if ((error as { code?: string }).code === 'ENOENT') return true
|
|
98
|
+
throw error
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
const pid = await readLockPid(lockPath)
|
|
102
|
+
if (pid !== undefined && pid !== process.pid && !isPidAlive(pid)) {
|
|
103
|
+
await unlink(lockPath).catch(() => undefined)
|
|
104
|
+
return true
|
|
105
|
+
}
|
|
106
|
+
return false
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
async function readLockPid(lockPath: string): Promise<number | undefined> {
|
|
110
|
+
try {
|
|
111
|
+
const value = (JSON.parse(await readFile(lockPath, 'utf-8')) as { pid?: unknown }).pid
|
|
112
|
+
return typeof value === 'number' ? value : undefined
|
|
113
|
+
} catch {
|
|
114
|
+
return undefined
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
function isPidAlive(pid: number): boolean {
|
|
119
|
+
try {
|
|
120
|
+
process.kill(pid, 0)
|
|
121
|
+
return true
|
|
122
|
+
} catch (error) {
|
|
123
|
+
return (error as { code?: string }).code === 'EPERM'
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
function sleep(milliseconds: number): Promise<void> {
|
|
128
|
+
return new Promise((resolve) => setTimeout(resolve, milliseconds))
|
|
129
|
+
}
|