-
-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathpostgresql-container-snapshot.test.ts
More file actions
208 lines (158 loc) · 6.34 KB
/
postgresql-container-snapshot.test.ts
File metadata and controls
208 lines (158 loc) · 6.34 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
import { Client } from "pg";
import { PostgreSqlContainer } from "./postgresql-container";
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.restoreSnapshot();
// 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.restoreSnapshot(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.restoreSnapshot("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.restoreSnapshot("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(
"Snapshot feature is not supported when using the postgres system database"
);
await expect(container.restoreSnapshot()).rejects.toThrow(
"Snapshot feature is not supported when using the postgres system database"
);
await container.stop();
});
});