mirror of https://github.com/mongodb/mongo
21 lines
581 B
JavaScript
21 lines
581 B
JavaScript
/*
|
|
* Test that sessions on sharded clusters cannot be resumed by deleted and recreated user.
|
|
* @tags: [requires_sharding]
|
|
*/
|
|
import {kInvalidationIntervalSecs, runTest} from "jstests/auth/deleted_recreated_user_base.js";
|
|
import {ShardingTest} from "jstests/libs/shardingtest.js";
|
|
|
|
const st = new ShardingTest({
|
|
shards: 1,
|
|
mongos: 2,
|
|
config: 1,
|
|
other: {
|
|
keyFile: "jstests/libs/key1",
|
|
mongosOptions: {
|
|
setParameter: {userCacheInvalidationIntervalSecs: kInvalidationIntervalSecs},
|
|
},
|
|
},
|
|
});
|
|
runTest(st.s0, st.s1);
|
|
st.stop();
|