github-pages-deploy-action/__tests__/git.test.ts

450 lines
12 KiB
TypeScript
Raw Normal View History

// Initial env variable setup for tests.
2020-03-05 21:19:45 +08:00
process.env['INPUT_FOLDER'] = 'build'
process.env['GITHUB_SHA'] = '123'
2020-03-05 21:19:45 +08:00
import {action} from '../src/constants'
import {deploy, generateBranch, init, switchToBaseBranch} from '../src/git'
import {execute} from '../src/execute'
import {rmRF} from '@actions/io'
2020-03-05 21:19:45 +08:00
const originalAction = JSON.stringify(action)
2020-03-05 21:19:45 +08:00
jest.mock('@actions/core', () => ({
setFailed: jest.fn(),
2020-03-28 22:35:26 +08:00
getInput: jest.fn(),
isDebug: jest.fn(),
info: jest.fn()
2020-03-05 21:19:45 +08:00
}))
jest.mock('@actions/io', () => ({
rmRF: jest.fn()
}))
2020-03-05 21:19:45 +08:00
jest.mock('../src/execute', () => ({
execute: jest.fn()
2020-03-05 21:19:45 +08:00
}))
2020-03-05 21:19:45 +08:00
describe('git', () => {
afterEach(() => {
2020-03-05 21:19:45 +08:00
Object.assign(action, JSON.parse(originalAction))
})
2020-03-05 21:19:45 +08:00
describe('init', () => {
it('should execute commands if a GitHub token is provided', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
repositoryPath: 'JamesIves/github-pages-deploy-action',
folder: 'build',
branch: 'branch',
gitHubToken: '123',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await init(action)
expect(execute).toBeCalledTimes(6)
})
2020-03-05 21:19:45 +08:00
it('should execute commands if an Access Token is provided', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
repositoryPath: 'JamesIves/github-pages-deploy-action',
folder: 'build',
branch: 'branch',
accessToken: '123',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await init(action)
expect(execute).toBeCalledTimes(6)
})
2020-03-05 21:19:45 +08:00
it('should execute commands if SSH is true', async () => {
2020-01-20 05:23:47 +08:00
Object.assign(action, {
2020-03-05 21:19:45 +08:00
repositoryPath: 'JamesIves/github-pages-deploy-action',
folder: 'build',
branch: 'branch',
2020-01-20 05:23:47 +08:00
ssh: true,
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
2020-01-20 05:23:47 +08:00
}
2020-03-05 21:19:45 +08:00
})
2020-01-20 05:23:47 +08:00
2020-03-05 21:19:45 +08:00
await init(action)
2020-01-20 05:23:47 +08:00
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(6)
})
2020-01-20 05:23:47 +08:00
2020-03-05 21:19:45 +08:00
it('should fail if there is no provided GitHub Token, Access Token or SSH bool', async () => {
Object.assign(action, {
repositoryPath: null,
2020-03-05 21:19:45 +08:00
folder: 'build',
branch: 'branch',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
},
gitHubToken: null,
accessToken: null,
ssh: null
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await init(action)
} catch (e) {
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(0)
expect(e.message).toMatch(
2020-03-05 21:19:45 +08:00
'There was an error initializing the repository: No deployment token/method was provided. You must provide the action with either a Personal Access Token or the GitHub Token secret in order to deploy. If you wish to use an ssh deploy token then you must set SSH to true. ❌'
)
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should fail if there is no folder', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
repositoryPath: 'JamesIves/github-pages-deploy-action',
gitHubToken: '123',
branch: 'branch',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
},
folder: null,
ssh: true
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await init(action)
} catch (e) {
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(0)
expect(e.message).toMatch(
2020-03-05 21:19:45 +08:00
'There was an error initializing the repository: You must provide the action with a folder to deploy. ❌'
)
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should fail if there is no provided repository path', async () => {
Object.assign(action, {
repositoryPath: null,
2020-03-05 21:19:45 +08:00
folder: 'build',
branch: 'branch',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
},
2020-03-05 21:19:45 +08:00
gitHubToken: '123',
accessToken: null,
ssh: null
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await init(action)
} catch (e) {
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(0)
expect(e.message).toMatch(
2020-03-05 21:19:45 +08:00
'There was an error initializing the repository: No deployment token/method was provided. You must provide the action with either a Personal Access Token or the GitHub Token secret in order to deploy. If you wish to use an ssh deploy token then you must set SSH to true. '
)
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should fail if the build folder begins with a /', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
accessToken: '123',
repositoryPath: 'JamesIves/github-pages-deploy-action',
branch: 'branch',
folder: '/',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await init(action)
} catch (e) {
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(0)
expect(e.message).toMatch(
"There was an error initializing the repository: Incorrectly formatted build folder. The deployment folder cannot be prefixed with '/' or './'. Instead reference the folder name directly. ❌"
2020-03-05 21:19:45 +08:00
)
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should fail if the build folder begins with a ./', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
accessToken: '123',
branch: 'branch',
folder: './',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await init(action)
} catch (e) {
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(0)
expect(e.message).toMatch(
"There was an error initializing the repository: Incorrectly formatted build folder. The deployment folder cannot be prefixed with '/' or './'. Instead reference the folder name directly. ❌"
2020-03-05 21:19:45 +08:00
)
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should not fail if root is used', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
repositoryPath: 'JamesIves/github-pages-deploy-action',
accessToken: '123',
branch: 'branch',
folder: '.',
root: '.',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await init(action)
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(6)
})
})
2020-03-05 21:19:45 +08:00
describe('generateBranch', () => {
it('should execute six commands', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
accessToken: '123',
branch: 'branch',
folder: '.',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await generateBranch(action)
expect(execute).toBeCalledTimes(6)
})
2020-03-05 21:19:45 +08:00
it('should fail if there is no branch', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
accessToken: '123',
branch: null,
2020-03-05 21:19:45 +08:00
folder: '.',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await generateBranch(action)
} catch (e) {
expect(e.message).toMatch(
2020-03-05 21:19:45 +08:00
'There was an error creating the deployment branch: Branch is required. ❌'
)
}
2020-03-05 21:19:45 +08:00
})
})
2020-03-05 21:19:45 +08:00
describe('switchToBaseBranch', () => {
it('should execute one command', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
accessToken: '123',
branch: 'branch',
folder: '.',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await switchToBaseBranch(action)
expect(execute).toBeCalledTimes(1)
})
2020-03-05 21:19:45 +08:00
it('should execute one command if using custom baseBranch', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
baseBranch: '123',
accessToken: '123',
branch: 'branch',
folder: '.',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await switchToBaseBranch(action)
expect(execute).toBeCalledTimes(1)
})
2020-03-05 21:19:45 +08:00
it('should fail if one of the required parameters is not available', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
baseBranch: '123',
accessToken: null,
gitHubToken: null,
ssh: null,
2020-03-05 21:19:45 +08:00
branch: 'branch',
folder: null,
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await switchToBaseBranch(action)
} catch (e) {
2020-03-05 21:19:45 +08:00
expect(execute).toBeCalledTimes(0)
expect(e.message).toMatch(
2020-03-05 21:19:45 +08:00
'There was an error switching to the base branch: No deployment token/method was provided. You must provide the action with either a Personal Access Token or the GitHub Token secret in order to deploy. If you wish to use an ssh deploy token then you must set SSH to true. ❌'
)
}
2020-03-05 21:19:45 +08:00
})
})
2020-03-05 21:19:45 +08:00
describe('deploy', () => {
it('should execute commands', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
folder: 'build',
branch: 'branch',
gitHubToken: '123',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
}
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await deploy(action)
// Includes the call to generateBranch
expect(execute).toBeCalledTimes(11)
expect(rmRF).toBeCalledTimes(1)
2020-03-05 21:19:45 +08:00
})
it('should execute commands with single commit toggled', async () => {
Object.assign(action, {
folder: 'build',
branch: 'branch',
gitHubToken: '123',
singleCommit: true,
pusher: {
name: 'asd',
email: 'as@cat'
}
})
await deploy(action)
// Includes the call to generateBranch
expect(execute).toBeCalledTimes(17)
expect(rmRF).toBeCalledTimes(1)
})
2020-03-05 21:19:45 +08:00
it('should execute commands with clean options, ommits sha commit message', async () => {
process.env.GITHUB_SHA = ''
Object.assign(action, {
2020-03-05 21:19:45 +08:00
folder: 'build',
branch: 'branch',
gitHubToken: '123',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
},
clean: true,
cleanExclude: '["cat", "montezuma"]'
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await deploy(action)
// Includes the call to generateBranch
expect(execute).toBeCalledTimes(11)
expect(rmRF).toBeCalledTimes(1)
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should execute commands with clean options stored as an array instead', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
folder: 'build',
branch: 'branch',
gitHubToken: '123',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
},
clean: true,
2020-03-05 21:19:45 +08:00
cleanExclude: ['cat', 'montezuma']
})
2020-03-05 21:19:45 +08:00
await deploy(action)
// Includes the call to generateBranch
expect(execute).toBeCalledTimes(11)
expect(rmRF).toBeCalledTimes(1)
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should gracefully handle incorrectly formatted clean exclude items', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
folder: '.',
branch: 'branch',
gitHubToken: '123',
2020-01-20 05:16:28 +08:00
pusher: {},
clean: true,
2020-03-05 21:19:45 +08:00
targetFolder: 'new_folder',
commitMessage: 'Hello!',
2020-01-20 05:16:28 +08:00
isTest: true,
cleanExclude: '["cat, "montezuma"]' // There is a syntax errror in the string.
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await deploy(action)
expect(execute).toBeCalledTimes(11)
expect(rmRF).toBeCalledTimes(1)
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should stop early if there is nothing to commit', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
folder: 'build',
branch: 'branch',
gitHubToken: '123',
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
},
isTest: false // Setting this env variable to false means there will never be anything to commit and the action will exit early.
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
await deploy(action)
expect(execute).toBeCalledTimes(12)
expect(rmRF).toBeCalledTimes(1)
2020-03-05 21:19:45 +08:00
})
2020-03-05 21:19:45 +08:00
it('should throw an error if one of the required parameters is not available', async () => {
Object.assign(action, {
2020-03-05 21:19:45 +08:00
folder: 'build',
branch: 'branch',
ssh: null,
accessToken: null,
gitHubToken: null,
pusher: {
2020-03-05 21:19:45 +08:00
name: 'asd',
email: 'as@cat'
},
isTest: false // Setting this env variable to false means there will never be anything to commit and the action will exit early.
2020-03-05 21:19:45 +08:00
})
try {
2020-03-05 21:19:45 +08:00
await deploy(action)
} catch (e) {
expect(execute).toBeCalledTimes(0)
expect(rmRF).toBeCalledTimes(1)
expect(e.message).toMatch(
2020-03-05 21:19:45 +08:00
'The deploy step encountered an error: No deployment token/method was provided. You must provide the action with either a Personal Access Token or the GitHub Token secret in order to deploy. If you wish to use an ssh deploy token then you must set SSH to true. ❌'
)
}
2020-03-05 21:19:45 +08:00
})
})
})