Skip to content

Commit abb238b

Browse files
authored
Revise isGhes logic (#1148)
* Revise `isGhes` logic * ran 'npm run format' * added unit test
1 parent aca7b64 commit abb238b

File tree

4 files changed

+56
-4
lines changed

4 files changed

+56
-4
lines changed

__tests__/cache-utils.test.ts

+39-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
PackageManagerInfo,
77
isCacheFeatureAvailable,
88
supportedPackageManagers,
9-
getCommandOutput,
9+
isGhes,
1010
resetProjectDirectoriesMemoized
1111
} from '../src/cache-utils';
1212
import fs from 'fs';
@@ -361,3 +361,41 @@ describe('cache-utils', () => {
361361
);
362362
});
363363
});
364+
365+
describe('isGhes', () => {
366+
const pristineEnv = process.env;
367+
368+
beforeEach(() => {
369+
jest.resetModules();
370+
process.env = {...pristineEnv};
371+
});
372+
373+
afterAll(() => {
374+
process.env = pristineEnv;
375+
});
376+
377+
it('returns false when the GITHUB_SERVER_URL environment variable is not defined', () => {
378+
delete process.env['GITHUB_SERVER_URL'];
379+
expect(isGhes()).toBeFalsy();
380+
});
381+
382+
it('returns false when the GITHUB_SERVER_URL environment variable is set to github.com', () => {
383+
process.env['GITHUB_SERVER_URL'] = 'https://github.com';
384+
expect(isGhes()).toBeFalsy();
385+
});
386+
387+
it('returns false when the GITHUB_SERVER_URL environment variable is set to a GitHub Enterprise Cloud-style URL', () => {
388+
process.env['GITHUB_SERVER_URL'] = 'https://contoso.ghe.com';
389+
expect(isGhes()).toBeFalsy();
390+
});
391+
392+
it('returns false when the GITHUB_SERVER_URL environment variable has a .localhost suffix', () => {
393+
process.env['GITHUB_SERVER_URL'] = 'https://mock-github.localhost';
394+
expect(isGhes()).toBeFalsy();
395+
});
396+
397+
it('returns true when the GITHUB_SERVER_URL environment variable is set to some other URL', () => {
398+
process.env['GITHUB_SERVER_URL'] = 'https://src.onpremise.fabrikam.com';
399+
expect(isGhes()).toBeTruthy();
400+
});
401+
});

dist/cache-save/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -83977,7 +83977,11 @@ const repoHasYarnBerryManagedDependencies = (packageManagerInfo, cacheDependency
8397783977
exports.repoHasYarnBerryManagedDependencies = repoHasYarnBerryManagedDependencies;
8397883978
function isGhes() {
8397983979
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
83980-
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
83980+
const hostname = ghUrl.hostname.trimEnd().toUpperCase();
83981+
const isGitHubHost = hostname === 'GITHUB.COM';
83982+
const isGitHubEnterpriseCloudHost = hostname.endsWith('.GHE.COM');
83983+
const isLocalHost = hostname.endsWith('.LOCALHOST');
83984+
return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost;
8398183985
}
8398283986
exports.isGhes = isGhes;
8398383987
function isCacheFeatureAvailable() {

dist/setup/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -93598,7 +93598,11 @@ const repoHasYarnBerryManagedDependencies = (packageManagerInfo, cacheDependency
9359893598
exports.repoHasYarnBerryManagedDependencies = repoHasYarnBerryManagedDependencies;
9359993599
function isGhes() {
9360093600
const ghUrl = new URL(process.env['GITHUB_SERVER_URL'] || 'https://github.com');
93601-
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
93601+
const hostname = ghUrl.hostname.trimEnd().toUpperCase();
93602+
const isGitHubHost = hostname === 'GITHUB.COM';
93603+
const isGitHubEnterpriseCloudHost = hostname.endsWith('.GHE.COM');
93604+
const isLocalHost = hostname.endsWith('.LOCALHOST');
93605+
return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost;
9360293606
}
9360393607
exports.isGhes = isGhes;
9360493608
function isCacheFeatureAvailable() {

src/cache-utils.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,13 @@ export function isGhes(): boolean {
295295
const ghUrl = new URL(
296296
process.env['GITHUB_SERVER_URL'] || 'https://github.com'
297297
);
298-
return ghUrl.hostname.toUpperCase() !== 'GITHUB.COM';
298+
299+
const hostname = ghUrl.hostname.trimEnd().toUpperCase();
300+
const isGitHubHost = hostname === 'GITHUB.COM';
301+
const isGitHubEnterpriseCloudHost = hostname.endsWith('.GHE.COM');
302+
const isLocalHost = hostname.endsWith('.LOCALHOST');
303+
304+
return !isGitHubHost && !isGitHubEnterpriseCloudHost && !isLocalHost;
299305
}
300306

301307
export function isCacheFeatureAvailable(): boolean {

0 commit comments

Comments
 (0)