mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
Update tests to use 'jdk', 'jre', and 'jdk+fx' javaPackage parameters
This commit is contained in:
parent
3c9738b031
commit
2275401b31
1 changed files with 33 additions and 14 deletions
|
@ -52,8 +52,8 @@ describe('installer tests', () => {
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
it('Installs version of Java from jdkFile if no matching version is installed', async () => {
|
it('Installs version of Java from jdkFile if no matching version is installed', async () => {
|
||||||
await installer.getJava('12', 'x64', javaFilePath);
|
await installer.getJava('12', 'x64', javaFilePath, 'jdk');
|
||||||
const JavaDir = path.join(toolDir, 'Java', '12.0.0', 'x64');
|
const JavaDir = path.join(toolDir, 'jdk', '12.0.0', 'x64');
|
||||||
|
|
||||||
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
||||||
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
||||||
|
@ -62,7 +62,7 @@ describe('installer tests', () => {
|
||||||
it('Throws if invalid directory to jdk', async () => {
|
it('Throws if invalid directory to jdk', async () => {
|
||||||
let thrown = false;
|
let thrown = false;
|
||||||
try {
|
try {
|
||||||
await installer.getJava('1000', 'x64', 'bad path');
|
await installer.getJava('1000', 'x64', 'bad path', 'jdk');
|
||||||
} catch {
|
} catch {
|
||||||
thrown = true;
|
thrown = true;
|
||||||
}
|
}
|
||||||
|
@ -70,24 +70,42 @@ describe('installer tests', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Downloads java if no file given', async () => {
|
it('Downloads java if no file given', async () => {
|
||||||
await installer.getJava('8.0.102', 'x64', '');
|
await installer.getJava('8.0.102', 'x64', '', 'jdk');
|
||||||
const JavaDir = path.join(toolDir, 'Java', '8.0.102', 'x64');
|
const JavaDir = path.join(toolDir, 'jdk', '8.0.102', 'x64');
|
||||||
|
|
||||||
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
||||||
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
it('Downloads java with 1.x syntax', async () => {
|
it('Downloads java with 1.x syntax', async () => {
|
||||||
await installer.getJava('1.10', 'x64', '');
|
await installer.getJava('1.10', 'x64', '', 'jdk');
|
||||||
const JavaDir = path.join(toolDir, 'Java', '10.0.2', 'x64');
|
// Relies on knowledge that the latest version of 10.0.x is 10.0.2, and it will likely not update again:
|
||||||
|
const JavaDir = path.join(toolDir, 'jdk', '10.0.2', 'x64');
|
||||||
|
|
||||||
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
||||||
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
||||||
}, 100000);
|
}, 100000);
|
||||||
|
|
||||||
it('Downloads java with normal semver syntax', async () => {
|
it('Downloads java with normal semver syntax', async () => {
|
||||||
await installer.getJava('9.0.x', 'x64', '');
|
await installer.getJava('9.0.x', 'x64', '', 'jdk');
|
||||||
const JavaDir = path.join(toolDir, 'Java', '9.0.7', 'x64');
|
// Relies on knowledge that the latest version of 9.0.x is 9.0.7, and it will likely not update again:
|
||||||
|
const JavaDir = path.join(toolDir, 'jdk', '9.0.7', 'x64');
|
||||||
|
|
||||||
|
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
||||||
|
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
||||||
|
}, 100000);
|
||||||
|
|
||||||
|
it('Downloads java if package is jre', async () => {
|
||||||
|
await installer.getJava('8.0.222', 'x64', '', 'jre');
|
||||||
|
const JavaDir = path.join(toolDir, 'jre', '8.0.222', 'x64');
|
||||||
|
|
||||||
|
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
||||||
|
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
||||||
|
}, 100000);
|
||||||
|
|
||||||
|
it('Downloads java if package is jdk+fx', async () => {
|
||||||
|
await installer.getJava('8.0.222', 'x64', '', 'jdk+fx');
|
||||||
|
const JavaDir = path.join(toolDir, 'jdk+fx', '8.0.222', 'x64');
|
||||||
|
|
||||||
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
expect(fs.existsSync(`${JavaDir}.complete`)).toBe(true);
|
||||||
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
expect(fs.existsSync(path.join(JavaDir, 'bin'))).toBe(true);
|
||||||
|
@ -96,7 +114,7 @@ describe('installer tests', () => {
|
||||||
it('Throws if invalid directory to jdk', async () => {
|
it('Throws if invalid directory to jdk', async () => {
|
||||||
let thrown = false;
|
let thrown = false;
|
||||||
try {
|
try {
|
||||||
await installer.getJava('1000', 'x64', 'bad path');
|
await installer.getJava('1000', 'x64', 'bad path', 'jdk');
|
||||||
} catch {
|
} catch {
|
||||||
thrown = true;
|
thrown = true;
|
||||||
}
|
}
|
||||||
|
@ -104,25 +122,26 @@ describe('installer tests', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Uses version of Java installed in cache', async () => {
|
it('Uses version of Java installed in cache', async () => {
|
||||||
const JavaDir: string = path.join(toolDir, 'Java', '250.0.0', 'x64');
|
const JavaDir: string = path.join(toolDir, 'jdk', '250.0.0', 'x64');
|
||||||
await io.mkdirP(JavaDir);
|
await io.mkdirP(JavaDir);
|
||||||
fs.writeFileSync(`${JavaDir}.complete`, 'hello');
|
fs.writeFileSync(`${JavaDir}.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)
|
||||||
await installer.getJava(
|
await installer.getJava(
|
||||||
'250',
|
'250',
|
||||||
'x64',
|
'x64',
|
||||||
'path shouldnt matter, found in cache'
|
'path shouldnt matter, found in cache',
|
||||||
|
'jdk'
|
||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Doesnt use version of Java that was only partially installed in cache', async () => {
|
it('Doesnt use version of Java that was only partially installed in cache', async () => {
|
||||||
const JavaDir: string = path.join(toolDir, 'Java', '251.0.0', 'x64');
|
const JavaDir: string = path.join(toolDir, 'jdk', '251.0.0', 'x64');
|
||||||
await io.mkdirP(JavaDir);
|
await io.mkdirP(JavaDir);
|
||||||
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.getJava('251', 'x64', 'bad path');
|
await installer.getJava('251', 'x64', 'bad path', 'jdk');
|
||||||
} catch {
|
} catch {
|
||||||
thrown = true;
|
thrown = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue