-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsimple-mongodb-test.js
49 lines (40 loc) · 1.47 KB
/
simple-mongodb-test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* Simple MongoDB connection test script
* Following Semantic Seed Venture Studio Coding Standards
*/
const { MongoClient } = require('mongodb');
// Create a MongoDB connection string with the root user
const uri = 'mongodb://opencap:password123@localhost:27017/opencap_test?authSource=admin';
async function testMongoConnection() {
console.log('Testing MongoDB connection...');
console.log('Connection URI:', uri);
try {
// Create a new MongoClient
const client = new MongoClient(uri, {
useNewUrlParser: true,
useUnifiedTopology: true,
serverSelectionTimeoutMS: 5000
});
// Connect to the MongoDB server
await client.connect();
console.log('✅ Successfully connected to MongoDB');
// List all databases
const adminDb = client.db('admin');
const dbs = await adminDb.admin().listDatabases();
console.log('Available databases:');
dbs.databases.forEach(db => console.log(` - ${db.name}`));
// Try to access the test database
const testDb = client.db('opencap_test');
const collections = await testDb.listCollections().toArray();
console.log('\nCollections in opencap_test:');
collections.forEach(coll => console.log(` - ${coll.name}`));
// Close the connection
await client.close();
console.log('\nConnection closed');
} catch (error) {
console.error('❌ MongoDB connection error:', error.message);
console.error('Error details:', error);
}
}
// Run the test
testMongoConnection();