mongo/jstests/libs/uuid_util.js

37 lines
1.4 KiB
JavaScript

// Utilities for testing UUIDs.
/**
* Reads the collection entry for 'nss' from config.collections, asserts that such an entry exists,
* and returns its 'uuid' field, which may be undefined.
*/
export function getUUIDFromConfigCollections(conn, nss) {
const configDB = conn.getSiblingDB ? conn.getSiblingDB("config") : conn.getDB("config");
let collEntry = configDB.collections.findOne({_id: nss});
assert.neq(undefined, collEntry);
return collEntry.uuid;
}
/**
* Calls listCollections on a connection to 'db' with a filter for 'collName', asserts that a result
* for 'collName' was returned, and returns its 'uuid' field, which may be undefined.
*/
export function getUUIDFromListCollections(db, collName) {
let listCollsRes = db.runCommand({listCollections: 1, filter: {name: collName}});
assert.commandWorked(listCollsRes);
assert.neq(undefined, listCollsRes.cursor);
assert.neq(undefined, listCollsRes.cursor.firstBatch);
assert.eq(1, listCollsRes.cursor.firstBatch.length);
assert.neq(undefined, listCollsRes.cursor.firstBatch[0].info);
return listCollsRes.cursor.firstBatch[0].info.uuid;
}
/**
* Takes a UUID object in the form of UUID("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx") and returns a
* string of the form xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx.
*
*/
export function extractUUIDFromObject(uuid) {
const uuidString = uuid.toString();
return uuidString.substring(6, uuidString.length - 2);
}