mirror of
https://github.com/immich-app/immich.git
synced 2026-04-14 23:01:40 -04:00
100 lines
2.7 KiB
TypeScript
100 lines
2.7 KiB
TypeScript
import { compareColumns } from 'src/sql-tools/comparers/column.comparer';
|
|
import { DatabaseColumn, Reason } from 'src/sql-tools/types';
|
|
import { describe, expect, it } from 'vitest';
|
|
|
|
const testColumn: DatabaseColumn = {
|
|
name: 'test',
|
|
tableName: 'table1',
|
|
primary: false,
|
|
nullable: false,
|
|
isArray: false,
|
|
type: 'character varying',
|
|
synchronize: true,
|
|
};
|
|
|
|
describe('compareColumns', () => {
|
|
describe('onExtra', () => {
|
|
it('should work', () => {
|
|
expect(compareColumns.onExtra(testColumn)).toEqual([
|
|
{
|
|
tableName: 'table1',
|
|
columnName: 'test',
|
|
type: 'ColumnDrop',
|
|
reason: Reason.MissingInSource,
|
|
},
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('onMissing', () => {
|
|
it('should work', () => {
|
|
expect(compareColumns.onMissing(testColumn)).toEqual([
|
|
{
|
|
type: 'ColumnAdd',
|
|
column: testColumn,
|
|
reason: Reason.MissingInTarget,
|
|
},
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('onCompare', () => {
|
|
it('should work', () => {
|
|
expect(compareColumns.onCompare(testColumn, testColumn)).toEqual([]);
|
|
});
|
|
|
|
it('should detect a change in type', () => {
|
|
const source: DatabaseColumn = { ...testColumn };
|
|
const target: DatabaseColumn = { ...testColumn, type: 'text' };
|
|
const reason = 'column type is different (character varying vs text)';
|
|
expect(compareColumns.onCompare(source, target)).toEqual([
|
|
{
|
|
columnName: 'test',
|
|
tableName: 'table1',
|
|
type: 'ColumnDrop',
|
|
reason,
|
|
},
|
|
{
|
|
type: 'ColumnAdd',
|
|
column: source,
|
|
reason,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('should detect a change in default', () => {
|
|
const source: DatabaseColumn = { ...testColumn, nullable: true };
|
|
const target: DatabaseColumn = { ...testColumn, nullable: true, default: "''" };
|
|
const reason = `default is different (null vs '')`;
|
|
expect(compareColumns.onCompare(source, target)).toEqual([
|
|
{
|
|
columnName: 'test',
|
|
tableName: 'table1',
|
|
type: 'ColumnAlter',
|
|
changes: {
|
|
default: 'NULL',
|
|
},
|
|
reason,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('should detect a comment change', () => {
|
|
const source: DatabaseColumn = { ...testColumn, comment: 'new comment' };
|
|
const target: DatabaseColumn = { ...testColumn, comment: 'old comment' };
|
|
const reason = 'comment is different (new comment vs old comment)';
|
|
expect(compareColumns.onCompare(source, target)).toEqual([
|
|
{
|
|
columnName: 'test',
|
|
tableName: 'table1',
|
|
type: 'ColumnAlter',
|
|
changes: {
|
|
comment: 'new comment',
|
|
},
|
|
reason,
|
|
},
|
|
]);
|
|
});
|
|
});
|
|
});
|