Migrate js tests starting from j-z. Include SERVER-12920 Update use_power_of_2.js Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
66 lines
2.4 KiB
JavaScript
66 lines
2.4 KiB
JavaScript
// Ensure that inserts and updates of the system.users collection validate the schema of inserted
|
|
// documents.
|
|
|
|
mydb = db.getSisterDB( "validate_user_documents" );
|
|
|
|
function assertGLEOK(status) {
|
|
assert(status.ok && status.err === null,
|
|
"Expected OK status object; found " + tojson(status));
|
|
}
|
|
|
|
function assertGLENotOK(status) {
|
|
assert(status.ok && status.err !== null,
|
|
"Expected not-OK status object; found " + tojson(status));
|
|
}
|
|
|
|
mydb.dropDatabase();
|
|
mydb.dropAllUsers();
|
|
|
|
//
|
|
// Tests of the insert path
|
|
//
|
|
|
|
// V0 user document document; insert should fail.
|
|
assert.commandFailed(mydb.runCommand({ createUser:1,
|
|
user: "spencer",
|
|
pwd: "password",
|
|
readOnly: true }));
|
|
|
|
// V1 user document; insert should fail.
|
|
assert.commandFailed(mydb.runCommand({ createUser:1,
|
|
user: "spencer",
|
|
userSource: "test2",
|
|
roles: ["dbAdmin"] }));
|
|
|
|
// Valid V2 user document; insert should succeed.
|
|
assert.commandWorked(mydb.runCommand({ createUser: "spencer",
|
|
pwd: "password",
|
|
roles: ["dbAdmin"] }));
|
|
|
|
// Valid V2 user document; insert should succeed.
|
|
assert.commandWorked(mydb.runCommand({ createUser: "andy",
|
|
pwd: "password",
|
|
roles: [{role: "dbAdmin",
|
|
db: "validate_user_documents",
|
|
hasRole: true,
|
|
canDelegate: false}] }));
|
|
|
|
// Non-existent role; insert should fail
|
|
assert.commandFailed(mydb.runCommand({ createUser: "bob",
|
|
pwd: "password",
|
|
roles: ["fakeRole123"] }));
|
|
|
|
//
|
|
// Tests of the update path
|
|
//
|
|
|
|
// Update a document in a legal way, expect success.
|
|
assert.commandWorked(mydb.runCommand({updateUser: 'spencer', roles: ['read']}));
|
|
|
|
// Update a document in a way that is illegal, expect failure.
|
|
assert.commandFailed(mydb.runCommand({updateUser: 'spencer', readOnly: true}));
|
|
assert.commandFailed(mydb.runCommand({updateUser: 'spencer', pwd: ""}));
|
|
assert.commandFailed(mydb.runCommand({updateUser: 'spencer', roles: ['fakeRole123']}));
|
|
|
|
mydb.dropDatabase();
|