Vendor OpenClaw source as Adolf fork baseline
Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled

Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11),
free to diverge. Tree copied sans upstream .git; upstream remote added for
future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19.
Preserves docs/ARCHITECTURE.md.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
This commit is contained in:
2026-07-05 09:36:54 +00:00
parent 3216769225
commit bedb527145
21108 changed files with 6010766 additions and 0 deletions

View File

@@ -0,0 +1,291 @@
// Msteams tests cover pending uploads fs plugin behavior.
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import { resetPluginStateStoreForTests } from "openclaw/plugin-sdk/plugin-state-test-runtime";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import { prepareFileConsentActivityFs } from "./file-consent-helpers.js";
import {
getPendingUploadFs,
removePendingUploadFs,
setPendingUploadActivityIdFs,
storePendingUploadFs,
} from "./pending-uploads-fs.js";
import { clearPendingUploads } from "./pending-uploads.js";
import { setMSTeamsRuntime } from "./runtime.js";
import { msteamsRuntimeStub } from "./test-support/runtime.js";
// Track temp dirs created by each test so afterEach can clean them up.
const createdTempDirs: string[] = [];
async function makeTempStateDir(): Promise<string> {
const dir = await fs.promises.mkdtemp(path.join(os.tmpdir(), "openclaw-msteams-pending-"));
createdTempDirs.push(dir);
return dir;
}
function makeEnv(stateDir: string): NodeJS.ProcessEnv {
return { ...process.env, OPENCLAW_STATE_DIR: stateDir };
}
async function requirePendingUpload(id: string, env: NodeJS.ProcessEnv) {
const upload = await getPendingUploadFs(id, { env });
if (!upload) {
throw new Error(`expected pending upload ${id}`);
}
return upload;
}
async function cleanupTempDirs(): Promise<void> {
while (createdTempDirs.length > 0) {
const dir = createdTempDirs.pop();
if (!dir) {
continue;
}
try {
await fs.promises.rm(dir, { recursive: true, force: true });
} catch {
// tmp dir may already be gone
}
}
}
describe("msteams pending uploads (fs-backed)", () => {
beforeEach(() => {
resetPluginStateStoreForTests();
setMSTeamsRuntime(msteamsRuntimeStub);
clearPendingUploads();
});
afterEach(async () => {
await cleanupTempDirs();
vi.useRealTimers();
});
it("stores and retrieves a pending upload by id", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
await storePendingUploadFs(
{
id: "upload-1",
buffer: Buffer.from("hello world"),
filename: "greeting.txt",
contentType: "text/plain",
conversationId: "19:conv@thread.v2",
},
{ env },
);
const loaded = await requirePendingUpload("upload-1", env);
expect(loaded.id).toBe("upload-1");
expect(loaded.filename).toBe("greeting.txt");
expect(loaded.contentType).toBe("text/plain");
expect(loaded.conversationId).toBe("19:conv@thread.v2");
expect(loaded.buffer.toString("utf8")).toBe("hello world");
});
it("returns undefined for missing and undefined ids", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
expect(await getPendingUploadFs(undefined, { env })).toBeUndefined();
expect(await getPendingUploadFs("does-not-exist", { env })).toBeUndefined();
});
it("persists so another reader finds the entry (simulates cross-process)", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
// First "process": writer
await storePendingUploadFs(
{
id: "upload-x",
buffer: Buffer.from("top secret"),
filename: "secret.bin",
conversationId: "19:conv@thread.v2",
},
{ env },
);
// Confirm SQLite-backed plugin state was created instead of a new JSON store.
const storePath = path.join(stateDir, "msteams-pending-uploads.json");
await expect(fs.promises.access(storePath)).rejects.toThrow();
await expect(
fs.promises.access(path.join(stateDir, "state", "openclaw.sqlite")),
).resolves.toBeUndefined();
// Second "process": reader using the same state dir
const reader = await getPendingUploadFs("upload-x", { env });
expect(reader?.buffer.toString("utf8")).toBe("top secret");
expect(reader?.filename).toBe("secret.bin");
});
it("stores multi-megabyte uploads by chunking payload bytes", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
const payload = Buffer.alloc(6 * 1024 * 1024, 7);
await storePendingUploadFs(
{
id: "upload-large",
buffer: payload,
filename: "large.bin",
conversationId: "19:conv@thread.v2",
},
{ env },
);
const reader = await getPendingUploadFs("upload-large", { env });
expect(reader?.buffer.equals(payload)).toBe(true);
expect(reader?.filename).toBe("large.bin");
});
it("removes persisted entries", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
await storePendingUploadFs(
{
id: "upload-rm",
buffer: Buffer.from("x"),
filename: "rm.bin",
conversationId: "19:conv@thread.v2",
},
{ env },
);
const loaded = await requirePendingUpload("upload-rm", env);
expect(loaded.id).toBe("upload-rm");
expect(loaded.filename).toBe("rm.bin");
expect(loaded.contentType).toBeUndefined();
expect(loaded.conversationId).toBe("19:conv@thread.v2");
expect(loaded.consentCardActivityId).toBeUndefined();
expect(loaded.buffer.toString("utf8")).toBe("x");
expect(Number.isFinite(loaded.createdAt)).toBe(true);
await removePendingUploadFs("upload-rm", { env });
expect(await getPendingUploadFs("upload-rm", { env })).toBeUndefined();
});
it("remove is a no-op for unknown ids", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
await expect(removePendingUploadFs("never-existed", { env })).resolves.toBeUndefined();
await expect(removePendingUploadFs(undefined, { env })).resolves.toBeUndefined();
});
it("expires entries past their ttl on read", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
const now = new Date("2026-05-08T00:00:00.000Z");
vi.useFakeTimers({ now });
await storePendingUploadFs(
{
id: "upload-old",
buffer: Buffer.from("stale"),
filename: "stale.txt",
conversationId: "19:conv@thread.v2",
},
{ env, ttlMs: 1 },
);
vi.setSystemTime(now.getTime() + 2);
expect(await getPendingUploadFs("upload-old", { env, ttlMs: 1 })).toBeUndefined();
});
it("updates consent card activity id on an existing entry", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
await storePendingUploadFs(
{
id: "upload-a",
buffer: Buffer.from("payload"),
filename: "f.txt",
conversationId: "19:conv@thread.v2",
},
{ env },
);
await setPendingUploadActivityIdFs("upload-a", "activity-xyz", { env });
const loaded = await getPendingUploadFs("upload-a", { env });
expect(loaded?.consentCardActivityId).toBe("activity-xyz");
});
it("ignores legacy pending-upload JSON cache files at runtime", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
const storePath = path.join(stateDir, "msteams-pending-uploads.json");
await fs.promises.writeFile(
storePath,
`${JSON.stringify({
version: 1,
uploads: {
cached: {
id: "cached",
bufferBase64: Buffer.from("cached payload").toString("base64"),
filename: "cached.txt",
conversationId: "19:conv@thread.v2",
createdAt: Date.now(),
},
},
})}\n`,
"utf-8",
);
expect(await getPendingUploadFs("cached", { env })).toBeUndefined();
await expect(fs.promises.access(storePath)).resolves.toBeUndefined();
});
});
describe("prepareFileConsentActivityFs end-to-end", () => {
beforeEach(() => {
resetPluginStateStoreForTests();
setMSTeamsRuntime(msteamsRuntimeStub);
clearPendingUploads();
});
afterEach(async () => {
await cleanupTempDirs();
});
it("writes the pending upload to the fs store with the same id as the card", async () => {
const stateDir = await makeTempStateDir();
const env = makeEnv(stateDir);
// Redirect state dir via env so the helper's FS writes land under our tmp
const originalEnv = process.env.OPENCLAW_STATE_DIR;
process.env.OPENCLAW_STATE_DIR = stateDir;
try {
const result = await prepareFileConsentActivityFs({
media: {
buffer: Buffer.from("cli file"),
filename: "cli.bin",
contentType: "application/octet-stream",
},
conversationId: "19:victim@thread.v2",
description: "Sent via CLI",
});
expect(result.uploadId).toMatch(/[0-9a-f-]/);
const attachments = result.activity.attachments as Array<Record<string, unknown>>;
expect(attachments).toHaveLength(1);
const content = attachments[0]?.content as { acceptContext: { uploadId: string } };
expect(content.acceptContext.uploadId).toBe(result.uploadId);
// Reader in (simulated) other process finds the entry under the same key
const loaded = await requirePendingUpload(result.uploadId, env);
expect(loaded.filename).toBe("cli.bin");
expect(loaded.contentType).toBe("application/octet-stream");
expect(loaded.conversationId).toBe("19:victim@thread.v2");
expect(loaded.buffer.toString("utf8")).toBe("cli file");
} finally {
if (originalEnv === undefined) {
delete process.env.OPENCLAW_STATE_DIR;
} else {
process.env.OPENCLAW_STATE_DIR = originalEnv;
}
}
});
});