forked from testcontainers/testcontainers-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgresql-container.test.ts
More file actions
321 lines (249 loc) · 9.4 KB
/
postgresql-container.test.ts
File metadata and controls
321 lines (249 loc) · 9.4 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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
import { Client } from "pg";
import { PostgreSqlContainer } from "./postgresql-container";
describe("PostgreSqlContainer", { timeout: 180_000 }, () => {
// connect {
it("should connect and return a query result", async () => {
const container = await new PostgreSqlContainer().start();
const client = new Client({
host: container.getHost(),
port: container.getPort(),
database: container.getDatabase(),
user: container.getUsername(),
password: container.getPassword(),
});
await client.connect();
const result = await client.query("SELECT 1");
expect(result.rows[0]).toEqual({ "?column?": 1 });
await client.end();
await container.stop();
});
// }
// uriConnect {
it("should work with database URI", async () => {
const container = await new PostgreSqlContainer().start();
const client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
const result = await client.query("SELECT 1");
expect(result.rows[0]).toEqual({ "?column?": 1 });
await client.end();
await container.stop();
});
// }
// setDatabase {
it("should set database", async () => {
const container = await new PostgreSqlContainer().withDatabase("customDatabase").start();
const client = new Client({
host: container.getHost(),
port: container.getPort(),
database: container.getDatabase(),
user: container.getUsername(),
password: container.getPassword(),
});
await client.connect();
const result = await client.query("SELECT current_database()");
expect(result.rows[0]).toEqual({ current_database: "customDatabase" });
await client.end();
await container.stop();
});
// }
// setUsername {
it("should set username", async () => {
const container = await new PostgreSqlContainer().withUsername("customUsername").start();
const client = new Client({
host: container.getHost(),
port: container.getPort(),
database: container.getDatabase(),
user: container.getUsername(),
password: container.getPassword(),
});
await client.connect();
const result = await client.query("SELECT current_user");
expect(result.rows[0]).toEqual({ current_user: "customUsername" });
await client.end();
await container.stop();
});
// }
it("should work with restarted container", async () => {
const container = await new PostgreSqlContainer().start();
await container.restart();
const client = new Client({
host: container.getHost(),
port: container.getPort(),
database: container.getDatabase(),
user: container.getUsername(),
password: container.getPassword(),
});
await client.connect();
const result = await client.query("SELECT 1");
expect(result.rows[0]).toEqual({ "?column?": 1 });
await client.end();
await container.stop();
});
it("should allow custom healthcheck", async () => {
const container = new PostgreSqlContainer().withHealthCheck({
test: ["CMD-SHELL", "exit 1"],
interval: 100,
retries: 0,
timeout: 0,
});
await expect(() => container.start()).rejects.toThrow();
});
});
describe("PostgreSqlContainer snapshot and restore", { timeout: 180_000 }, () => {
// createAndRestoreFromSnapshot {
it("should create and restore from snapshot", async () => {
const container = await new PostgreSqlContainer().start();
// Connect to the database
let client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Create some test data
await client.query("CREATE TABLE test_table (id SERIAL PRIMARY KEY, name TEXT)");
await client.query("INSERT INTO test_table (name) VALUES ('initial data')");
// Close connection before snapshot (otherwise we'll get an error because user is already connected)
await client.end();
// Take a snapshot
await container.snapshot();
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Modify the database
await client.query("INSERT INTO test_table (name) VALUES ('data after snapshot')");
// Verify both records exist
let result = await client.query("SELECT * FROM test_table ORDER BY id");
expect(result.rows).toHaveLength(2);
expect(result.rows[0].name).toEqual("initial data");
expect(result.rows[1].name).toEqual("data after snapshot");
// Close connection before restore (same reason as above)
await client.end();
// Restore to the snapshot
await container.restore();
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Verify only the initial data exists after restore
result = await client.query("SELECT * FROM test_table ORDER BY id");
expect(result.rows).toHaveLength(1);
expect(result.rows[0].name).toEqual("initial data");
await client.end();
await container.stop();
});
// }
it("should use custom snapshot name", async () => {
const container = await new PostgreSqlContainer().start();
const customSnapshotName = "my_custom_snapshot";
// Connect to the database
let client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Create a test table and insert data
await client.query("CREATE TABLE test_table (id SERIAL PRIMARY KEY, name TEXT)");
await client.query("INSERT INTO test_table (name) VALUES ('initial data')");
// Close connection before snapshot
await client.end();
// Take a snapshot with custom name
await container.snapshot(customSnapshotName);
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Modify the database
await client.query("INSERT INTO test_table (name) VALUES ('data after snapshot')");
// Close connection before restore
await client.end();
// Restore using the custom snapshot name
await container.restore(customSnapshotName);
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Verify only the initial data exists after restore
const result = await client.query("SELECT * FROM test_table ORDER BY id");
expect(result.rows).toHaveLength(1);
expect(result.rows[0].name).toEqual("initial data");
await client.end();
await container.stop();
});
it("should handle multiple snapshots", async () => {
const container = await new PostgreSqlContainer().start();
// Connect to the database
let client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Create a test table
await client.query("CREATE TABLE test_table (id SERIAL PRIMARY KEY, name TEXT)");
// Close connection before snapshot
await client.end();
// Take first snapshot with empty table
await container.snapshot("snapshot1");
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Add first record
await client.query("INSERT INTO test_table (name) VALUES ('data for snapshot 2')");
// Close connection before snapshot
await client.end();
// Take second snapshot with one record
await container.snapshot("snapshot2");
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Add second record
await client.query("INSERT INTO test_table (name) VALUES ('data after snapshots')");
// Verify we have two records
let result = await client.query("SELECT COUNT(*) as count FROM test_table");
expect(result.rows[0].count).toEqual("2");
// Close connection before restore
await client.end();
// Restore to first snapshot (empty table)
await container.restore("snapshot1");
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Verify table is empty
result = await client.query("SELECT COUNT(*) as count FROM test_table");
expect(result.rows[0].count).toEqual("0");
// Close connection before restore
await client.end();
// Restore to second snapshot (one record)
await container.restore("snapshot2");
// Reconnect to database
client = new Client({
connectionString: container.getConnectionUri(),
});
await client.connect();
// Verify we have one record
result = await client.query("SELECT * FROM test_table");
expect(result.rows).toHaveLength(1);
expect(result.rows[0].name).toEqual("data for snapshot 2");
await client.end();
await container.stop();
});
it("should throw an error when trying to snapshot postgres system database", async () => {
const container = await new PostgreSqlContainer().withDatabase("postgres").start();
await expect(container.snapshot()).rejects.toThrow(
"Cannot restore the postgres system database as it cannot be dropped to be restored"
);
await expect(container.restore()).rejects.toThrow(
"Cannot restore the postgres system database as it cannot be dropped to be restored"
);
await container.stop();
});
});