0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/noPassthrough/refresh_logical_session_cache_now.js
2019-07-27 11:02:23 -04:00

49 lines
1.6 KiB
JavaScript

(function() {
"use script";
// This test makes assertions about the number of sessions, which are not compatible with
// implicit sessions.
TestData.disableImplicitSessions = true;
var res;
var refresh = {refreshLogicalSessionCacheNow: 1};
var startSession = {startSession: 1};
// Start up a standalone server.
var conn = MongoRunner.runMongod();
var admin = conn.getDB("admin");
var config = conn.getDB("config");
// Trigger an initial refresh, as a sanity check.
res = admin.runCommand(refresh);
assert.commandWorked(res, "failed to refresh");
// Start a session. Should not be in the collection yet.
res = admin.runCommand(startSession);
assert.commandWorked(res, "unable to start session");
assert.eq(config.system.sessions.count(), 0, "should not have session records yet");
// Trigger a refresh. Session should now be in the collection.
res = admin.runCommand(refresh);
assert.commandWorked(res, "failed to refresh");
assert.eq(config.system.sessions.count(), 1, "should have written session records");
// Start some new sessions. Should not be in the collection yet.
var numSessions = 100;
for (var i = 0; i < numSessions; i++) {
res = admin.runCommand(startSession);
assert.commandWorked(res, "unable to start session");
}
assert.eq(config.system.sessions.count(), 1, "should not have more session records yet");
// Trigger another refresh. All sessions should now be in the collection.
res = admin.runCommand(refresh);
assert.commandWorked(res, "failed to refresh");
assert.eq(config.system.sessions.count(), numSessions + 1, "should have written session records");
MongoRunner.stopMongod(conn);
}());