| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- import { describe, expect, test } from 'vitest'
- import { formatRowsForInsert, getRowFromSidePanel } from './SidePanelEditor.utils'
- import type { SupaRow } from '@/components/grid/types'
- import type { SidePanel } from '@/state/table-editor'
- describe('SidePanelEditor.utils.test.ts', () => {
- test('formatRowsForInsert should for format rows with basic data types correctly', () => {
- const rows = [
- { id: 1, text: 'A' },
- { id: 2, text: 'B' },
- { id: 3, text: 'C' },
- ]
- const headers = ['id', 'text']
- const columns = [
- { id: '1', name: 'id', data_type: 'bigint', format: 'int8', is_nullable: false },
- { id: '2', name: 'text', data_type: 'text', format: 'text', is_nullable: true },
- ]
- const formattedRows = formatRowsForInsert({ rows, headers, columns: columns as any })
- expect(formattedRows).toEqual(rows)
- })
- test('formatRowsForInsert should handle nullable columns if value is an empty string', () => {
- const rows = [
- { id: 1, text: 'A' },
- { id: 2, text: '' },
- { id: 3, text: 'C' },
- ]
- const headers = ['id', 'text']
- const columns = [
- { id: '1', name: 'id', data_type: 'bigint', format: 'int8', is_nullable: false },
- { id: '2', name: 'text', data_type: 'text', format: 'text', is_nullable: true },
- ]
- const formattedRows = formatRowsForInsert({ rows, headers, columns: columns as any })
- expect(formattedRows).toEqual([
- { id: 1, text: 'A' },
- { id: 2, text: null },
- { id: 3, text: 'C' },
- ])
- })
- test('formatRowsForInsert should only convert empty strings to null for selected columns', () => {
- const rows = [
- { id: 1, name: '', email: '' },
- { id: 2, name: 'Bob', email: '' },
- ]
- const headers = ['id', 'name', 'email']
- const columns = [
- { id: '1', name: 'id', data_type: 'bigint', format: 'int8', is_nullable: false },
- { id: '2', name: 'name', data_type: 'text', format: 'text', is_nullable: true },
- { id: '3', name: 'email', data_type: 'text', format: 'text', is_nullable: true },
- ]
- const formattedRows = formatRowsForInsert({
- rows,
- headers,
- columns: columns as any,
- emptyStringAsNullHeaders: ['email'],
- })
- expect(formattedRows).toEqual([
- { id: 1, name: '', email: null },
- { id: 2, name: 'Bob', email: null },
- ])
- })
- test('formatRowsForInsert should handle JSON object values properly', () => {
- const rows = [{ id: 1, value: '{"key": "value"}' }]
- const headers = ['id', 'value']
- const columns = [
- { id: '1', name: 'id', data_type: 'bigint', format: 'int8', is_nullable: false },
- { id: '2', name: 'value', data_type: 'json', format: 'jsonb', is_nullable: true },
- ]
- const formattedRows = formatRowsForInsert({ rows, headers, columns: columns as any })
- expect(formattedRows).toEqual([{ id: 1, value: { key: 'value' } }])
- })
- test('formatRowsForInsert should handle JSON array values properly', () => {
- const rows = [{ id: 1, value: '["item1", "item2", "item3"]' }]
- const headers = ['id', 'value']
- const columns = [
- { id: '1', name: 'id', data_type: 'bigint', format: 'int8', is_nullable: false },
- { id: '2', name: 'value', data_type: 'json', format: 'jsonb', is_nullable: true },
- ]
- const formattedRows = formatRowsForInsert({ rows, headers, columns: columns as any })
- expect(formattedRows).toEqual([{ id: 1, value: ['item1', 'item2', 'item3'] }])
- })
- test('formatRowsForInsert should handle Postgres array values properly', () => {
- const rows = [{ id: 1, value: '{"item1", "item2", "item3"}' }]
- const headers = ['id', 'value']
- const columns = [
- { id: '1', name: 'id', data_type: 'bigint', format: 'int8', is_nullable: false },
- { id: '2', name: 'value', data_type: 'ARRAY', format: '_text', is_nullable: true },
- ]
- const formattedRows = formatRowsForInsert({ rows, headers, columns: columns as any })
- expect(formattedRows).toEqual([{ id: 1, value: ['item1', 'item2', 'item3'] }])
- })
- test('formatRowsForInsert should handle Postgres array values properly if provided JSON string', () => {
- const rows = [{ id: 1, value: '["item1", "item2", "item3"]' }]
- const headers = ['id', 'value']
- const columns = [
- { id: '1', name: 'id', data_type: 'bigint', format: 'int8', is_nullable: false },
- { id: '2', name: 'value', data_type: 'ARRAY', format: '_text', is_nullable: true },
- ]
- const formattedRows = formatRowsForInsert({ rows, headers, columns: columns as any })
- expect(formattedRows).toEqual([{ id: 1, value: ['item1', 'item2', 'item3'] }])
- })
- })
- describe('getRowFromSidePanel', () => {
- const mockRow: SupaRow = { idx: 1, id: 123, name: 'Test Row' }
- test('returns undefined when sidePanel is undefined', () => {
- expect(getRowFromSidePanel(undefined)).toBeUndefined()
- })
- test('returns row from json side panel', () => {
- const sidePanel: SidePanel = {
- type: 'json',
- jsonValue: { row: mockRow, column: 'data', value: '{}' },
- }
- expect(getRowFromSidePanel(sidePanel)).toEqual(mockRow)
- })
- test('returns row from cell side panel', () => {
- const sidePanel: SidePanel = {
- type: 'cell',
- value: { row: mockRow, column: 'name' },
- }
- expect(getRowFromSidePanel(sidePanel)).toEqual(mockRow)
- })
- test('returns undefined from cell side panel when value is undefined', () => {
- const sidePanel: SidePanel = {
- type: 'cell',
- }
- expect(getRowFromSidePanel(sidePanel)).toBeUndefined()
- })
- test('returns row from row side panel', () => {
- const sidePanel: SidePanel = {
- type: 'row',
- row: mockRow,
- }
- expect(getRowFromSidePanel(sidePanel)).toEqual(mockRow)
- })
- test('returns undefined from row side panel when row is undefined', () => {
- const sidePanel: SidePanel = {
- type: 'row',
- }
- expect(getRowFromSidePanel(sidePanel)).toBeUndefined()
- })
- test('returns row from foreign-row-selector side panel', () => {
- const sidePanel: SidePanel = {
- type: 'foreign-row-selector',
- foreignKey: {
- foreignKey: {
- schema: 'public',
- table: 'users',
- columns: [{ source: 'user_id', target: 'id' }],
- deletionAction: 'NO ACTION',
- updateAction: 'NO ACTION',
- },
- row: mockRow,
- column: { name: 'user_id' } as any,
- },
- }
- expect(getRowFromSidePanel(sidePanel)).toEqual(mockRow)
- })
- test('returns undefined for table side panel', () => {
- const sidePanel: SidePanel = {
- type: 'table',
- mode: 'new',
- }
- expect(getRowFromSidePanel(sidePanel)).toBeUndefined()
- })
- test('returns undefined for column side panel', () => {
- const sidePanel: SidePanel = {
- type: 'column',
- }
- expect(getRowFromSidePanel(sidePanel)).toBeUndefined()
- })
- test('returns undefined for schema side panel', () => {
- const sidePanel: SidePanel = {
- type: 'schema',
- mode: 'new',
- }
- expect(getRowFromSidePanel(sidePanel)).toBeUndefined()
- })
- test('returns undefined for csv-import side panel', () => {
- const sidePanel: SidePanel = {
- type: 'csv-import',
- }
- expect(getRowFromSidePanel(sidePanel)).toBeUndefined()
- })
- test('returns undefined for operation-queue side panel', () => {
- const sidePanel: SidePanel = {
- type: 'operation-queue',
- }
- expect(getRowFromSidePanel(sidePanel)).toBeUndefined()
- })
- })
|