mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
// Validate connect message display.
|
|
//
|
|
load("jstests/free_mon/libs/free_mon.js");
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
const mock_web = new FreeMonWebServer();
|
|
mock_web.start();
|
|
|
|
const mongod = MongoRunner.runMongod({
|
|
setParameter: "cloudFreeMonitoringEndpointURL=" + mock_web.getURL(),
|
|
});
|
|
assert.neq(mongod, null, 'mongod not running');
|
|
const admin = mongod.getDB('admin');
|
|
|
|
function getConnectAnnounce() {
|
|
// Capture message as it'd be presented to a user.
|
|
clearRawMongoProgramOutput();
|
|
const exitCode = runMongoProgram(
|
|
'mongo', '--port', mongod.port, '--eval', "shellHelper( 'show', 'freeMonitoring' );");
|
|
assert.eq(exitCode, 0);
|
|
return rawMongoProgramOutput();
|
|
}
|
|
|
|
// state === 'enabled'.
|
|
admin.enableFreeMonitoring();
|
|
WaitForRegistration(mongod);
|
|
const reminder = "To see your monitoring data";
|
|
assert.neq(getConnectAnnounce().search(reminder), -1, 'userReminder not found');
|
|
|
|
// Cleanup.
|
|
MongoRunner.stopMongod(mongod);
|
|
mock_web.stop();
|
|
})();
|