-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
127 lines (112 loc) · 3.56 KB
/
index.ts
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import { type ChildProcess, spawn } from 'node:child_process';
import os from 'node:os';
class MongoInstance {
private mongoProcess: ChildProcess | null = null;
public port: number;
public logPath: string;
public dbPath: string;
/** For Windows only */
public mongodExeLocation?: string;
constructor(
port: number,
logPath: string,
dbPath: string,
mongodExeLocation?: string,
) {
this.port = port;
this.logPath = logPath;
this.dbPath = dbPath;
this.mongodExeLocation = mongodExeLocation;
}
/**
* Starts the MongoDB process with the specified configuration.
*
* This method initializes and spawns a MongoDB process using the `mongod` command
* with the provided arguments and options. It sets up event listeners to handle
* errors and process termination.
*
* @throws {Error} If the MongoDB process encounters an error during startup or
* if it exits with a non-zero code.
*/
public start(): void {
const engine = 'ephemeralForTest';
const args = [
`--port=${this.port}`,
`--dbpath=${this.dbPath}`,
`--logpath=${this.logPath}`,
'--nojournal',
`--storageEngine=${engine}`,
'--quiet',
];
const options =
os.platform() === 'win32' && this.mongodExeLocation
? { cwd: this.mongodExeLocation }
: undefined;
this.mongoProcess = spawn('mongod', args, options);
this.mongoProcess.on('error', (err) => {
console.error('Error starting MongoDB process:', err);
throw new Error(`MongoDB process error: ${err.message}`);
});
this.mongoProcess.on('close', (code) => {
if (code !== 0 && code !== null) {
throw new Error(
`MongoDB process exited with code ${code}. Refer to the log file for more info.`,
);
}
});
}
/**
* Enables debugging for the MongoDB process by attaching listeners to its
* standard output, standard error, and lifecycle events.
*
* - Logs data from the process's standard output (`stdout`) to the console.
* - Logs data from the process's standard error (`stderr`) to the console.
* - Logs any errors emitted by the process.
* - Logs the exit code when the process closes.
*
* If the MongoDB process is not running, a warning is logged and no listeners are attached.
*/
public debug(): void {
if (!this.mongoProcess) {
console.warn('MongoDB process is not running.');
return;
}
this.mongoProcess.stdout?.on('data', (data) => {
console.log('stdout:', data.toString());
});
this.mongoProcess.stderr?.on('data', (data) => {
console.error('stderr:', data.toString());
});
this.mongoProcess.on('error', (err) => {
console.error('MongoDB process error:', err);
});
this.mongoProcess.on('close', (code) => {
console.log(`MongoDB process exited with code ${code}`);
});
}
/**
* Stops the MongoDB process if it is running.
*
* This method checks if the `mongoProcess` is active. If it is, the process is terminated
* using the "SIGKILL" signal, and the `mongoProcess` reference is set to `null`.
* If the process is not running, a warning message is logged to the console.
*/
public stop(): void {
if (this.mongoProcess) {
this.mongoProcess.kill('SIGKILL');
this.mongoProcess = null;
} else {
console.warn('MongoDB process is not running.');
}
}
/**
* Constructs and returns the MongoDB connection URI for a given database name.
*
* @param dbName - The name of the database to include in the URI.
* @returns The MongoDB connection URI in the format `mongodb://localhost:<port>/<dbName>`.
*/
public getDbUri(dbName: string): string {
return `mongodb://localhost:${this.port}/${dbName}`;
}
}
export { MongoInstance };