37 lines
1.8 KiB
TypeScript
37 lines
1.8 KiB
TypeScript
import { strict as assert } from "node:assert";
|
|
import { test } from "vitest";
|
|
import { mongoUrlParam, setMongoUrlParam, mongodbAuthFailureHint } from "../../apps/desktop/src/lib/mongoConnectionOptions.ts";
|
|
|
|
test("reads MongoDB authSource from URL params", () => {
|
|
assert.equal(mongoUrlParam("?replicaSet=rs0&authSource=admin", "authSource"), "admin");
|
|
});
|
|
|
|
test("sets MongoDB authSource while preserving other URL params", () => {
|
|
assert.equal(setMongoUrlParam("replicaSet=rs0", "authSource", "admin"), "replicaSet=rs0&authSource=admin");
|
|
});
|
|
|
|
test("removes empty MongoDB authSource from URL params", () => {
|
|
assert.equal(setMongoUrlParam("replicaSet=rs0&authSource=admin", "authSource", ""), "replicaSet=rs0");
|
|
});
|
|
|
|
test("adds a MongoDB authSource hint for legacy authentication failures", () => {
|
|
const message = "Agent RPC error: Exception authenticating MongoCredential{mechanism=SCRAM-SHA-1, userName='rwuser', source='gray_lite_twin_fat'}";
|
|
|
|
assert.equal(
|
|
mongodbAuthFailureHint(message),
|
|
"Agent RPC error: Exception authenticating MongoCredential{mechanism=SCRAM-SHA-1, userName='rwuser', source='gray_lite_twin_fat'}\n\nCurrent authentication database: gray_lite_twin_fat. If this user was created in admin, set Authentication database to admin or add authSource=admin to URL params.",
|
|
);
|
|
});
|
|
|
|
test("adds a MongoDB URL encoding hint for reserved password characters", () => {
|
|
const message = "MongoDB connection failed: Kind: An invalid argument was provided: password must be URL encoded";
|
|
|
|
assert.match(mongodbAuthFailureHint(message), /@ becomes %40/);
|
|
});
|
|
|
|
test("adds a MongoDB listDatabases permission hint", () => {
|
|
const message = "Command failed with error 13 (Unauthorized): not authorized on admin to execute command { listDatabases: 1 }";
|
|
|
|
assert.match(mongodbAuthFailureHint(message), /does not have permission to run listDatabases/);
|
|
});
|