mirror of https://github.com/actions/toolkit
lint fixes
parent
3b02a6fdc5
commit
d134334a38
|
@ -1,29 +1,27 @@
|
||||||
import * as config from '../src/internal/shared/config'
|
import * as config from '../src/internal/shared/config'
|
||||||
|
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetModules()
|
jest.resetModules()
|
||||||
});
|
})
|
||||||
|
|
||||||
|
|
||||||
describe('isGhes', () => {
|
describe('isGhes', () => {
|
||||||
it('should return false when the request domain is github.com', () => {
|
it('should return false when the request domain is github.com', () => {
|
||||||
process.env.GITHUB_SERVER_URL = 'https://github.com'
|
process.env.GITHUB_SERVER_URL = 'https://github.com'
|
||||||
expect(config.isGhes()).toBe(false)
|
expect(config.isGhes()).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should return false when the request domain ends with ghe.com', () => {
|
it('should return false when the request domain ends with ghe.com', () => {
|
||||||
process.env.GITHUB_SERVER_URL = 'https://my.domain.ghe.com'
|
process.env.GITHUB_SERVER_URL = 'https://my.domain.ghe.com'
|
||||||
expect(config.isGhes()).toBe(false)
|
expect(config.isGhes()).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should return false when the request domain ends with ghe.localhost', () => {
|
it('should return false when the request domain ends with ghe.localhost', () => {
|
||||||
process.env.GITHUB_SERVER_URL = 'https://my.domain.ghe.localhost'
|
process.env.GITHUB_SERVER_URL = 'https://my.domain.ghe.localhost'
|
||||||
expect(config.isGhes()).toBe(false)
|
expect(config.isGhes()).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should return false when the request domain is specific to an enterprise', () => {
|
it('should return false when the request domain is specific to an enterprise', () => {
|
||||||
process.env.GITHUB_SERVER_URL = 'https://my-enterprise.github.com'
|
process.env.GITHUB_SERVER_URL = 'https://my-enterprise.github.com'
|
||||||
expect(config.isGhes()).toBe(true)
|
expect(config.isGhes()).toBe(true)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
|
@ -29,8 +29,9 @@ export function isGhes(): boolean {
|
||||||
)
|
)
|
||||||
|
|
||||||
const hostname = ghUrl.hostname.trimEnd().toUpperCase()
|
const hostname = ghUrl.hostname.trimEnd().toUpperCase()
|
||||||
const isGitHubHost = (hostname == 'GITHUB.COM')
|
const isGitHubHost = hostname === 'GITHUB.COM'
|
||||||
const isGheHost = (hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST'))
|
const isGheHost =
|
||||||
|
hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST')
|
||||||
|
|
||||||
return !isGitHubHost && !isGheHost
|
return !isGitHubHost && !isGheHost
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,8 +3,8 @@ import * as path from 'path'
|
||||||
import * as cacheUtils from '../src/internal/cacheUtils'
|
import * as cacheUtils from '../src/internal/cacheUtils'
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetModules()
|
jest.resetModules()
|
||||||
});
|
})
|
||||||
|
|
||||||
test('getArchiveFileSizeInBytes returns file size', () => {
|
test('getArchiveFileSizeInBytes returns file size', () => {
|
||||||
const filePath = path.join(__dirname, '__fixtures__', 'helloWorld.txt')
|
const filePath = path.join(__dirname, '__fixtures__', 'helloWorld.txt')
|
||||||
|
@ -61,4 +61,4 @@ test('isGhes returns true for enterprise URL', async () => {
|
||||||
test('isGhes returns false for ghe.localhost', () => {
|
test('isGhes returns false for ghe.localhost', () => {
|
||||||
process.env.GITHUB_SERVER_URL = 'https://my.domain.ghe.localhost'
|
process.env.GITHUB_SERVER_URL = 'https://my.domain.ghe.localhost'
|
||||||
expect(cacheUtils.isGhes()).toBe(false)
|
expect(cacheUtils.isGhes()).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
|
@ -137,8 +137,9 @@ export function isGhes(): boolean {
|
||||||
)
|
)
|
||||||
|
|
||||||
const hostname = ghUrl.hostname.trimEnd().toUpperCase()
|
const hostname = ghUrl.hostname.trimEnd().toUpperCase()
|
||||||
const isGitHubHost = (hostname == 'GITHUB.COM')
|
const isGitHubHost = hostname === 'GITHUB.COM'
|
||||||
const isGheHost = (hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST'))
|
const isGheHost =
|
||||||
|
hostname.endsWith('.GHE.COM') || hostname.endsWith('.GHE.LOCALHOST')
|
||||||
|
|
||||||
return !isGitHubHost && !isGheHost
|
return !isGitHubHost && !isGheHost
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue