mirror of
https://github.com/actions/setup-node.git
synced 2025-04-03 18:13:06 +08:00
Clean up changes
This commit is contained in:
parent
48c62836f2
commit
d0b97fb997
|
@ -1,26 +1,18 @@
|
||||||
import installer = require('../src/installer');
|
import installer = require('../src/installer');
|
||||||
import io = require('@actions/io');
|
import io = require('@actions/io');
|
||||||
import fs = require('fs')
|
import fs = require('fs');
|
||||||
import os = require('os')
|
import os = require('os');
|
||||||
import path = require('path');
|
import path = require('path');
|
||||||
|
|
||||||
const toolDir = path.join(
|
const toolDir = path.join(__dirname, 'runner', 'tools');
|
||||||
__dirname,
|
|
||||||
'runner',
|
|
||||||
'tools'
|
|
||||||
);
|
|
||||||
|
|
||||||
const tempDir = path.join(
|
const tempDir = path.join(__dirname, 'runner', 'temp');
|
||||||
__dirname,
|
|
||||||
'runner',
|
|
||||||
'temp'
|
|
||||||
);
|
|
||||||
|
|
||||||
describe('installer tests', () => {
|
describe('installer tests', () => {
|
||||||
beforeAll(() => {});
|
beforeAll(() => {});
|
||||||
beforeAll(async () => {
|
beforeAll(async () => {
|
||||||
// TODO - these should eventually be changed to match new method of loading dir
|
// TODO - these should eventually be changed to match new method of loading dir
|
||||||
process.env['Runner.ToolsDirectory'] = toolDir
|
process.env['Runner.ToolsDirectory'] = toolDir;
|
||||||
process.env['Runner.TempDirectory'] = tempDir;
|
process.env['Runner.TempDirectory'] = tempDir;
|
||||||
await io.rmRF(toolDir);
|
await io.rmRF(toolDir);
|
||||||
await io.rmRF(tempDir);
|
await io.rmRF(tempDir);
|
||||||
|
@ -38,7 +30,7 @@ describe('installer tests', () => {
|
||||||
it('Falls back to backup location if first one doesnt contain correct version', async () => {
|
it('Falls back to backup location if first one doesnt contain correct version', async () => {
|
||||||
await installer.getNode('5.10.1');
|
await installer.getNode('5.10.1');
|
||||||
const nodeDir = path.join(toolDir, 'node', '5.10.1', os.arch());
|
const nodeDir = path.join(toolDir, 'node', '5.10.1', os.arch());
|
||||||
|
|
||||||
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
||||||
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
@ -46,7 +38,7 @@ describe('installer tests', () => {
|
||||||
it('Falls back to third location if second one doesnt contain correct version', async () => {
|
it('Falls back to third location if second one doesnt contain correct version', async () => {
|
||||||
await installer.getNode('0.12.18');
|
await installer.getNode('0.12.18');
|
||||||
const nodeDir = path.join(toolDir, 'node', '0.12.18', os.arch());
|
const nodeDir = path.join(toolDir, 'node', '0.12.18', os.arch());
|
||||||
|
|
||||||
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${nodeDir}.complete`)).toBe(true);
|
||||||
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
expect(fs.existsSync(path.join(nodeDir, 'node.exe'))).toBe(true);
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
@ -71,11 +63,7 @@ describe('installer tests', () => {
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
it('Uses version of node installed in cache', async () => {
|
it('Uses version of node installed in cache', async () => {
|
||||||
const nodeDir: string = path.join(
|
const nodeDir: string = path.join(toolDir, '250.0.0', os.arch());
|
||||||
toolDir,
|
|
||||||
'250.0.0',
|
|
||||||
os.arch()
|
|
||||||
);
|
|
||||||
await io.mkdirP(nodeDir);
|
await io.mkdirP(nodeDir);
|
||||||
fs.writeFileSync(`${nodeDir}.complete`, 'hello');
|
fs.writeFileSync(`${nodeDir}.complete`, 'hello');
|
||||||
// This will throw if it doesn't find it in the cache (because no such version exists)
|
// This will throw if it doesn't find it in the cache (because no such version exists)
|
||||||
|
@ -84,15 +72,10 @@ describe('installer tests', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Doesnt use version of node that was only partially installed in cache', async () => {
|
it('Doesnt use version of node that was only partially installed in cache', async () => {
|
||||||
const nodeDir: string = path.join(
|
const nodeDir: string = path.join(toolDir, '250.0.0', os.arch());
|
||||||
toolDir,
|
|
||||||
'250.0.0',
|
|
||||||
os.arch()
|
|
||||||
);
|
|
||||||
await io.mkdirP(nodeDir);
|
await io.mkdirP(nodeDir);
|
||||||
let thrown = false;
|
let thrown = false;
|
||||||
try {
|
try {
|
||||||
|
|
||||||
// This will throw if it doesn't find it in the cache (because no such version exists)
|
// This will throw if it doesn't find it in the cache (because no such version exists)
|
||||||
await installer.getNode('251.0.0');
|
await installer.getNode('251.0.0');
|
||||||
} catch {
|
} catch {
|
||||||
|
@ -103,11 +86,7 @@ describe('installer tests', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Resolves semantic versions of node installed in cache', async () => {
|
it('Resolves semantic versions of node installed in cache', async () => {
|
||||||
const nodeDir: string = path.join(
|
const nodeDir: string = path.join(toolDir, '250.0.0', os.arch());
|
||||||
toolDir,
|
|
||||||
'250.0.0',
|
|
||||||
os.arch()
|
|
||||||
);
|
|
||||||
await io.mkdirP(nodeDir);
|
await io.mkdirP(nodeDir);
|
||||||
fs.writeFileSync(`${nodeDir}.complete`, 'hello');
|
fs.writeFileSync(`${nodeDir}.complete`, 'hello');
|
||||||
// These will throw if it doesn't find it in the cache (because no such version exists)
|
// These will throw if it doesn't find it in the cache (because no such version exists)
|
||||||
|
|
|
@ -143,9 +143,6 @@ function acquireNode(version) {
|
||||||
if (err['httpStatusCode'] && err['httpStatusCode'] === '404') {
|
if (err['httpStatusCode'] && err['httpStatusCode'] === '404') {
|
||||||
return yield acquireNodeFromFallbackLocation(version);
|
return yield acquireNodeFromFallbackLocation(version);
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
console.log('Message', err.message.statusCode);
|
|
||||||
}
|
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
|
@ -153,6 +150,7 @@ function acquireNode(version) {
|
||||||
//
|
//
|
||||||
let extPath;
|
let extPath;
|
||||||
if (osPlat == 'win32') {
|
if (osPlat == 'win32') {
|
||||||
|
let _7zPath = path.join(__dirname, '7zr.exe');
|
||||||
extPath = yield tc.extract7z(downloadPath);
|
extPath = yield tc.extract7z(downloadPath);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -147,8 +147,6 @@ async function acquireNode(version: string): Promise<string> {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err['httpStatusCode'] && err['httpStatusCode'] === '404') {
|
if (err['httpStatusCode'] && err['httpStatusCode'] === '404') {
|
||||||
return await acquireNodeFromFallbackLocation(version);
|
return await acquireNodeFromFallbackLocation(version);
|
||||||
} else {
|
|
||||||
console.log('Message', err.message.statusCode);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw err;
|
throw err;
|
||||||
|
@ -159,6 +157,7 @@ async function acquireNode(version: string): Promise<string> {
|
||||||
//
|
//
|
||||||
let extPath: string;
|
let extPath: string;
|
||||||
if (osPlat == 'win32') {
|
if (osPlat == 'win32') {
|
||||||
|
let _7zPath = path.join(__dirname, '7zr.exe');
|
||||||
extPath = await tc.extract7z(downloadPath);
|
extPath = await tc.extract7z(downloadPath);
|
||||||
} else {
|
} else {
|
||||||
extPath = await tc.extractTar(downloadPath);
|
extPath = await tc.extractTar(downloadPath);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user