2019-06-20 03:22:22 +07:00
|
|
|
import io = require('@actions/io');
|
|
|
|
import fs = require('fs');
|
|
|
|
import os = require('os');
|
|
|
|
import path = require('path');
|
2020-01-26 13:37:54 +07:00
|
|
|
import hc = require('@actions/http-client');
|
2019-06-20 03:22:22 +07:00
|
|
|
|
|
|
|
const toolDir = path.join(__dirname, 'runner', 'tools');
|
|
|
|
const tempDir = path.join(__dirname, 'runner', 'temp');
|
|
|
|
|
2019-07-30 23:53:06 +07:00
|
|
|
process.env['RUNNER_TOOL_CACHE'] = toolDir;
|
|
|
|
process.env['RUNNER_TEMP'] = tempDir;
|
2019-06-20 03:22:22 +07:00
|
|
|
import * as installer from '../src/installer';
|
|
|
|
|
2019-06-21 19:21:08 +07:00
|
|
|
const IS_WINDOWS = process.platform === 'win32';
|
|
|
|
|
2019-06-20 03:22:22 +07:00
|
|
|
describe('installer tests', () => {
|
|
|
|
beforeAll(async () => {
|
2020-09-15 23:36:09 +07:00
|
|
|
process.env.RUNNER_TOOL_CACHE = toolDir;
|
|
|
|
process.env.DOTNET_INSTALL_DIR = toolDir;
|
|
|
|
process.env.RUNNER_TEMP = tempDir;
|
2020-09-24 22:26:00 +07:00
|
|
|
process.env.DOTNET_ROOT = '';
|
2019-06-20 03:22:22 +07:00
|
|
|
await io.rmRF(toolDir);
|
|
|
|
await io.rmRF(tempDir);
|
|
|
|
});
|
|
|
|
|
2019-06-21 19:21:08 +07:00
|
|
|
afterAll(async () => {
|
|
|
|
try {
|
|
|
|
await io.rmRF(toolDir);
|
|
|
|
await io.rmRF(tempDir);
|
|
|
|
} catch {
|
|
|
|
console.log('Failed to remove test directories');
|
|
|
|
}
|
2020-09-15 23:36:09 +07:00
|
|
|
}, 30000);
|
2019-06-21 19:21:08 +07:00
|
|
|
|
|
|
|
it('Acquires version of dotnet if no matching version is installed', async () => {
|
2020-09-15 23:36:09 +07:00
|
|
|
await getDotnet('3.1.201');
|
|
|
|
expect(fs.existsSync(path.join(toolDir, 'sdk', '3.1.201'))).toBe(true);
|
2019-06-21 19:21:08 +07:00
|
|
|
if (IS_WINDOWS) {
|
2020-09-15 23:36:09 +07:00
|
|
|
expect(fs.existsSync(path.join(toolDir, 'dotnet.exe'))).toBe(true);
|
2019-06-21 19:21:08 +07:00
|
|
|
} else {
|
2020-09-15 23:36:09 +07:00
|
|
|
expect(fs.existsSync(path.join(toolDir, 'dotnet'))).toBe(true);
|
2019-06-21 19:21:08 +07:00
|
|
|
}
|
2019-08-12 23:14:43 +07:00
|
|
|
|
2020-09-24 22:26:00 +07:00
|
|
|
expect(process.env.DOTNET_ROOT).toBeDefined;
|
|
|
|
expect(process.env.PATH).toBeDefined;
|
|
|
|
expect(process.env.DOTNET_ROOT).toBe(toolDir);
|
|
|
|
expect(process.env.PATH?.startsWith(toolDir)).toBe(true);
|
|
|
|
}, 600000); //This needs some time to download on "slower" internet connections
|
|
|
|
|
|
|
|
it('Acquires generic version of dotnet if no matching version is installed', async () => {
|
|
|
|
await getDotnet('3.1');
|
|
|
|
var directory = fs
|
|
|
|
.readdirSync(path.join(toolDir, 'sdk'))
|
|
|
|
.filter(fn => fn.startsWith('3.1.'));
|
|
|
|
expect(directory.length > 0).toBe(true);
|
2019-08-12 23:14:43 +07:00
|
|
|
if (IS_WINDOWS) {
|
2020-09-15 23:36:09 +07:00
|
|
|
expect(fs.existsSync(path.join(toolDir, 'dotnet.exe'))).toBe(true);
|
2019-08-12 23:14:43 +07:00
|
|
|
} else {
|
2020-09-15 23:36:09 +07:00
|
|
|
expect(fs.existsSync(path.join(toolDir, 'dotnet'))).toBe(true);
|
2019-08-12 23:14:43 +07:00
|
|
|
}
|
2020-09-24 22:26:00 +07:00
|
|
|
|
|
|
|
expect(process.env.DOTNET_ROOT).toBeDefined;
|
|
|
|
expect(process.env.PATH).toBeDefined;
|
|
|
|
expect(process.env.DOTNET_ROOT).toBe(toolDir);
|
|
|
|
expect(process.env.PATH?.startsWith(toolDir)).toBe(true);
|
|
|
|
}, 600000); //This needs some time to download on "slower" internet connections
|
2019-08-12 23:14:43 +07:00
|
|
|
|
2019-06-21 19:21:08 +07:00
|
|
|
it('Throws if no location contains correct dotnet version', async () => {
|
|
|
|
let thrown = false;
|
|
|
|
try {
|
|
|
|
await getDotnet('1000.0.0');
|
|
|
|
} catch {
|
|
|
|
thrown = true;
|
|
|
|
}
|
|
|
|
expect(thrown).toBe(true);
|
2020-09-15 23:36:09 +07:00
|
|
|
}, 30000);
|
2019-06-21 19:21:08 +07:00
|
|
|
|
|
|
|
it('Uses an up to date bash download script', async () => {
|
2020-01-26 13:37:54 +07:00
|
|
|
const httpCallbackClient = new hc.HttpClient('setup-dotnet-test', [], {
|
|
|
|
allowRetries: true,
|
|
|
|
maxRetries: 3
|
|
|
|
});
|
|
|
|
const response: hc.HttpClientResponse = await httpCallbackClient.get(
|
2019-06-21 19:21:08 +07:00
|
|
|
'https://dot.net/v1/dotnet-install.sh'
|
|
|
|
);
|
2020-01-26 13:37:54 +07:00
|
|
|
expect(response.message.statusCode).toBe(200);
|
2019-06-21 19:21:08 +07:00
|
|
|
const upToDateContents: string = await response.readBody();
|
|
|
|
const currentContents: string = fs
|
|
|
|
.readFileSync(
|
|
|
|
path.join(__dirname, '..', 'externals', 'install-dotnet.sh')
|
|
|
|
)
|
|
|
|
.toString();
|
|
|
|
expect(normalizeFileContents(currentContents)).toBe(
|
|
|
|
normalizeFileContents(upToDateContents)
|
|
|
|
);
|
2020-09-15 23:36:09 +07:00
|
|
|
}, 30000);
|
2019-06-21 19:21:08 +07:00
|
|
|
|
|
|
|
it('Uses an up to date powershell download script', async () => {
|
2020-01-26 13:37:54 +07:00
|
|
|
var httpCallbackClient = new hc.HttpClient('setup-dotnet-test', [], {
|
|
|
|
allowRetries: true,
|
|
|
|
maxRetries: 3
|
|
|
|
});
|
|
|
|
const response: hc.HttpClientResponse = await httpCallbackClient.get(
|
2019-06-21 19:21:08 +07:00
|
|
|
'https://dot.net/v1/dotnet-install.ps1'
|
|
|
|
);
|
2020-01-26 13:37:54 +07:00
|
|
|
expect(response.message.statusCode).toBe(200);
|
2019-06-21 19:21:08 +07:00
|
|
|
const upToDateContents: string = await response.readBody();
|
|
|
|
const currentContents: string = fs
|
|
|
|
.readFileSync(
|
|
|
|
path.join(__dirname, '..', 'externals', 'install-dotnet.ps1')
|
|
|
|
)
|
|
|
|
.toString();
|
|
|
|
expect(normalizeFileContents(currentContents)).toBe(
|
|
|
|
normalizeFileContents(upToDateContents)
|
|
|
|
);
|
2020-09-15 23:36:09 +07:00
|
|
|
}, 30000);
|
2019-06-20 03:22:22 +07:00
|
|
|
});
|
2019-06-21 19:21:08 +07:00
|
|
|
|
|
|
|
function normalizeFileContents(contents: string): string {
|
|
|
|
return contents
|
|
|
|
.trim()
|
|
|
|
.replace(new RegExp('\r\n', 'g'), '\n')
|
|
|
|
.replace(new RegExp('\r', 'g'), '\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getDotnet(version: string): Promise<void> {
|
|
|
|
const dotnetInstaller = new installer.DotnetCoreInstaller(version);
|
|
|
|
await dotnetInstaller.installDotnet();
|
|
|
|
}
|