mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 22:03:58 +00:00
- Rename packages/opencode → packages/tfcode (directory only) - Rename bin/opencode → bin/tfcode (CLI binary) - Rename .opencode → .tfcode (config directory) - Update package.json name and bin field - Update config directory path references (.tfcode) - Keep internal code references as 'opencode' for easy upstream sync - Keep @opencode-ai/* workspace package names This minimal branding approach allows clean merges from upstream opencode repository while providing tfcode branding for users.
55 lines
2.2 KiB
TypeScript
55 lines
2.2 KiB
TypeScript
import { test, expect } from "bun:test"
|
|
import {
|
|
parseShareUrl,
|
|
shouldAttachShareAuthHeaders,
|
|
transformShareData,
|
|
type ShareData,
|
|
} from "../../src/cli/cmd/import"
|
|
|
|
// parseShareUrl tests
|
|
test("parses valid share URLs", () => {
|
|
expect(parseShareUrl("https://opncd.ai/share/Jsj3hNIW")).toBe("Jsj3hNIW")
|
|
expect(parseShareUrl("https://custom.example.com/share/abc123")).toBe("abc123")
|
|
expect(parseShareUrl("http://localhost:3000/share/test_id-123")).toBe("test_id-123")
|
|
})
|
|
|
|
test("rejects invalid URLs", () => {
|
|
expect(parseShareUrl("https://opncd.ai/s/Jsj3hNIW")).toBeNull() // legacy format
|
|
expect(parseShareUrl("https://opncd.ai/share/")).toBeNull()
|
|
expect(parseShareUrl("https://opncd.ai/share/id/extra")).toBeNull()
|
|
expect(parseShareUrl("not-a-url")).toBeNull()
|
|
})
|
|
|
|
test("only attaches share auth headers for same-origin URLs", () => {
|
|
expect(shouldAttachShareAuthHeaders("https://control.example.com/share/abc", "https://control.example.com")).toBe(
|
|
true,
|
|
)
|
|
expect(shouldAttachShareAuthHeaders("https://other.example.com/share/abc", "https://control.example.com")).toBe(false)
|
|
expect(shouldAttachShareAuthHeaders("https://control.example.com:443/share/abc", "https://control.example.com")).toBe(
|
|
true,
|
|
)
|
|
expect(shouldAttachShareAuthHeaders("not-a-url", "https://control.example.com")).toBe(false)
|
|
})
|
|
|
|
// transformShareData tests
|
|
test("transforms share data to storage format", () => {
|
|
const data: ShareData[] = [
|
|
{ type: "session", data: { id: "sess-1", title: "Test" } as any },
|
|
{ type: "message", data: { id: "msg-1", sessionID: "sess-1" } as any },
|
|
{ type: "part", data: { id: "part-1", messageID: "msg-1" } as any },
|
|
{ type: "part", data: { id: "part-2", messageID: "msg-1" } as any },
|
|
]
|
|
|
|
const result = transformShareData(data)!
|
|
|
|
expect(result.info.id).toBe("sess-1")
|
|
expect(result.messages).toHaveLength(1)
|
|
expect(result.messages[0].parts).toHaveLength(2)
|
|
})
|
|
|
|
test("returns null for invalid share data", () => {
|
|
expect(transformShareData([])).toBeNull()
|
|
expect(transformShareData([{ type: "message", data: {} as any }])).toBeNull()
|
|
expect(transformShareData([{ type: "session", data: { id: "s" } as any }])).toBeNull() // no messages
|
|
})
|