-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.replace.test.ts
More file actions
284 lines (254 loc) · 7.73 KB
/
project.replace.test.ts
File metadata and controls
284 lines (254 loc) · 7.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import { projectRoutes } from '@backend/api/project'
import { closeDb, initializeDb } from '@backend/plugins/database'
import { treaty } from '@elysiajs/eden'
import { afterEach, beforeEach, describe, expect, test } from 'bun:test'
import { Elysia } from 'elysia'
import { tmpdir } from 'node:os'
interface TestData {
name: string
email: string
city: string
}
const TEST_DATA: TestData[] = [
{ name: 'John Doe', email: 'john@example.com', city: 'New York' },
{ name: 'Jane Smith', email: 'jane@example.com', city: 'Los Angeles' },
{ name: 'Bob Johnson', email: 'bob@example.com', city: 'New York' },
{ name: 'Alice Brown', email: 'alice@test.com', city: 'Chicago' },
{ name: 'Charlie Davis', email: 'charlie@example.com', city: 'New York' },
]
const createTestApi = () => {
return treaty(new Elysia().use(projectRoutes)).api
}
const tempFilePath = tmpdir() + '/test-data.json'
describe('Project API - find and replace', () => {
let api: ReturnType<typeof createTestApi>
let projectId: string
const cleanupTestData = async () => {
expect(projectId).toBeDefined()
expect(api).toBeDefined()
const { error } = await api.project({ projectId }).delete()
expect(error).toBeNull()
const tempFile = Bun.file(tempFilePath)
await tempFile.delete()
}
const importTestData = async () => {
await Bun.write(tempFilePath, JSON.stringify(TEST_DATA))
const { status, error } = await api.project({ projectId }).import.post({
filePath: tempFilePath,
})
expect(error).toBeNull()
expect(status).toBe(201)
}
beforeEach(async () => {
await initializeDb(':memory:')
api = createTestApi()
const { data, status, error } = await api.project.post({
name: 'Test Project for replace',
})
expect(error).toBeNull()
expect(status).toBe(201)
projectId = (data as any)!.data!.id as string
await importTestData()
})
afterEach(async () => {
await cleanupTestData()
await closeDb()
})
test('should perform basic find and replace operation', async () => {
const { data, status, error } = await api.project({ projectId }).replace.post({
column: 'city',
find: 'New York',
replace: 'San Francisco',
caseSensitive: false,
wholeWord: false,
})
expect(status).toBe(200)
expect(error).toBeNull()
expect(data).toEqual({
affectedRows: 3,
})
// Verify the data was actually changed
const { data: projectData } = await api.project({ projectId }).get({
query: { offset: 0, limit: 25 },
})
expect(projectData).toHaveProperty(
'data',
expect.arrayContaining([
expect.objectContaining({ city: 'San Francisco' }),
expect.objectContaining({ city: 'Los Angeles' }),
expect.objectContaining({ city: 'Chicago' }),
]),
)
const cities = projectData!.data?.map((row: TestData) => row.city)
expect(cities.filter((city: string) => city === 'San Francisco')).toHaveLength(3)
expect(cities.filter((city: string) => city === 'New York')).toHaveLength(0)
})
describe('case sensitivity tests', () => {
test.each([
{
description: 'case-sensitive replace operation',
column: 'email',
find: 'example.com',
replace: 'company.com',
caseSensitive: true,
wholeWord: false,
expectedAffectedRows: 4,
},
{
description: 'case-insensitive replace operation',
column: 'email',
find: 'EXAMPLE.COM',
replace: 'company.com',
caseSensitive: false,
wholeWord: false,
expectedAffectedRows: 4,
},
])(
'$description',
async ({ column, find, replace, caseSensitive, wholeWord, expectedAffectedRows }) => {
const { data, status, error } = await api.project({ projectId }).replace.post({
column,
find,
replace,
caseSensitive,
wholeWord,
})
expect(status).toBe(200)
expect(error).toBeNull()
expect(data).toEqual({
affectedRows: expectedAffectedRows,
})
},
)
})
describe('whole word tests', () => {
test.each([
{
description: 'whole word replace operation',
column: 'name',
find: 'John',
replace: 'Jonathan',
caseSensitive: false,
wholeWord: true,
expectedAffectedRows: 1,
},
{
description: 'whole word with case sensitivity',
column: 'name',
find: 'john',
replace: 'jonathan',
caseSensitive: true,
wholeWord: true,
expectedAffectedRows: 0,
},
])(
'$description',
async ({ column, find, replace, caseSensitive, wholeWord, expectedAffectedRows }) => {
const { data, status, error } = await api.project({ projectId }).replace.post({
column,
find,
replace,
caseSensitive,
wholeWord,
})
expect(status).toBe(200)
expect(error).toBeNull()
expect(data).toEqual({
affectedRows: expectedAffectedRows,
})
},
)
})
describe('replace with empty string', () => {
test.each([
{
description: 'basic empty string replace',
column: 'city',
find: 'New York',
replace: '',
expectedAffectedRows: 3,
},
{
description: 'empty string replace with whole word',
column: 'name',
find: 'John',
replace: '',
expectedAffectedRows: 2,
},
])('$description', async ({ column, find, replace, expectedAffectedRows }) => {
const { data, status, error } = await api.project({ projectId }).replace.post({
column,
find,
replace,
caseSensitive: false,
wholeWord: false,
})
expect(status).toBe(200)
expect(error).toBeNull()
expect(data).toEqual({
affectedRows: expectedAffectedRows,
})
})
})
test('should return 400 for non-existent column', async () => {
const { data, status, error } = await api.project({ projectId }).replace.post({
column: 'nonexistent_column',
find: 'value',
replace: 'new_value',
caseSensitive: false,
wholeWord: false,
})
expect(status).toBe(400)
expect(data).toBeNull()
expect(error).toHaveProperty('status', 400)
expect(error).toHaveProperty('value', [
{
code: 'VALIDATION',
message: 'Column not found',
details: [`Column 'nonexistent_column' does not exist in table 'project_${projectId}'`],
},
])
})
test('should return 422 for missing required fields', async () => {
// @ts-expect-error testing invalid payload
const { data, status, error } = await api.project({ projectId }).replace.post({
column: '',
find: '',
replace: 'new_value',
})
expect(status).toBe(422)
expect(data).toBeNull()
expect(error).toHaveProperty('status', 422)
})
describe('special characters tests', () => {
test.each([
{
description: 'handle @ symbol',
column: 'email',
find: '@',
replace: '[AT]',
expectedAffectedRows: 5,
},
{
description: 'handle single quotes',
column: 'name',
find: "John's",
replace: "Jonathan's",
expectedAffectedRows: 0, // No data with John's in test data
},
])('$description', async ({ column, find, replace, expectedAffectedRows }) => {
const { data, status, error } = await api.project({ projectId }).replace.post({
column,
find,
replace,
caseSensitive: false,
wholeWord: false,
})
expect(status).toBe(200)
expect(error).toBeNull()
expect(data).toEqual({
affectedRows: expectedAffectedRows,
})
})
})
})