summaryrefslogtreecommitdiff
path: root/jstests/core/txns/no_new_transactions_when_prepared_transaction_in_progress.js
blob: 0da96c8d8cbce99aaed7117f357dccf5e929a1e0 (plain)
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
/**
 * Tests that we cannot start a new transaction when a prepared transaction exists on the session.
 * @tags: [uses_transactions, uses_prepare_transaction]
 *
 */

(function() {
    "use strict";
    load("jstests/core/txns/libs/prepare_helpers.js");

    const dbName = "test";
    const collName = "no_new_transactions_when_prepared_transaction_in_progress";
    const testDB = db.getSiblingDB(dbName);

    testDB.runCommand({drop: collName, writeConcern: {w: "majority"}});

    assert.commandWorked(testDB.runCommand({create: collName, writeConcern: {w: "majority"}}));

    const sessionOptions = {causalConsistency: false};
    const session = testDB.getMongo().startSession(sessionOptions);
    const sessionDb = session.getDatabase(dbName);
    const sessionColl = sessionDb.getCollection(collName);

    jsTestLog(
        "Test starting a new transaction while an existing prepared transaction exists on the " +
        "session.");
    session.startTransaction();
    assert.commandWorked(sessionColl.insert({_id: "insert-1"}));
    PrepareHelpers.prepareTransaction(session);
    assert.commandFailedWithCode(sessionDb.runCommand({
        insert: collName,
        documents: [{_id: "cannot_start"}],
        readConcern: {level: "snapshot"},
        txnNumber: NumberLong(1),
        stmtId: NumberInt(0),
        startTransaction: true,
        autocommit: false
    }),
                                 ErrorCodes.PreparedTransactionInProgress);

    /*
    TODO: SERVER-36057 uncomment after the session options validation refactor is complete.

    jsTestLog(
        "Test error precedence when executing a malformed command during a prepared transaction.");
    // The following command specifies txnNumber: 2 without startTransaction: true.
    assert.commandFailedWithCode(sessionDb.runCommand({
        insert: collName,
        documents: [{_id: "no_such_txn"}],
        readConcern: {level: "snapshot"},
        txnNumber: NumberLong(2),
        stmtId: NumberInt(0),
        autocommit: false
    }),
                                 ErrorCodes.NoSuchTransaction);
    */
    session.abortTransaction();

    session.endSession();
}());