forked from Betta-Pay/BettaPay-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprisma.test.ts
More file actions
228 lines (187 loc) · 7.43 KB
/
Copy pathprisma.test.ts
File metadata and controls
228 lines (187 loc) · 7.43 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
import test from 'node:test';
import assert from 'node:assert';
import {
buildPrismaConnectionUrl,
connectWithRetry,
getPrismaLogLevels,
shouldEnablePrismaQueryLogging,
} from './prisma.js';
test('getPrismaLogLevels includes query in development', () => {
const originalNodeEnv = process.env.NODE_ENV;
const originalLogLevel = process.env.LOG_LEVEL;
process.env.NODE_ENV = 'development';
delete process.env.LOG_LEVEL;
assert.ok(getPrismaLogLevels().includes('query'));
process.env.NODE_ENV = originalNodeEnv;
process.env.LOG_LEVEL = originalLogLevel;
});
test('getPrismaLogLevels excludes query in production', () => {
const originalNodeEnv = process.env.NODE_ENV;
const originalLogLevel = process.env.LOG_LEVEL;
process.env.NODE_ENV = 'production';
process.env.LOG_LEVEL = 'debug';
assert.ok(!shouldEnablePrismaQueryLogging());
assert.ok(!getPrismaLogLevels().includes('query'));
process.env.NODE_ENV = originalNodeEnv;
process.env.LOG_LEVEL = originalLogLevel;
});
test('getPrismaLogLevels returns error and warn only in production', () => {
const originalNodeEnv = process.env.NODE_ENV;
const originalOverride = process.env.PRISMA_LOG_LEVELS;
process.env.NODE_ENV = 'production';
delete process.env.PRISMA_LOG_LEVELS;
assert.deepStrictEqual(getPrismaLogLevels(), ['error', 'warn']);
process.env.NODE_ENV = originalNodeEnv;
process.env.PRISMA_LOG_LEVELS = originalOverride;
});
test('getPrismaLogLevels returns query, info, warn, error in development', () => {
const originalNodeEnv = process.env.NODE_ENV;
const originalOverride = process.env.PRISMA_LOG_LEVELS;
process.env.NODE_ENV = 'development';
delete process.env.PRISMA_LOG_LEVELS;
assert.deepStrictEqual(getPrismaLogLevels(), ['query', 'info', 'warn', 'error']);
process.env.NODE_ENV = originalNodeEnv;
process.env.PRISMA_LOG_LEVELS = originalOverride;
});
test('getPrismaLogLevels returns error only in test', () => {
const originalNodeEnv = process.env.NODE_ENV;
const originalOverride = process.env.PRISMA_LOG_LEVELS;
process.env.NODE_ENV = 'test';
delete process.env.PRISMA_LOG_LEVELS;
assert.deepStrictEqual(getPrismaLogLevels(), ['error']);
process.env.NODE_ENV = originalNodeEnv;
process.env.PRISMA_LOG_LEVELS = originalOverride;
});
test('getPrismaLogLevels honors PRISMA_LOG_LEVELS override regardless of NODE_ENV', () => {
const originalNodeEnv = process.env.NODE_ENV;
const originalOverride = process.env.PRISMA_LOG_LEVELS;
process.env.NODE_ENV = 'production';
process.env.PRISMA_LOG_LEVELS = 'query, warn';
assert.deepStrictEqual(getPrismaLogLevels(), ['query', 'warn']);
process.env.NODE_ENV = originalNodeEnv;
process.env.PRISMA_LOG_LEVELS = originalOverride;
});
test('getPrismaLogLevels falls back to the NODE_ENV default when the override has no valid levels', () => {
const originalNodeEnv = process.env.NODE_ENV;
const originalOverride = process.env.PRISMA_LOG_LEVELS;
process.env.NODE_ENV = 'test';
process.env.PRISMA_LOG_LEVELS = 'not-a-level, also-invalid';
assert.deepStrictEqual(getPrismaLogLevels(), ['error']);
process.env.NODE_ENV = originalNodeEnv;
process.env.PRISMA_LOG_LEVELS = originalOverride;
});
test('connectWithRetry succeeds after transient failures', async () => {
let attempts = 0;
const prisma = {
async $connect() {
attempts += 1;
if (attempts < 3) {
throw new Error('connection refused');
}
},
};
const warnings: object[] = [];
await connectWithRetry(prisma, {
debug: () => undefined,
warn: (obj) => warnings.push(obj),
}, { baseDelayMs: 1, maxRetries: 5 });
assert.strictEqual(attempts, 3);
assert.strictEqual(warnings.length, 2);
});
test('connectWithRetry throws after exhausting retries', async () => {
const prisma = {
async $connect() {
throw new Error('database unavailable');
},
};
await assert.rejects(
() =>
connectWithRetry(prisma, {
debug: () => undefined,
warn: () => undefined,
}, { baseDelayMs: 1, maxRetries: 3 }),
);
});
test('buildPrismaConnectionUrl appends params with ? when URL has no query string', () => {
const url = 'postgresql://user:pass@localhost:5432/bettapay';
const result = buildPrismaConnectionUrl(url, 15, 10);
assert.strictEqual(result, 'postgresql://user:pass@localhost:5432/bettapay?connection_limit=15&pool_timeout=10');
});
test('buildPrismaConnectionUrl appends params with & when URL already has a query string', () => {
const url = 'postgresql://user:pass@localhost:5432/bettapay?sslmode=require';
const result = buildPrismaConnectionUrl(url, 20, 5);
assert.strictEqual(result, 'postgresql://user:pass@localhost:5432/bettapay?sslmode=require&connection_limit=20&pool_timeout=5');
});
test('buildPrismaConnectionUrl uses defaults when no poolSize or timeout given', () => {
const url = 'postgresql://user:pass@localhost:5432/bettapay';
const result = buildPrismaConnectionUrl(url);
assert.strictEqual(result, 'postgresql://user:pass@localhost:5432/bettapay?connection_limit=10&pool_timeout=10');
});
import {
resetRotation,
hasRotated,
getActiveConnectionUrl,
connectWithRetryWithRotation,
} from './prisma.js';
test('connectWithRetryWithRotation switches to rotate URL on 28P01', async () => {
resetRotation();
let attempts = 0;
const prisma = {
async $connect() {
attempts += 1;
if (attempts === 1) {
const err = new Error('authentication failed');
(err as any).code = '28P01';
throw err;
}
},
};
await connectWithRetryWithRotation(prisma, {
debug: () => undefined,
warn: () => undefined,
}, { rotationUrl: 'postgres://rotated/db', baseDelayMs: 1, maxRetries: 5 });
assert.strictEqual(hasRotated(), true);
assert.strictEqual(getActiveConnectionUrl('postgres://primary/db'), 'postgres://rotated/db');
resetRotation();
});
test('connectWithRetryWithRotation does not switch on primary URL success', async () => {
resetRotation();
const prisma = {
async $connect() {},
};
await connectWithRetryWithRotation(prisma, {
debug: () => undefined,
warn: () => undefined,
}, { rotationUrl: 'postgres://rotated/db', baseDelayMs: 1, maxRetries: 3 });
assert.strictEqual(hasRotated(), false);
assert.strictEqual(getActiveConnectionUrl('postgres://primary/db'), 'postgres://primary/db');
resetRotation();
});
test('rotation logged at warn level', async () => {
resetRotation();
let attempts = 0;
const prisma = {
async $connect() {
attempts += 1;
if (attempts === 1) {
const err = new Error('authentication failed');
(err as any).code = '28P01';
throw err;
}
},
};
const warnMessages: string[] = [];
const logger = {
debug: () => undefined,
warn: (_obj: object, msg?: string) => {
if (msg) warnMessages.push(msg);
},
};
await connectWithRetryWithRotation(prisma, logger, { rotationUrl: 'postgres://rotated/db', baseDelayMs: 1, maxRetries: 5 });
assert.ok(warnMessages.some(m => m.includes('credential rotation') || m.includes('authentication error')));
resetRotation();
});
test('getActiveConnectionUrl returns primary URL when no rotation', () => {
resetRotation();
assert.strictEqual(getActiveConnectionUrl('postgres://primary/db'), 'postgres://primary/db');
});