-
-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import { NPMProxy } from '../../js-package-manager/NPMProxy'; | ||
import { npm7 } from './npm7'; | ||
|
||
const mockExecuteCommand = jest.fn(); | ||
class MockedNPMProxy extends NPMProxy { | ||
executeCommand(...args) { | ||
return mockExecuteCommand(...args); | ||
} | ||
} | ||
|
||
function mockExecuteResults(map: Record<string, string>) { | ||
mockExecuteCommand.mockImplementation((command, args) => { | ||
const commandString = `${command} ${args.join(' ')}`; | ||
if (map[commandString]) return map[commandString]; | ||
|
||
throw new Error(`Unexpected execution of '${commandString}'`); | ||
}); | ||
} | ||
|
||
describe('npm7 fix', () => { | ||
describe('npm < 7', () => { | ||
it('does not match', async () => { | ||
mockExecuteResults({ 'npm --version': '6.0.0' }); | ||
expect(await npm7.check({ packageManager: new MockedNPMProxy() })).toEqual(null); | ||
}); | ||
}); | ||
|
||
describe('npm 7+', () => { | ||
it('matches if config is not installed', async () => { | ||
mockExecuteResults({ | ||
'npm --version': '7.0.0', | ||
'npm config get legacy-peer-deps --location=project': 'false', | ||
}); | ||
expect(await npm7.check({ packageManager: new MockedNPMProxy() })).toEqual({ | ||
npmVersion: '7.0.0', | ||
}); | ||
}); | ||
|
||
it('does not match if config is installed', async () => { | ||
mockExecuteResults({ | ||
'npm --version': '7.0.0', | ||
'npm config get legacy-peer-deps --location=project': 'true', | ||
}); | ||
expect(await npm7.check({ packageManager: new MockedNPMProxy() })).toEqual(null); | ||
}); | ||
}); | ||
}); |