惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
U
Unit 42
IT之家
IT之家
Y
Y Combinator Blog
T
Tailwind CSS Blog
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
I
InfoQ
J
Java Code Geeks
F
Fortinet All Blogs
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
H
Hackread – Cybersecurity News, Data Breaches, AI and More
人人都是产品经理
人人都是产品经理
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
GbyAI
GbyAI
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
L
LangChain Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test(scripts): route docs i18n and k8s metadata · opencla...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
1+

// K8s manifest tests cover the deployable Kubernetes bundle shape.

2+

import { readFileSync } from "node:fs";

3+

import { describe, expect, it } from "vitest";

4+

import { parse } from "yaml";

5+6+

type Manifest = Record<string, unknown>;

7+8+

function readManifest(name: string): Manifest {

9+

const parsed = parse(readFileSync(`scripts/k8s/manifests/${name}`, "utf8")) as unknown;

10+

expect(parsed).toBeTypeOf("object");

11+

expect(parsed).not.toBeNull();

12+

expect(Array.isArray(parsed)).toBe(false);

13+

return parsed as Manifest;

14+

}

15+16+

function asRecord(value: unknown, label: string): Record<string, unknown> {

17+

expect(value, label).toBeTypeOf("object");

18+

expect(value, label).not.toBeNull();

19+

expect(Array.isArray(value), label).toBe(false);

20+

return value as Record<string, unknown>;

21+

}

22+23+

function asRecords(value: unknown, label: string): Record<string, unknown>[] {

24+

expect(Array.isArray(value), label).toBe(true);

25+

return value as Record<string, unknown>[];

26+

}

27+28+

function asStrings(value: unknown, label: string): string[] {

29+

expect(Array.isArray(value), label).toBe(true);

30+

for (const entry of value as unknown[]) {

31+

expect(entry, label).toBeTypeOf("string");

32+

}

33+

return value as string[];

34+

}

35+36+

function findNamed(records: Record<string, unknown>[], name: string): Record<string, unknown> {

37+

const record = records.find((entry) => entry.name === name);

38+

expect(record, name).toBeDefined();

39+

return record as Record<string, unknown>;

40+

}

41+42+

describe("k8s manifests", () => {

43+

it("keeps kustomization resources aligned with shipped manifests", () => {

44+

const kustomization = readManifest("kustomization.yaml");

45+46+

expect(kustomization).toMatchObject({

47+

apiVersion: "kustomize.config.k8s.io/v1beta1",

48+

kind: "Kustomization",

49+

});

50+

expect(asStrings(kustomization.resources, "kustomization resources").sort()).toEqual([

51+

"configmap.yaml",

52+

"deployment.yaml",

53+

"pvc.yaml",

54+

"service.yaml",

55+

]);

56+

});

57+58+

it("keeps gateway service selectors and ports aligned with deployment labels", () => {

59+

const deployment = readManifest("deployment.yaml");

60+

const service = readManifest("service.yaml");

61+

const deploymentSpec = asRecord(deployment.spec, "deployment spec");

62+

const selector = asRecord(deploymentSpec.selector, "deployment selector");

63+

const matchLabels = asRecord(selector.matchLabels, "deployment match labels");

64+

const template = asRecord(deploymentSpec.template, "deployment template");

65+

const templateMetadata = asRecord(template.metadata, "deployment template metadata");

66+

const templateLabels = asRecord(templateMetadata.labels, "deployment template labels");

67+

const serviceSpec = asRecord(service.spec, "service spec");

68+

const serviceSelector = asRecord(serviceSpec.selector, "service selector");

69+

const ports = asRecords(serviceSpec.ports, "service ports");

70+71+

expect(deployment).toMatchObject({

72+

apiVersion: "apps/v1",

73+

kind: "Deployment",

74+

metadata: { name: "openclaw" },

75+

});

76+

expect(matchLabels).toEqual({ app: "openclaw" });

77+

expect(templateLabels).toMatchObject(matchLabels);

78+

expect(serviceSelector).toEqual(matchLabels);

79+

expect(ports).toContainEqual({

80+

name: "gateway",

81+

port: 18789,

82+

protocol: "TCP",

83+

targetPort: 18789,

84+

});

85+

});

86+87+

it("keeps deployment mounts, secrets, and security posture deployable", () => {

88+

const deployment = readManifest("deployment.yaml");

89+

const spec = asRecord(deployment.spec, "deployment spec");

90+

const template = asRecord(spec.template, "deployment template");

91+

const podSpec = asRecord(template.spec, "pod spec");

92+

const containers = asRecords(podSpec.containers, "containers");

93+

const gateway = findNamed(containers, "gateway");

94+

const env = asRecords(gateway.env, "gateway env");

95+

const volumes = asRecords(podSpec.volumes, "pod volumes");

96+

const securityContext = asRecord(gateway.securityContext, "gateway security context");

97+98+

expect(gateway.command).toEqual(["node", "/app/dist/index.js", "gateway", "run"]);

99+

expect(findNamed(env, "HOME")).toMatchObject({ value: "/home/node" });

100+

expect(findNamed(env, "OPENCLAW_CONFIG_DIR")).toMatchObject({ value: "/home/node/.openclaw" });

101+

expect(findNamed(env, "OPENCLAW_GATEWAY_TOKEN")).toMatchObject({

102+

valueFrom: { secretKeyRef: { key: "OPENCLAW_GATEWAY_TOKEN", name: "openclaw-secrets" } },

103+

});

104+

expect(findNamed(volumes, "openclaw-home")).toMatchObject({

105+

persistentVolumeClaim: { claimName: "openclaw-home-pvc" },

106+

});

107+

expect(findNamed(volumes, "config")).toMatchObject({ configMap: { name: "openclaw-config" } });

108+

expect(securityContext).toMatchObject({

109+

allowPrivilegeEscalation: false,

110+

readOnlyRootFilesystem: true,

111+

runAsNonRoot: true,

112+

});

113+

});

114+115+

it("keeps config and persistence manifests aligned with the gateway", () => {

116+

const configMap = readManifest("configmap.yaml");

117+

const pvc = readManifest("pvc.yaml");

118+

const data = asRecord(configMap.data, "configmap data");

119+

const config = JSON.parse(String(data["openclaw.json"])) as Record<string, unknown>;

120+

const gateway = asRecord(config.gateway, "openclaw config gateway");

121+

const auth = asRecord(gateway.auth, "openclaw config auth");

122+

const agents = asRecord(config.agents, "openclaw config agents");

123+

const defaults = asRecord(agents.defaults, "openclaw config agent defaults");

124+

const pvcSpec = asRecord(pvc.spec, "pvc spec");

125+

const resources = asRecord(pvcSpec.resources, "pvc resources");

126+

const requests = asRecord(resources.requests, "pvc resource requests");

127+128+

expect(configMap).toMatchObject({

129+

apiVersion: "v1",

130+

kind: "ConfigMap",

131+

metadata: { name: "openclaw-config" },

132+

});

133+

expect(gateway).toMatchObject({ mode: "local", port: 18789 });

134+

expect(auth).toMatchObject({ mode: "token" });

135+

expect(defaults).toMatchObject({ workspace: "~/.openclaw/workspace" });

136+

expect(data["AGENTS.md"]).toContain("OpenClaw Assistant");

137+

expect(pvc).toMatchObject({

138+

apiVersion: "v1",

139+

kind: "PersistentVolumeClaim",

140+

metadata: { name: "openclaw-home-pvc" },

141+

});

142+

expect(requests).toMatchObject({ storage: "10Gi" });

143+

});

144+

});