import { describe, it, expect, beforeEach, vi } from "vitest";
import { CreateCollection } from "../../tools/CreateCollection.js";
import { db } from "../../util/db.js";
// Make TypeScript happy with the mocked module
const mockDb = db as unknown as {
createCollection: ReturnType<typeof vi.fn>;
};
describe("CreateCollection Tool", () => {
beforeEach(() => {
// Clear mock call history before each test
vi.clearAllMocks();
});
it("should create a vector collection with default dimensions", async () => {
// Call the function with just the collection name
const result = await CreateCollection({
collectionName: "new_collection",
});
// Verify the mock was called with correct parameters
expect(mockDb.createCollection).toHaveBeenCalledTimes(1);
expect(mockDb.createCollection).toHaveBeenCalledWith("new_collection", {
vector: true,
dimension: 1536,
});
// Verify the result
expect(result).toEqual({
name: "new_collection",
vector: true,
dimension: 1536,
});
});
it("should create a non-vector collection", async () => {
// Call the function with vector set to false
const result = await CreateCollection({
collectionName: "new_document_collection",
vector: false,
});
// Verify the mock was called with correct parameters
expect(mockDb.createCollection).toHaveBeenCalledTimes(1);
expect(mockDb.createCollection).toHaveBeenCalledWith(
"new_document_collection",
{
vector: false,
}
);
// Verify the result
expect(result).toEqual({
name: "new_document_collection",
vector: false,
});
});
it("should create a vector collection with custom dimensions", async () => {
// Call the function with custom dimensions
const result = await CreateCollection({
collectionName: "custom_vector_collection",
vector: true,
dimension: 768,
});
// Verify the mock was called with correct parameters
expect(mockDb.createCollection).toHaveBeenCalledTimes(1);
expect(mockDb.createCollection).toHaveBeenCalledWith(
"custom_vector_collection",
{
vector: true,
dimension: 768,
}
);
// Verify the result
expect(result).toEqual({
name: "custom_vector_collection",
vector: true,
dimension: 768,
});
});
});