ROOTPLOIT
Server: LiteSpeed
System: Linux in-mum-web1878.main-hosting.eu 5.14.0-570.21.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jun 11 07:22:35 EDT 2025 x86_64
User: u435929562 (435929562)
PHP: 7.4.33
Disabled: system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail
Upload Files
File: //opt/go/pkg/mod/go.mongodb.org/[email protected]/testdata/load-balancers/cursors.json
{
  "description": "cursors are correctly pinned to connections for load-balanced clusters",
  "schemaVersion": "1.3",
  "runOnRequirements": [
    {
      "topologies": [
        "load-balanced"
      ]
    }
  ],
  "createEntities": [
    {
      "client": {
        "id": "client0",
        "useMultipleMongoses": true,
        "observeEvents": [
          "commandStartedEvent",
          "commandSucceededEvent",
          "commandFailedEvent",
          "connectionReadyEvent",
          "connectionClosedEvent",
          "connectionCheckedOutEvent",
          "connectionCheckedInEvent"
        ]
      }
    },
    {
      "database": {
        "id": "database0",
        "client": "client0",
        "databaseName": "database0Name"
      }
    },
    {
      "collection": {
        "id": "collection0",
        "database": "database0",
        "collectionName": "coll0"
      }
    },
    {
      "collection": {
        "id": "collection1",
        "database": "database0",
        "collectionName": "coll1"
      }
    },
    {
      "collection": {
        "id": "collection2",
        "database": "database0",
        "collectionName": "coll2"
      }
    }
  ],
  "initialData": [
    {
      "collectionName": "coll0",
      "databaseName": "database0Name",
      "documents": [
        {
          "_id": 1
        },
        {
          "_id": 2
        },
        {
          "_id": 3
        }
      ]
    },
    {
      "collectionName": "coll1",
      "databaseName": "database0Name",
      "documents": []
    },
    {
      "collectionName": "coll2",
      "databaseName": "database0Name",
      "documents": []
    }
  ],
  "tests": [
    {
      "description": "no connection is pinned if all documents are returned in the initial batch",
      "operations": [
        {
          "name": "createFindCursor",
          "object": "collection0",
          "arguments": {
            "filter": {}
          },
          "saveResultAsEntity": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "find": "coll0",
                  "filter": {}
                },
                "commandName": "find"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": 0,
                    "firstBatch": {
                      "$$type": "array"
                    },
                    "ns": {
                      "$$type": "string"
                    }
                  }
                },
                "commandName": "find"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    },
    {
      "description": "pinned connections are returned when the cursor is drained",
      "operations": [
        {
          "name": "createFindCursor",
          "object": "collection0",
          "arguments": {
            "filter": {},
            "batchSize": 2
          },
          "saveResultAsEntity": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 1
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectResult": {
            "_id": 1
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectResult": {
            "_id": 2
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectResult": {
            "_id": 3
          }
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        },
        {
          "name": "close",
          "object": "cursor0"
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "find": "coll0",
                  "filter": {},
                  "batchSize": 2
                },
                "commandName": "find"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": {
                      "$$type": "long"
                    },
                    "firstBatch": {
                      "$$type": "array"
                    },
                    "ns": {
                      "$$type": "string"
                    }
                  }
                },
                "commandName": "find"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "getMore": {
                    "$$type": "long"
                  },
                  "collection": "coll0"
                },
                "commandName": "getMore"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": 0,
                    "ns": {
                      "$$type": "string"
                    },
                    "nextBatch": {
                      "$$type": "array"
                    }
                  }
                },
                "commandName": "getMore"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    },
    {
      "description": "pinned connections are returned to the pool when the cursor is closed",
      "operations": [
        {
          "name": "createFindCursor",
          "object": "collection0",
          "arguments": {
            "filter": {},
            "batchSize": 2
          },
          "saveResultAsEntity": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 1
          }
        },
        {
          "name": "close",
          "object": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "find": "coll0",
                  "filter": {},
                  "batchSize": 2
                },
                "commandName": "find"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": {
                      "$$type": "long"
                    },
                    "firstBatch": {
                      "$$type": "array"
                    },
                    "ns": {
                      "$$type": "string"
                    }
                  }
                },
                "commandName": "find"
              }
            },
            {
              "commandStartedEvent": {
                "commandName": "killCursors"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "killCursors"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    },
    {
      "description": "pinned connections are not returned after an network error during getMore",
      "operations": [
        {
          "name": "failPoint",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "failPoint": {
              "configureFailPoint": "failCommand",
              "mode": {
                "times": 1
              },
              "data": {
                "failCommands": [
                  "getMore"
                ],
                "closeConnection": true
              }
            }
          }
        },
        {
          "name": "createFindCursor",
          "object": "collection0",
          "arguments": {
            "filter": {},
            "batchSize": 2
          },
          "saveResultAsEntity": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 1
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectResult": {
            "_id": 1
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectResult": {
            "_id": 2
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectError": {
            "isClientError": true
          }
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 1
          }
        },
        {
          "name": "close",
          "object": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "find": "coll0",
                  "filter": {},
                  "batchSize": 2
                },
                "commandName": "find"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": {
                      "$$type": "long"
                    },
                    "firstBatch": {
                      "$$type": "array"
                    },
                    "ns": {
                      "$$type": "string"
                    }
                  }
                },
                "commandName": "find"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "getMore": {
                    "$$type": "long"
                  },
                  "collection": "coll0"
                },
                "commandName": "getMore"
              }
            },
            {
              "commandFailedEvent": {
                "commandName": "getMore"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            },
            {
              "connectionClosedEvent": {
                "reason": "error"
              }
            }
          ]
        }
      ]
    },
    {
      "description": "pinned connections are returned after a network error during a killCursors request",
      "operations": [
        {
          "name": "failPoint",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "failPoint": {
              "configureFailPoint": "failCommand",
              "mode": {
                "times": 1
              },
              "data": {
                "failCommands": [
                  "killCursors"
                ],
                "closeConnection": true
              }
            }
          }
        },
        {
          "name": "createFindCursor",
          "object": "collection0",
          "arguments": {
            "filter": {},
            "batchSize": 2
          },
          "saveResultAsEntity": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 1
          }
        },
        {
          "name": "close",
          "object": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "find": "coll0",
                  "filter": {},
                  "batchSize": 2
                },
                "commandName": "find"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": {
                      "$$type": "long"
                    },
                    "firstBatch": {
                      "$$type": "array"
                    },
                    "ns": {
                      "$$type": "string"
                    }
                  }
                },
                "commandName": "find"
              }
            },
            {
              "commandStartedEvent": {
                "commandName": "killCursors"
              }
            },
            {
              "commandFailedEvent": {
                "commandName": "killCursors"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            },
            {
              "connectionClosedEvent": {
                "reason": "error"
              }
            }
          ]
        }
      ]
    },
    {
      "description": "pinned connections are not returned to the pool after a non-network error on getMore",
      "operations": [
        {
          "name": "failPoint",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "failPoint": {
              "configureFailPoint": "failCommand",
              "mode": {
                "times": 1
              },
              "data": {
                "failCommands": [
                  "getMore"
                ],
                "errorCode": 7
              }
            }
          }
        },
        {
          "name": "createFindCursor",
          "object": "collection0",
          "arguments": {
            "filter": {},
            "batchSize": 2
          },
          "saveResultAsEntity": "cursor0"
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectResult": {
            "_id": 1
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectResult": {
            "_id": 2
          }
        },
        {
          "name": "iterateUntilDocumentOrError",
          "object": "cursor0",
          "expectError": {
            "errorCode": 7
          }
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 1
          }
        },
        {
          "name": "close",
          "object": "cursor0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "find": "coll0",
                  "filter": {},
                  "batchSize": 2
                },
                "commandName": "find"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": {
                      "$$type": "long"
                    },
                    "firstBatch": {
                      "$$type": "array"
                    },
                    "ns": {
                      "$$type": "string"
                    }
                  }
                },
                "commandName": "find"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "getMore": {
                    "$$type": "long"
                  },
                  "collection": "coll0"
                },
                "commandName": "getMore"
              }
            },
            {
              "commandFailedEvent": {
                "commandName": "getMore"
              }
            },
            {
              "commandStartedEvent": {
                "commandName": "killCursors"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "killCursors"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    },
    {
      "description": "aggregate pins the cursor to a connection",
      "operations": [
        {
          "name": "aggregate",
          "object": "collection0",
          "arguments": {
            "pipeline": [],
            "batchSize": 2
          }
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "aggregate": "coll0",
                  "cursor": {
                    "batchSize": 2
                  }
                },
                "commandName": "aggregate"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "aggregate"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "getMore": {
                    "$$type": "long"
                  },
                  "collection": "coll0"
                },
                "commandName": "getMore"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": 0,
                    "ns": {
                      "$$type": "string"
                    },
                    "nextBatch": {
                      "$$type": "array"
                    }
                  }
                },
                "commandName": "getMore"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    },
    {
      "description": "listCollections pins the cursor to a connection",
      "runOnRequirements": [
        {
          "serverless": "forbid"
        }
      ],
      "operations": [
        {
          "name": "listCollections",
          "object": "database0",
          "arguments": {
            "filter": {},
            "batchSize": 2
          }
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "listCollections": 1,
                  "cursor": {
                    "batchSize": 2
                  }
                },
                "commandName": "listCollections",
                "databaseName": "database0Name"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "listCollections"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "getMore": {
                    "$$type": "long"
                  },
                  "collection": {
                    "$$type": "string"
                  }
                },
                "commandName": "getMore"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": 0,
                    "ns": {
                      "$$type": "string"
                    },
                    "nextBatch": {
                      "$$type": "array"
                    }
                  }
                },
                "commandName": "getMore"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    },
    {
      "description": "listIndexes pins the cursor to a connection",
      "operations": [
        {
          "name": "createIndex",
          "object": "collection0",
          "arguments": {
            "keys": {
              "x": 1
            },
            "name": "x_1"
          }
        },
        {
          "name": "createIndex",
          "object": "collection0",
          "arguments": {
            "keys": {
              "y": 1
            },
            "name": "y_1"
          }
        },
        {
          "name": "listIndexes",
          "object": "collection0",
          "arguments": {
            "batchSize": 2
          }
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "command": {
                  "createIndexes": "coll0",
                  "indexes": [
                    {
                      "name": "x_1",
                      "key": {
                        "x": 1
                      }
                    }
                  ]
                },
                "commandName": "createIndexes"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "createIndexes"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "createIndexes": "coll0",
                  "indexes": [
                    {
                      "name": "y_1",
                      "key": {
                        "y": 1
                      }
                    }
                  ]
                },
                "commandName": "createIndexes"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "createIndexes"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "listIndexes": "coll0",
                  "cursor": {
                    "batchSize": 2
                  }
                },
                "commandName": "listIndexes",
                "databaseName": "database0Name"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "listIndexes"
              }
            },
            {
              "commandStartedEvent": {
                "command": {
                  "getMore": {
                    "$$type": "long"
                  },
                  "collection": "coll0"
                },
                "commandName": "getMore"
              }
            },
            {
              "commandSucceededEvent": {
                "reply": {
                  "cursor": {
                    "id": 0,
                    "ns": {
                      "$$type": "string"
                    },
                    "nextBatch": {
                      "$$type": "array"
                    }
                  }
                },
                "commandName": "getMore"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    },
    {
      "description": "change streams pin to a connection",
      "runOnRequirements": [
        {
          "serverless": "forbid"
        }
      ],
      "operations": [
        {
          "name": "createChangeStream",
          "object": "collection0",
          "arguments": {
            "pipeline": []
          },
          "saveResultAsEntity": "changeStream0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 1
          }
        },
        {
          "name": "close",
          "object": "changeStream0"
        },
        {
          "name": "assertNumberConnectionsCheckedOut",
          "object": "testRunner",
          "arguments": {
            "client": "client0",
            "connections": 0
          }
        }
      ],
      "expectEvents": [
        {
          "client": "client0",
          "events": [
            {
              "commandStartedEvent": {
                "commandName": "aggregate"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "aggregate"
              }
            },
            {
              "commandStartedEvent": {
                "commandName": "killCursors"
              }
            },
            {
              "commandSucceededEvent": {
                "commandName": "killCursors"
              }
            }
          ]
        },
        {
          "client": "client0",
          "eventType": "cmap",
          "events": [
            {
              "connectionReadyEvent": {}
            },
            {
              "connectionCheckedOutEvent": {}
            },
            {
              "connectionCheckedInEvent": {}
            }
          ]
        }
      ]
    }
  ]
}