Skip to content

Commit 9abf04f

Browse files
committedSep 30, 2020
feat(MongoMemoryServer): deprecate "getConnectionString"
1 parent b088af2 commit 9abf04f

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed
 

‎packages/mongodb-memory-server-core/src/MongoMemoryServer.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import MongoInstance from './util/MongoInstance';
66
import { MongoBinaryOpts } from './util/MongoBinary';
77
import { MongoMemoryInstancePropT, StorageEngineT, SpawnOptions } from './types';
88
import debug from 'debug';
9+
import { deprecate } from 'util';
910

1011
const log = debug('MongoMS:MongoMemoryServer');
1112

@@ -258,8 +259,11 @@ export default class MongoMemoryServer {
258259
* @deprecated
259260
*/
260261
async getConnectionString(otherDbName: string | boolean = false): Promise<string> {
261-
// should this function be marked deprecated? because it is just a pass-through to getUri
262-
return this.getUri(otherDbName);
262+
return deprecate(
263+
this.getUri,
264+
'"MongoMemoryReplSet.getConnectionString" is deprecated, use ".getUri"',
265+
'MDEP001'
266+
).call(this, otherDbName);
263267
}
264268

265269
/**

‎packages/mongodb-memory-server-core/src/__tests__/multipleDB-test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let mongoServer2: MongoMemoryServer;
1212

1313
beforeAll(async () => {
1414
mongoServer1 = new MongoMemoryServer();
15-
const mongoUri = await mongoServer1.getConnectionString();
15+
const mongoUri = await mongoServer1.getUri();
1616
con1 = await MongoClient.connect(mongoUri, {
1717
useNewUrlParser: true,
1818
useUnifiedTopology: true,
@@ -21,7 +21,7 @@ beforeAll(async () => {
2121
db1 = con1.db(await mongoServer1.getDbName());
2222

2323
mongoServer2 = new MongoMemoryServer();
24-
const mongoUri2 = await mongoServer2.getConnectionString();
24+
const mongoUri2 = await mongoServer2.getUri();
2525
con2 = await MongoClient.connect(mongoUri2, {
2626
useNewUrlParser: true,
2727
useUnifiedTopology: true,
@@ -61,13 +61,13 @@ describe('Multiple mongoServers', () => {
6161
});
6262

6363
it('should have different uri', async () => {
64-
const uri1 = await mongoServer1.getConnectionString();
65-
const uri2 = await mongoServer2.getConnectionString();
64+
const uri1 = await mongoServer1.getUri();
65+
const uri2 = await mongoServer2.getUri();
6666
expect(uri1).not.toEqual(uri2);
6767
});
6868

6969
it('v6.0.0 adds "?" to the connection string (uri)', async () => {
70-
const uri1 = await mongoServer1.getConnectionString();
70+
const uri1 = await mongoServer1.getUri();
7171
expect(uri1.includes('?')).toBeTruthy();
7272
});
7373
});

‎packages/mongodb-memory-server-core/src/__tests__/singleDB-test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let mongoServer: MongoMemoryServer;
88

99
beforeAll(async () => {
1010
mongoServer = new MongoMemoryServer();
11-
const mongoUri = await mongoServer.getConnectionString();
11+
const mongoUri = await mongoServer.getUri();
1212
con = await MongoClient.connect(mongoUri, {
1313
useNewUrlParser: true,
1414
useUnifiedTopology: true,

0 commit comments

Comments
 (0)
Please sign in to comment.