mirror of
https://github.com/actions/setup-go.git
synced 2025-04-23 17:40:50 +00:00
Format text of messages in the unit-tests
This commit is contained in:
parent
104f9bb034
commit
2968ddac8d
2 changed files with 8 additions and 8 deletions
|
@ -18,7 +18,7 @@ describe('restoreCache', () => {
|
||||||
let setOutputSpy = jest.spyOn(core, 'setOutput');
|
let setOutputSpy = jest.spyOn(core, 'setOutput');
|
||||||
|
|
||||||
const packageManager = 'default';
|
const packageManager = 'default';
|
||||||
const cacheDependencyPath = 'some path';
|
const cacheDependencyPath = 'path';
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
getCacheDirectoryPathSpy.mockImplementation(
|
getCacheDirectoryPathSpy.mockImplementation(
|
||||||
|
@ -50,7 +50,7 @@ describe('restoreCache', () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
hashFilesSpy.mockImplementation((somePath: string) => {
|
hashFilesSpy.mockImplementation((somePath: string) => {
|
||||||
return new Promise<string>(resolve => {
|
return new Promise<string>(resolve => {
|
||||||
resolve('Some File Hash');
|
resolve('file_hash');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -69,13 +69,13 @@ describe('restoreCache', () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
hashFilesSpy.mockImplementation((somePath: string) => {
|
hashFilesSpy.mockImplementation((somePath: string) => {
|
||||||
return new Promise<string>(resolve => {
|
return new Promise<string>(resolve => {
|
||||||
resolve('Some File Hash');
|
resolve('file_hash');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
restoreCacheSpy.mockImplementation(() => {
|
restoreCacheSpy.mockImplementation(() => {
|
||||||
return new Promise<string>(resolve => {
|
return new Promise<string>(resolve => {
|
||||||
resolve('Some cache key');
|
resolve('cache_key');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ describe('getCommandOutput', () => {
|
||||||
|
|
||||||
it('should return trimmed stdout in case of successful exit code', async () => {
|
it('should return trimmed stdout in case of successful exit code', async () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
const stdoutResult = ' some stdout ';
|
const stdoutResult = ' stdout ';
|
||||||
const trimmedStdout = stdoutResult.trim();
|
const trimmedStdout = stdoutResult.trim();
|
||||||
|
|
||||||
getExecOutputSpy.mockImplementation((commandLine: string) => {
|
getExecOutputSpy.mockImplementation((commandLine: string) => {
|
||||||
|
@ -19,13 +19,13 @@ describe('getCommandOutput', () => {
|
||||||
|
|
||||||
//Act + Assert
|
//Act + Assert
|
||||||
return cacheUtils
|
return cacheUtils
|
||||||
.getCommandOutput('some command')
|
.getCommandOutput('command')
|
||||||
.then(data => expect(data).toBe(trimmedStdout));
|
.then(data => expect(data).toBe(trimmedStdout));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return error in case of unsuccessful exit code', async () => {
|
it('should return error in case of unsuccessful exit code', async () => {
|
||||||
//Arrange
|
//Arrange
|
||||||
const stderrResult = 'Some error message';
|
const stderrResult = 'error message';
|
||||||
|
|
||||||
getExecOutputSpy.mockImplementation((commandLine: string) => {
|
getExecOutputSpy.mockImplementation((commandLine: string) => {
|
||||||
return new Promise<exec.ExecOutput>(resolve => {
|
return new Promise<exec.ExecOutput>(resolve => {
|
||||||
|
@ -35,7 +35,7 @@ describe('getCommandOutput', () => {
|
||||||
|
|
||||||
//Act + Assert
|
//Act + Assert
|
||||||
expect(async () => {
|
expect(async () => {
|
||||||
await cacheUtils.getCommandOutput('some command');
|
await cacheUtils.getCommandOutput('command');
|
||||||
}).rejects.toThrow();
|
}).rejects.toThrow();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue