-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathtransactions.test.js
298 lines (252 loc) · 9.88 KB
/
transactions.test.js
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
'use strict';
const { expect } = require('chai');
const { Topology } = require('../../src/sdam/topology');
const { ClientSession } = require('../../src/sessions');
const { TestRunnerContext, generateTopologyTests } = require('./spec-runner');
const { loadSpecTests } = require('../spec');
const { MongoNetworkError } = require('../../src/error');
function ignoreNsNotFoundForListIndexes(err) {
if (err.code !== 26) {
throw err;
}
return [];
}
class TransactionsRunnerContext extends TestRunnerContext {
assertCollectionExists(options) {
const client = this.sharedClient;
const db = client.db(options.database);
const collectionName = options.collection;
return db
.listCollections()
.toArray()
.then(collections => expect(collections.some(coll => coll.name === collectionName)).to.be.ok);
}
assertCollectionNotExists(options) {
const client = this.sharedClient;
const db = client.db(options.database);
const collectionName = options.collection;
return db
.listCollections()
.toArray()
.then(
collections => expect(collections.every(coll => coll.name !== collectionName)).to.be.ok
);
}
assertIndexExists(options) {
const client = this.sharedClient;
const collection = client.db(options.database).collection(options.collection);
const indexName = options.index;
return collection
.listIndexes()
.toArray()
.catch(ignoreNsNotFoundForListIndexes)
.then(indexes => expect(indexes.some(idx => idx.name === indexName)).to.be.ok);
}
assertIndexNotExists(options) {
const client = this.sharedClient;
const collection = client.db(options.database).collection(options.collection);
const indexName = options.index;
return collection
.listIndexes()
.toArray()
.catch(ignoreNsNotFoundForListIndexes)
.then(indexes => expect(indexes.every(idx => idx.name !== indexName)).to.be.ok);
}
assertSessionPinned(options) {
expect(options).to.have.property('session');
const session = options.session;
expect(session.transaction.isPinned).to.be.true;
}
assertSessionUnpinned(options) {
expect(options).to.have.property('session');
const session = options.session;
expect(session.transaction.isPinned).to.be.false;
}
}
describe('Transactions', function () {
const testContext = new TransactionsRunnerContext();
[
{ name: 'spec tests', specPath: 'transactions' },
{
name: 'withTransaction spec tests',
specPath: 'transactions/convenient-api'
}
].forEach(suiteSpec => {
describe(suiteSpec.name, function () {
const testSuites = loadSpecTests(suiteSpec.specPath);
after(() => testContext.teardown());
before(function () {
return testContext.setup(this.configuration);
});
function testFilter(spec) {
const SKIP_TESTS = [
// commitTransaction retry seems to be swallowed by mongos in these three cases
'commitTransaction retry succeeds on new mongos',
'commitTransaction retry fails on new mongos',
'unpin after transient error within a transaction and commit',
// FIXME(NODE-3074): unskip count tests when spec tests have been updated
'count',
// This test needs there to be multiple mongoses
// 'increment txnNumber',
// Skipping this until SPEC-1320 is resolved
// 'remain pinned after non-transient error on commit',
// Will be implemented as part of NODE-2034
'Client side error in command starting transaction',
'Client side error when transaction is in progress',
// Will be implemented as part of NODE-2538
'abortTransaction only retries once with RetryableWriteError from server',
'abortTransaction does not retry without RetryableWriteError label',
'commitTransaction does not retry error without RetryableWriteError label',
'commitTransaction retries once with RetryableWriteError from server'
];
return SKIP_TESTS.indexOf(spec.description) === -1;
}
generateTopologyTests(testSuites, testContext, testFilter);
});
});
describe('withTransaction', function () {
let session, sessionPool;
beforeEach(() => {
const topology = new Topology('localhost:27017');
sessionPool = topology.s.sessionPool;
session = new ClientSession(topology, sessionPool);
});
afterEach(() => {
sessionPool.endAllPooledSessions();
});
it('should provide a useful error if a Promise is not returned', {
metadata: { requires: { topology: ['replicaset', 'sharded'], mongodb: '>=4.1.5' } },
test: function (done) {
function fnThatDoesntReturnPromise() {
return false;
}
expect(() => session.withTransaction(fnThatDoesntReturnPromise)).to.throw(
/must return a Promise/
);
session.endSession(done);
}
});
it('should return readable error if promise rejected with no reason', {
metadata: { requires: { topology: ['replicaset', 'sharded'], mongodb: '>=4.0.2' } },
test: function (done) {
function fnThatReturnsBadPromise() {
return Promise.reject();
}
session
.withTransaction(fnThatReturnsBadPromise)
.then(() => done(Error('Expected error')))
.catch(err => {
expect(err).to.equal(undefined);
session.endSession(done);
});
}
});
});
describe('startTransaction', function () {
it('should error if transactions are not supported', {
metadata: { requires: { topology: ['sharded'], mongodb: '4.0.x' } },
test: function (done) {
const configuration = this.configuration;
const client = configuration.newClient(configuration.url());
client.connect((err, client) => {
const session = client.startSession();
const db = client.db(configuration.db);
const coll = db.collection('transaction_error_test');
coll.insertOne({ a: 1 }, err => {
expect(err).to.not.exist;
expect(() => session.startTransaction()).to.throw(
'Transactions are not supported on sharded clusters in MongoDB < 4.2.'
);
session.endSession(() => {
client.close(done);
});
});
});
}
});
it('should not error if transactions are supported', {
metadata: { requires: { topology: ['sharded'], mongodb: '>=4.1.0' } },
test: function (done) {
const configuration = this.configuration;
const client = configuration.newClient(configuration.url());
client.connect(err => {
expect(err).to.not.exist;
const session = client.startSession();
const db = client.db(configuration.db);
const coll = db.collection('transaction_error_test');
coll.insertOne({ a: 1 }, err => {
expect(err).to.not.exist;
expect(() => session.startTransaction()).to.not.throw();
session.abortTransaction(() => session.endSession(() => client.close(done)));
});
});
}
});
});
describe('TransientTransactionError', function () {
it('should have a TransientTransactionError label inside of a transaction', {
metadata: { requires: { topology: 'replicaset', mongodb: '>=4.0.0' } },
test: function (done) {
const configuration = this.configuration;
const client = configuration.newClient({ w: 1 });
client.connect(err => {
expect(err).to.not.exist;
const session = client.startSession();
const db = client.db(configuration.db);
db.collection('transaction_error_test_2').drop(() => {
db.createCollection('transaction_error_test_2', (err, coll) => {
expect(err).to.not.exist;
session.startTransaction();
coll.insertOne({ a: 1 }, { session }, err => {
expect(err).to.not.exist;
expect(session.inTransaction()).to.be.true;
client.db('admin').command(
{
configureFailPoint: 'failCommand',
mode: { times: 1 },
data: { failCommands: ['insert'], closeConnection: true }
},
err => {
expect(err).to.not.exist;
expect(session.inTransaction()).to.be.true;
coll.insertOne({ b: 2 }, { session }, err => {
expect(err).to.exist.and.to.be.an.instanceof(MongoNetworkError);
expect(err.hasErrorLabel('TransientTransactionError')).to.be.true;
session.abortTransaction(() => session.endSession(() => client.close(done)));
});
}
);
});
});
});
});
}
});
it('should not have a TransientTransactionError label outside of a transaction', {
metadata: { requires: { topology: 'replicaset', mongodb: '>=4.0.0' } },
test: function (done) {
const configuration = this.configuration;
const client = configuration.newClient({ w: 1 });
client.connect(err => {
expect(err).to.not.exist;
const db = client.db(configuration.db);
const coll = db.collection('transaction_error_test1');
client.db('admin').command(
{
configureFailPoint: 'failCommand',
mode: { times: 2 },
data: { failCommands: ['insert'], closeConnection: true }
},
err => {
expect(err).to.not.exist;
coll.insertOne({ a: 1 }, err => {
expect(err).to.exist.and.to.be.an.instanceOf(MongoNetworkError);
client.close(done);
});
}
);
});
}
});
});
});