Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
27 lines
1.7 KiB
JavaScript
27 lines
1.7 KiB
JavaScript
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import test from 'node:test';
|
|
import assert from 'node:assert/strict';
|
|
|
|
const repoRoot = path.resolve(path.join(import.meta.dirname, '..', '..', '..', '..'));
|
|
|
|
test('F019 new-install primary host path is Kubernetes bootstrap, not legacy host API service', () => {
|
|
const service = fs.readFileSync(path.join(repoRoot, 'ee', 'appliance', 'systemd', 'alga-appliance-bootstrap.service'), 'utf8');
|
|
const readme = fs.readFileSync(path.join(repoRoot, 'ee', 'appliance', 'systemd', 'README.md'), 'utf8');
|
|
|
|
assert.match(service, /Description=Alga Appliance Kubernetes Control Plane Bootstrap/);
|
|
assert.match(service, /ExecStartPre=\/usr\/bin\/env node \/opt\/alga-appliance\/host-service\/init-token\.mjs/);
|
|
assert.doesNotMatch(service, /init-admin-credential/);
|
|
assert.match(service, /ExecStart=\/opt\/alga-appliance\/scripts\/bootstrap-control-plane\.sh/);
|
|
assert.match(service, /RemainAfterExit=yes/);
|
|
|
|
const tokenIndex = service.indexOf('ExecStartPre=/usr/bin/env node /opt/alga-appliance/host-service/init-token.mjs');
|
|
const bootstrapIndex = service.indexOf('ExecStart=/opt/alga-appliance/scripts/bootstrap-control-plane.sh');
|
|
const consoleIndex = service.indexOf('ExecStartPost=/usr/bin/env node /opt/alga-appliance/host-service/console.mjs');
|
|
assert.ok(tokenIndex !== -1 && bootstrapIndex > tokenIndex && consoleIndex > bootstrapIndex,
|
|
'bootstrap service must initialize the token before rendering the console banner');
|
|
assert.doesNotMatch(service, /host-service\/server\.mjs/);
|
|
assert.doesNotMatch(service, /ALGA_APPLIANCE_STATE_FILE/);
|
|
assert.match(readme, /legacy host API service is not part of the new-install primary path/);
|
|
});
|