Files
postgres/tests/integration/ColumnManager.spec.ts
copilot-swe-agent[bot] ba38c1bf26 feat(constraints): Add PRIMARY KEY constraint support and enhance column management tests
- Add PRIMARY KEY to constraint types in features.json
- Update constraints API to handle PRIMARY KEY operations
- Add PRIMARY KEY to constraint listing query
- Add validation and tests for PRIMARY KEY constraints
- Add tests for DEFAULT value and NOT NULL in column management
- Update ROADMAP.md to mark PRIMARY KEY, DEFAULT, and NOT NULL as complete
- Update README.md with new constraint capabilities
- Update TESTING.md with comprehensive test coverage (105 total tests)

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
2026-01-08 04:29:19 +00:00

187 lines
5.4 KiB
TypeScript

import { expect, test } from '@playwright/test';
test.describe('Column Manager', () => {
test.describe('Add Column API', () => {
test('should reject add column without authentication', async ({ page }) => {
const response = await page.request.post('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'new_column',
dataType: 'VARCHAR',
nullable: true,
},
});
expect(response.status()).toBe(401);
});
test('should reject add column without required fields', async ({ page }) => {
const response = await page.request.post('/api/admin/column-manage', {
data: {
tableName: 'test_table',
},
});
expect([400, 401]).toContain(response.status());
});
test('should reject add column with invalid table name', async ({ page }) => {
const response = await page.request.post('/api/admin/column-manage', {
data: {
tableName: 'invalid-name!@#',
columnName: 'test_col',
dataType: 'INTEGER',
},
});
expect([400, 401]).toContain(response.status());
});
test('should reject add column with invalid column name', async ({ page }) => {
const response = await page.request.post('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'invalid-col!@#',
dataType: 'INTEGER',
},
});
expect([400, 401]).toContain(response.status());
});
test('should accept add column with NOT NULL constraint', async ({ page }) => {
const response = await page.request.post('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'test_column',
dataType: 'INTEGER',
nullable: false,
},
});
expect([400, 401, 404, 500]).toContain(response.status());
});
test('should accept add column with DEFAULT value', async ({ page }) => {
const response = await page.request.post('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'test_column',
dataType: 'INTEGER',
defaultValue: 0,
},
});
expect([400, 401, 404, 500]).toContain(response.status());
});
test('should accept add column with DEFAULT value and NOT NULL', async ({ page }) => {
const response = await page.request.post('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'test_column',
dataType: 'VARCHAR',
nullable: false,
defaultValue: 'default_value',
},
});
expect([400, 401, 404, 500]).toContain(response.status());
});
});
test.describe('Modify Column API', () => {
test('should reject modify column without authentication', async ({ page }) => {
const response = await page.request.put('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'test_column',
newType: 'TEXT',
},
});
expect(response.status()).toBe(401);
});
test('should reject modify without required fields', async ({ page }) => {
const response = await page.request.put('/api/admin/column-manage', {
data: {
tableName: 'test_table',
},
});
expect([400, 401]).toContain(response.status());
});
test('should reject modify with invalid identifiers', async ({ page }) => {
const response = await page.request.put('/api/admin/column-manage', {
data: {
tableName: 'invalid!@#',
columnName: 'invalid!@#',
newType: 'TEXT',
},
});
expect([400, 401]).toContain(response.status());
});
test('should accept modify column to set NOT NULL', async ({ page }) => {
const response = await page.request.put('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'test_column',
nullable: false,
},
});
expect([400, 401, 404, 500]).toContain(response.status());
});
test('should accept modify column to drop NOT NULL', async ({ page }) => {
const response = await page.request.put('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'test_column',
nullable: true,
},
});
expect([400, 401, 404, 500]).toContain(response.status());
});
});
test.describe('Drop Column API', () => {
test('should reject drop column without authentication', async ({ page }) => {
const response = await page.request.delete('/api/admin/column-manage', {
data: {
tableName: 'test_table',
columnName: 'test_column',
},
});
expect(response.status()).toBe(401);
});
test('should reject drop without required fields', async ({ page }) => {
const response = await page.request.delete('/api/admin/column-manage', {
data: {
tableName: 'test_table',
},
});
expect([400, 401]).toContain(response.status());
});
test('should reject drop with invalid identifiers', async ({ page }) => {
const response = await page.request.delete('/api/admin/column-manage', {
data: {
tableName: 'invalid!@#',
columnName: 'invalid!@#',
},
});
expect([400, 401]).toContain(response.status());
});
});
});