* chore: bump version to 0.7.5 (Task 1.1) * feat(db): pure object DDL/search/depend builders (Task 1.2) * feat(models): ObjectSearchHit, DependencyInfo, PgToolPaths, tool source fields (Task 1.3) * feat(backup): bundle-aware pg tool resolution, system-first fallback (Task 2.1) * feat(objects): schema CRUD commands + integration test (Task 2.2) * feat(objects): search_objects command (current-schema, all types) (Task 2.3) * feat(objects): get_object_ddl for all browsable types (Task 2.4) * feat(objects): pg_depend object dependencies + schema contents (Task 2.5) * feat(ipc): register object management commands (Task 3.1) * feat(ipc): frontend wrappers + types for object management (Task 3.2) * feat(build): declare bundled pg_tools resources (Task 3.3) * test(capabilities): lock objects capability PG-only for search/ddl/dependencies (Task 3.4) * feat(ui): Cmd+K object search palette in DB viewer (Task 4.1) * feat(ui): schema CRUD menu + dependency dialog (Task 4.2) * feat(ui): copy-as-DDL + dependency view context menu in Objects (Task 4.3) * feat(ui): dependency check before table drop + bundled-tool status (Task 4.4) * docs: v0.7.5 release notes + status table + bundled-tools (Task 5.1) * ci: build/verify bundled pg client tools per platform before tauri build (Task 5.2) * fix(objects): report pg_rewrite dependencies as the dependent view (pg_class) pg_depend records view dependencies via the view's internal rewrite rule (classid = pg_rewrite). The user-facing dependent object is the VIEW itself, so map that classid to pg_class (name still resolved through ev_class). Fixes the live-PG integration test object_dependencies_for_table_includes_view and makes the dependency dialog readable for view dependents. * test: add idempotent PG integration-test seed script Seeds the first PG test db (GRIDLINE_TEST_SRC) with the objects the #[ignore] integration tests assert against: users (+users_id_seq), products (3 rows), orders (3 rows), order_summary view, audit_log + get_user functions, user_role enum. Idempotent: DROP + recreate. * fix(build): regenerate multi-resolution icons + roadmap Keychain item - icon.ico previously contained a single 16x16 frame (Windows scaled it up -> blurry taskbar/start-menu icon). Regenerated from the 512px source via 'tauri icon': ICO now has 16/24/32/48/64/256 frames, icns has full @2x coverage up to 1024px, PNGs re-rendered from the same source. - Added icons/icon.png (512px) to bundle.icon so Linux hicolor installs a high-DPI entry. - ROADMAP: log the 'Enable Keychain' toggle (currently a form-only placeholder) under Next up -> Connection & credentials. * docs(readme): dynamic version-free download links + 3-col table - release.yml: set releaseAssetNamePattern to '[name]_[platform]_[arch][setup][ext]' (version-free), so asset filenames are stable across releases: Gridline_darwin_aarch64.dmg, Gridline_windows_x64-setup.exe, Gridline_linux_amd64.deb, Gridline_linux_x86_64.rpm, etc. - README: both download tables now 3-column (OS | Architecture | Download) and link via GitHub's releases/latest/download/<file> redirect — they always point at the newest published release, no per-release edits. - AGENTS.md: releases checklist updated — download links stay version-free. * docs(readme): platform-per-column download table (macOS | Windows | Linux) Table now mirrors the release layout: one column per OS with a logo row and a download-links row underneath. Links stay version-free via releases/latest/download/<file> (releaseAssetNamePattern in release.yml). * docs(readme): revert download table to clean image-less 3-col layout Logo row was hard to read on GitHub dark mode; the plain OS | Architecture | Download table is cleaner and still uses dynamic releases/latest links.
95 lines
5.0 KiB
TypeScript
95 lines
5.0 KiB
TypeScript
import { describe, it, expect, vi, beforeEach } from "vitest";
|
|
import { render, screen, fireEvent, waitFor } from "@testing-library/react";
|
|
import userEvent from "@testing-library/user-event";
|
|
import { TableOverflowMenu } from "./TableOverflowMenu";
|
|
import { useDbViewerStore } from "../../stores/dbViewerStore";
|
|
import { useUiStore } from "../../stores/uiStore";
|
|
import * as commands from "../../lib/commands";
|
|
import * as exportData from "../../lib/exportData";
|
|
|
|
describe("TableOverflowMenu", () => {
|
|
beforeEach(() => {
|
|
Object.defineProperty(navigator, "clipboard", {
|
|
value: { writeText: vi.fn() },
|
|
configurable: true,
|
|
writable: true,
|
|
});
|
|
useDbViewerStore.getState().reset();
|
|
useUiStore.setState({ activeConnectionId: "c1" });
|
|
vi.resetAllMocks();
|
|
});
|
|
|
|
it("renders menu trigger button", () => {
|
|
render(<TableOverflowMenu schema="public" table="users" onOpenTab={() => "tab-1"} />);
|
|
expect(screen.getByLabelText(/table options/i)).toBeInTheDocument();
|
|
});
|
|
|
|
it("shows menu options on click", async () => {
|
|
const user = userEvent.setup();
|
|
render(<TableOverflowMenu schema="public" table="users" onOpenTab={() => "tab-1"} />);
|
|
await user.click(screen.getByLabelText(/table options/i));
|
|
expect(screen.getByText("Open in new tab")).toBeInTheDocument();
|
|
expect(screen.getByText("Copy table schema")).toBeInTheDocument();
|
|
expect(screen.getByText("Export data (CSV)")).toBeInTheDocument();
|
|
});
|
|
|
|
it("fires onOpenTab when menu item clicked", async () => {
|
|
const user = userEvent.setup();
|
|
const onOpenTab = vi.fn().mockReturnValue("tab-1");
|
|
render(<TableOverflowMenu schema="public" table="users" onOpenTab={onOpenTab} />);
|
|
await user.click(screen.getByLabelText(/table options/i));
|
|
await user.click(screen.getByText("Open in new tab"));
|
|
expect(onOpenTab).toHaveBeenCalledWith("public", "users", true);
|
|
});
|
|
|
|
it("Copy table schema calls getTableDdl and writes clipboard", async () => {
|
|
vi.spyOn(commands, "getTableDdl").mockResolvedValue("CREATE TABLE t (id int)");
|
|
const writeText = (navigator.clipboard as any).writeText as ReturnType<typeof vi.fn>;
|
|
render(<TableOverflowMenu schema="public" table="t" onOpenTab={() => "tab-1"} />);
|
|
fireEvent.click(screen.getByLabelText(/table options/i));
|
|
fireEvent.click(screen.getByText(/copy table schema/i));
|
|
await waitFor(() => expect(writeText).toHaveBeenCalledWith("CREATE TABLE t (id int)"));
|
|
});
|
|
|
|
it("Empty Table opens confirm then stages an empty_table change", async () => {
|
|
render(<TableOverflowMenu schema="public" table="t" onOpenTab={() => "tab-1"} />);
|
|
fireEvent.click(screen.getByLabelText(/table options/i));
|
|
fireEvent.click(screen.getByText(/empty table/i));
|
|
fireEvent.click(screen.getByRole("button", { name: /empty table/i }));
|
|
await waitFor(() => {
|
|
const q = useDbViewerStore.getState().changesQueue;
|
|
expect(q[q.length - 1]).toEqual(expect.objectContaining({ type: "empty_table", schema: "public", table: "t" }));
|
|
});
|
|
});
|
|
|
|
it("Delete Table opens confirm then stages a drop_table change", async () => {
|
|
vi.spyOn(commands, "getObjectDependencies").mockResolvedValue([]);
|
|
render(<TableOverflowMenu schema="public" table="t" onOpenTab={() => "tab-1"} />);
|
|
fireEvent.click(screen.getByLabelText(/table options/i));
|
|
fireEvent.click(screen.getByText(/delete table/i));
|
|
await waitFor(() => expect(screen.queryByText(/open in new tab/i)).not.toBeInTheDocument());
|
|
fireEvent.click(screen.getByRole("button", { name: /delete table/i }));
|
|
await waitFor(() => {
|
|
const q = useDbViewerStore.getState().changesQueue;
|
|
expect(q[q.length - 1]).toEqual(expect.objectContaining({ type: "drop_table", schema: "public", table: "t" }));
|
|
});
|
|
});
|
|
|
|
it("Delete Table fetches dependencies and shows DependencyDialog before confirming", async () => {
|
|
vi.spyOn(commands, "getObjectDependencies").mockResolvedValue([{ deptype: "n", class: "pg_class", name: "v_orders" }]);
|
|
render(<TableOverflowMenu schema="public" table="orders" connectionId="c1" onOpenTab={() => "tab-1"} />);
|
|
fireEvent.click(screen.getByLabelText(/table options/i));
|
|
fireEvent.click(screen.getByText(/delete table/i));
|
|
await waitFor(() => expect(commands.getObjectDependencies).toHaveBeenCalledWith("c1", "public", "table", "orders"));
|
|
await waitFor(() => expect(screen.getByText("v_orders")).toBeInTheDocument());
|
|
});
|
|
|
|
it("Export data calls exportData when rows and columns are provided", async () => {
|
|
const spy = vi.spyOn(exportData, "exportData");
|
|
const columns = [{ name: "id", data_type: "integer", is_nullable: false, is_pk: true, is_fk: false, fk_ref: null, default_value: null, editable: true, is_generated: false }];
|
|
render(<TableOverflowMenu schema="public" table="t" onOpenTab={() => "tab-1"} columns={columns} rows={[[1]]} />);
|
|
fireEvent.click(screen.getByLabelText(/table options/i));
|
|
fireEvent.click(screen.getByText(/export data \(csv\)/i));
|
|
await waitFor(() => expect(spy).toHaveBeenCalledWith([[1]], columns, "csv", "public.t"));
|
|
});
|
|
}); |