setup-java/__tests__/auth.test.ts

151 lines
4.6 KiB
TypeScript
Raw Normal View History

2019-11-16 01:01:13 +01:00
import io = require('@actions/io');
import fs = require('fs');
import os = require('os');
2019-11-16 01:01:13 +01:00
import path = require('path');
// make the os.homedir() call be local to the tests
jest.doMock('os', () => {
return {
homedir: jest.fn(() => __dirname)
};
});
2019-11-16 01:01:13 +01:00
import * as auth from '../src/auth';
const m2Dir = path.join(__dirname, auth.M2_DIR);
const settingsFile = path.join(m2Dir, auth.SETTINGS_FILE);
2019-11-16 01:01:13 +01:00
describe('auth tests', () => {
beforeEach(async () => {
2019-11-16 01:01:13 +01:00
await io.rmRF(m2Dir);
}, 300000);
afterAll(async () => {
try {
await io.rmRF(m2Dir);
} catch {
console.log('Failed to remove test directories');
}
}, 100000);
it('creates settings.xml in alternate locations', async () => {
const id = 'packages';
2019-12-19 20:28:11 +01:00
const username = 'UNAMI';
const password = 'TOLKIEN';
const altHome = path.join(__dirname, 'runner', 'settings');
const altSettingsFile = path.join(altHome, auth.SETTINGS_FILE);
2019-12-10 22:02:21 +01:00
process.env[`INPUT_SETTINGS-PATH`] = altHome;
await io.rmRF(altHome); // ensure it doesn't already exist
await auth.configAuthentication(id, username, password);
expect(fs.existsSync(m2Dir)).toBe(false);
expect(fs.existsSync(settingsFile)).toBe(false);
expect(fs.existsSync(altHome)).toBe(true);
expect(fs.existsSync(altSettingsFile)).toBe(true);
expect(fs.readFileSync(altSettingsFile, 'utf-8')).toEqual(
auth.generate(id, username, password)
);
2019-12-10 22:02:21 +01:00
delete process.env[`INPUT_SETTINGS-PATH`];
await io.rmRF(altHome);
}, 100000);
2020-05-02 13:33:15 +02:00
it('creates settings.xml with minimal configuration', async () => {
2019-11-28 21:40:08 +01:00
const id = 'packages';
2019-12-19 20:28:11 +01:00
const username = 'UNAME';
const password = 'TOKEN';
2019-11-16 01:01:13 +01:00
2019-11-28 21:40:08 +01:00
await auth.configAuthentication(id, username, password);
2019-11-16 01:01:13 +01:00
expect(fs.existsSync(m2Dir)).toBe(true);
expect(fs.existsSync(settingsFile)).toBe(true);
expect(fs.readFileSync(settingsFile, 'utf-8')).toEqual(
2019-11-28 21:40:08 +01:00
auth.generate(id, username, password)
2019-11-16 01:01:13 +01:00
);
}, 100000);
2020-05-02 13:33:15 +02:00
it('creates settings.xml with additional configuration', async () => {
2019-12-06 20:46:35 +01:00
const id = 'packages';
2020-05-02 13:33:15 +02:00
const username = 'UNAME';
const password = 'TOKEN';
const gpgPassphrase = 'GPG';
2019-12-06 20:46:35 +01:00
2020-05-02 13:33:15 +02:00
await auth.configAuthentication(id, username, password, gpgPassphrase);
2019-12-06 20:46:35 +01:00
expect(fs.existsSync(m2Dir)).toBe(true);
expect(fs.existsSync(settingsFile)).toBe(true);
expect(fs.readFileSync(settingsFile, 'utf-8')).toEqual(
2020-05-02 13:33:15 +02:00
auth.generate(id, username, password, gpgPassphrase)
2019-12-06 20:46:35 +01:00
);
}, 100000);
2020-05-02 13:33:15 +02:00
it('overwrites existing settings.xml files', async () => {
const id = 'packages';
const username = 'USERNAME';
const password = 'PASSWORD';
2019-11-28 21:40:08 +01:00
2020-05-02 13:33:15 +02:00
fs.mkdirSync(m2Dir, {recursive: true});
fs.writeFileSync(settingsFile, 'FAKE FILE');
2019-12-19 20:28:11 +01:00
expect(fs.existsSync(m2Dir)).toBe(true);
expect(fs.existsSync(settingsFile)).toBe(true);
2019-11-28 21:40:08 +01:00
2020-05-02 13:33:15 +02:00
await auth.configAuthentication(id, username, password);
2019-12-19 20:28:11 +01:00
expect(fs.existsSync(m2Dir)).toBe(true);
expect(fs.existsSync(settingsFile)).toBe(true);
expect(fs.readFileSync(settingsFile, 'utf-8')).toEqual(
2020-05-02 13:33:15 +02:00
auth.generate(id, username, password)
2019-12-19 20:28:11 +01:00
);
}, 100000);
2019-12-10 18:26:51 +01:00
2020-05-02 13:33:15 +02:00
it('generates valid settings.xml with minimal configuration', () => {
2019-12-10 18:26:51 +01:00
const id = 'packages';
2019-12-19 20:28:11 +01:00
const username = 'USER';
2019-12-10 18:26:51 +01:00
const password = '&<>"\'\'"><&';
2020-05-02 13:33:15 +02:00
const expectedSettings = `<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>${id}</id>
<username>\${env.${username}}</username>
<password>\${env.&amp;&lt;&gt;"''"&gt;&lt;&amp;}</password>
</server>
</servers>
</settings>`;
expect(auth.generate(id, username, password)).toEqual(expectedSettings);
});
it('generates valid settings.xml with additional configuration', () => {
const id = 'packages';
const username = 'USER';
const password = '&<>"\'\'"><&';
const gpgPassphrase = 'PASSPHRASE';
const expectedSettings = `<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>${id}</id>
<username>\${env.${username}}</username>
<password>\${env.&amp;&lt;&gt;"''"&gt;&lt;&amp;}</password>
</server>
<server>
<id>gpg.passphrase</id>
<passphrase>\${env.${gpgPassphrase}}</passphrase>
</server>
</servers>
</settings>`;
expect(auth.generate(id, username, password, gpgPassphrase)).toEqual(
expectedSettings
);
2019-12-10 18:26:51 +01:00
});
2019-11-16 01:01:13 +01:00
});