Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
315 changes: 314 additions & 1 deletion data/sessions/dirty-session-errors.json
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,149 @@
}
}
},
{
"description": "Dirty explicit session is discarded (non-bulk write)",
"clientOptions": {
"retryWrites": true
},
"failPoint": {
"configureFailPoint": "failCommand",
"mode": {
"times": 1
},
"data": {
"failCommands": [
"findAndModify"
],
"closeConnection": true
}
},
"operations": [
{
"name": "assertSessionNotDirty",
"object": "testRunner",
"arguments": {
"session": "session0"
}
},
{
"name": "findOneAndUpdate",
"object": "collection",
"arguments": {
"session": "session0",
"filter": {
"_id": 1
},
"update": {
"$inc": {
"x": 1
}
},
"returnDocument": "Before"
},
"result": {
"_id": 1
}
},
{
"name": "assertSessionDirty",
"object": "testRunner",
"arguments": {
"session": "session0"
}
},
{
"name": "endSession",
"object": "session0"
},
{
"name": "find",
"object": "collection",
"arguments": {
"filter": {
"_id": -1
}
},
"result": []
},
{
"name": "assertDifferentLsidOnLastTwoCommands",
"object": "testRunner"
}
],
"expectations": [
{
"command_started_event": {
"command": {
"findAndModify": "test",
"query": {
"_id": 1
},
"update": {
"$inc": {
"x": 1
}
},
"new": false,
"lsid": "session0",
"txnNumber": {
"$numberLong": "1"
},
"readConcern": null,
"writeConcern": null
},
"command_name": "findAndModify",
"database_name": "session-tests"
}
},
{
"command_started_event": {
"command": {
"findAndModify": "test",
"query": {
"_id": 1
},
"update": {
"$inc": {
"x": 1
}
},
"new": false,
"lsid": "session0",
"txnNumber": {
"$numberLong": "1"
},
"readConcern": null,
"writeConcern": null
},
"command_name": "findAndModify",
"database_name": "session-tests"
}
},
{
"command_started_event": {
"command": {
"find": "test",
"filter": {
"_id": -1
}
},
"command_name": "find",
"database_name": "session-tests"
}
}
],
"outcome": {
"collection": {
"data": [
{
"_id": 1,
"x": 1
}
]
}
}
},
{
"description": "Dirty implicit session is discarded (write)",
"clientOptions": {
Expand Down Expand Up @@ -465,6 +608,128 @@
}
}
},
{
"description": "Dirty implicit session is discarded (non-bulk write)",
"clientOptions": {
"retryWrites": true
},
"failPoint": {
"configureFailPoint": "failCommand",
"mode": {
"times": 1
},
"data": {
"failCommands": [
"findAndModify"
],
"closeConnection": true
}
},
"operations": [
{
"name": "findOneAndUpdate",
"object": "collection",
"arguments": {
"filter": {
"_id": 1
},
"update": {
"$inc": {
"x": 1
}
},
"returnDocument": "Before"
},
"result": {
"_id": 1
}
},
{
"name": "find",
"object": "collection",
"arguments": {
"filter": {
"_id": -1
}
},
"result": []
},
{
"name": "assertDifferentLsidOnLastTwoCommands",
"object": "testRunner"
}
],
"expectations": [
{
"command_started_event": {
"command": {
"findAndModify": "test",
"query": {
"_id": 1
},
"update": {
"$inc": {
"x": 1
}
},
"new": false,
"txnNumber": {
"$numberLong": "1"
},
"readConcern": null,
"writeConcern": null
},
"command_name": "findAndModify",
"database_name": "session-tests"
}
},
{
"command_started_event": {
"command": {
"findAndModify": "test",
"query": {
"_id": 1
},
"update": {
"$inc": {
"x": 1
}
},
"new": false,
"txnNumber": {
"$numberLong": "1"
},
"readConcern": null,
"writeConcern": null
},
"command_name": "findAndModify",
"database_name": "session-tests"
}
},
{
"command_started_event": {
"command": {
"find": "test",
"filter": {
"_id": -1
}
},
"command_name": "find",
"database_name": "session-tests"
}
}
],
"outcome": {
"collection": {
"data": [
{
"_id": 1,
"x": 1
}
]
}
}
},
{
"description": "Dirty implicit session is discarded (read)",
"failPoint": {
Expand Down Expand Up @@ -518,6 +783,54 @@
]
}
}
},
{
"description": "Dirty implicit session is discarded (non-cursor returning read)",
"failPoint": {
"configureFailPoint": "failCommand",
"mode": {
"times": 2
},
"data": {
"failCommands": [
"aggregate"
],
"closeConnection": true
}
},
"operations": [
{
"name": "countDocuments",
"object": "collection",
"arguments": {
"filter": {}
},
"error": true
},
{
"name": "find",
"object": "collection",
"arguments": {
"filter": {
"_id": -1
}
},
"result": []
},
{
"name": "assertDifferentLsidOnLastTwoCommands",
"object": "testRunner"
}
],
"outcome": {
"collection": {
"data": [
{
"_id": 1
}
]
}
}
}
]
}
}
Loading