@@ -14,7 +14,11 @@ import { promises as fs, createReadStream } from 'fs';
14
14
import { promisify } from 'util' ;
15
15
import path from 'path' ;
16
16
import os from 'os' ;
17
- import { readReplLogfile , setTemporaryHomeDirectory } from './repl-helpers' ;
17
+ import {
18
+ readReplLogfile ,
19
+ setTemporaryHomeDirectory ,
20
+ useTmpdir ,
21
+ } from './repl-helpers' ;
18
22
import { bson } from '@mongosh/service-provider-core' ;
19
23
import type { Server as HTTPServer } from 'http' ;
20
24
import { createServer as createHTTPServer } from 'http' ;
@@ -1363,7 +1367,7 @@ describe('e2e', function () {
1363
1367
let logBasePath : string ;
1364
1368
let historyPath : string ;
1365
1369
let readConfig : ( ) => Promise < any > ;
1366
- let readLogFile : < T = LogEntry > ( ) => Promise < T [ ] > ;
1370
+ let readLogFile : < T = LogEntry > ( path ?: string ) => Promise < T [ ] > ;
1367
1371
let startTestShell : ( ...extraArgs : string [ ] ) => Promise < TestShell > ;
1368
1372
1369
1373
beforeEach ( function ( ) {
@@ -1400,11 +1404,14 @@ describe('e2e', function () {
1400
1404
}
1401
1405
readConfig = async ( ) =>
1402
1406
EJSON . parse ( await fs . readFile ( configPath , 'utf8' ) ) ;
1403
- readLogFile = async ( ) => {
1407
+ readLogFile = async ( customBasePath ?: string ) => {
1404
1408
if ( ! shell . logId ) {
1405
1409
throw new Error ( 'Shell does not have a logId associated with it' ) ;
1406
1410
}
1407
- const logPath = path . join ( logBasePath , `${ shell . logId } _log` ) ;
1411
+ const logPath = path . join (
1412
+ customBasePath ?? logBasePath ,
1413
+ `${ shell . logId } _log`
1414
+ ) ;
1408
1415
return readReplLogfile ( logPath ) ;
1409
1416
} ;
1410
1417
startTestShell = async ( ...extraArgs : string [ ] ) => {
@@ -1565,6 +1572,112 @@ describe('e2e', function () {
1565
1572
) . to . have . lengthOf ( 1 ) ;
1566
1573
} ) ;
1567
1574
1575
+ describe ( 'with custom log location' , function ( ) {
1576
+ const customLogDir = useTmpdir ( ) ;
1577
+
1578
+ it ( 'fails with relative or invalid paths' , async function ( ) {
1579
+ const globalConfig = path . join ( homedir , 'globalconfig.conf' ) ;
1580
+ await fs . writeFile (
1581
+ globalConfig ,
1582
+ `mongosh:\n logLocation: "./some-relative-path"`
1583
+ ) ;
1584
+
1585
+ shell = this . startTestShell ( {
1586
+ args : [ '--nodb' ] ,
1587
+ env : {
1588
+ ...env ,
1589
+ MONGOSH_GLOBAL_CONFIG_FILE_FOR_TESTING : globalConfig ,
1590
+ } ,
1591
+ forceTerminal : true ,
1592
+ } ) ;
1593
+ await shell . waitForPrompt ( ) ;
1594
+ shell . assertContainsOutput ( 'Ignoring config option "logLocation"' ) ;
1595
+ shell . assertContainsOutput (
1596
+ 'must be a valid absolute path or empty'
1597
+ ) ;
1598
+
1599
+ expect (
1600
+ await shell . executeLine (
1601
+ 'config.set("logLocation", "[123123123123]")'
1602
+ )
1603
+ ) . contains (
1604
+ 'Cannot set option "logLocation": logLocation must be a valid absolute path or empty'
1605
+ ) ;
1606
+ } ) ;
1607
+
1608
+ it ( 'gets created according to logLocation, if set' , async function ( ) {
1609
+ const globalConfig = path . join ( homedir , 'globalconfig.conf' ) ;
1610
+ await fs . writeFile (
1611
+ globalConfig ,
1612
+ `mongosh:\n logLocation: "${ customLogDir . path } "`
1613
+ ) ;
1614
+
1615
+ shell = this . startTestShell ( {
1616
+ args : [ '--nodb' ] ,
1617
+ env : {
1618
+ ...env ,
1619
+ MONGOSH_GLOBAL_CONFIG_FILE_FOR_TESTING : globalConfig ,
1620
+ } ,
1621
+ forceTerminal : true ,
1622
+ } ) ;
1623
+ await shell . waitForPrompt ( ) ;
1624
+ expect (
1625
+ await shell . executeLine ( 'config.get("logLocation")' )
1626
+ ) . contains ( customLogDir . path ) ;
1627
+
1628
+ try {
1629
+ await readLogFile ( ) ;
1630
+ expect . fail ( 'expected to throw' ) ;
1631
+ } catch ( error ) {
1632
+ expect ( ( error as Error ) . message ) . includes (
1633
+ 'no such file or directory'
1634
+ ) ;
1635
+ }
1636
+
1637
+ expect (
1638
+ ( await readLogFile ( customLogDir . path ) ) . some (
1639
+ ( log ) => log . attr ?. input === 'config.get("logLocation")'
1640
+ )
1641
+ ) . is . true ;
1642
+ } ) ;
1643
+
1644
+ it ( 'setting location while running mongosh does not have an immediate effect on logging' , async function ( ) {
1645
+ expect (
1646
+ await shell . executeLine ( 'config.get("logLocation")' )
1647
+ ) . does . not . contain ( customLogDir . path ) ;
1648
+ const oldLogId = shell . logId ;
1649
+
1650
+ const oldLogEntries = await readLogFile ( ) ;
1651
+ await shell . executeLine (
1652
+ `config.set("logLocation", "${ customLogDir . path } ")`
1653
+ ) ;
1654
+
1655
+ await shell . waitForPrompt ( ) ;
1656
+ expect (
1657
+ await shell . executeLine ( 'config.get("logLocation")' )
1658
+ ) . contains ( customLogDir . path ) ;
1659
+
1660
+ expect ( shell . logId ) . equals ( oldLogId ) ;
1661
+
1662
+ const currentLogEntries = await readLogFile ( ) ;
1663
+
1664
+ try {
1665
+ await readLogFile ( customLogDir . path ) ;
1666
+ expect . fail ( 'expected to throw' ) ;
1667
+ } catch ( error ) {
1668
+ expect ( ( error as Error ) . message ) . includes (
1669
+ 'no such file or directory'
1670
+ ) ;
1671
+ }
1672
+ expect (
1673
+ currentLogEntries . some (
1674
+ ( log ) => log . attr ?. input === 'config.get("logLocation")'
1675
+ )
1676
+ ) . is . true ;
1677
+ expect ( currentLogEntries . length - oldLogEntries . length ) . equals ( 2 ) ;
1678
+ } ) ;
1679
+ } ) ;
1680
+
1568
1681
it ( 'creates a log file that keeps track of session events' , async function ( ) {
1569
1682
expect ( await shell . executeLine ( 'print(123 + 456)' ) ) . to . include ( '579' ) ;
1570
1683
const log = await readLogFile ( ) ;
0 commit comments