test: add tests

Signed-off-by: Leon van Ginneken <leon.van.ginneken@alliander.com>
This commit is contained in:
Leon van Ginneken
2022-08-16 15:35:03 +02:00
parent 88f8c2a406
commit 1c6106bafb
2 changed files with 109 additions and 0 deletions
@@ -129,6 +129,25 @@ describe('github:repo:create', () => {
allow_rebase_merge: true,
visibility: 'public',
});
await action.handler({
...mockContext,
input: {
...mockContext.input,
homepage: 'https://example.com',
},
});
expect(mockOctokit.rest.repos.createInOrg).toHaveBeenCalledWith({
description: 'description',
name: 'repo',
org: 'owner',
private: false,
delete_branch_on_merge: false,
allow_squash_merge: true,
allow_merge_commit: true,
allow_rebase_merge: true,
visibility: 'public',
});
});
it('should call the githubApis with the correct values for createForAuthenticatedUser', async () => {
@@ -171,6 +190,25 @@ describe('github:repo:create', () => {
allow_merge_commit: true,
allow_rebase_merge: true,
});
await action.handler({
...mockContext,
input: {
...mockContext.input,
homepage: 'https://example.com',
},
});
expect(
mockOctokit.rest.repos.createForAuthenticatedUser,
).toHaveBeenCalledWith({
description: 'description',
name: 'repo',
private: false,
delete_branch_on_merge: false,
allow_squash_merge: true,
allow_merge_commit: true,
allow_rebase_merge: true,
});
});
it('should add access for the team when it starts with the owner', async () => {
@@ -134,6 +134,25 @@ describe('publish:github', () => {
allow_rebase_merge: true,
visibility: 'public',
});
await action.handler({
...mockContext,
input: {
...mockContext.input,
homepage: 'https://example.com',
},
});
expect(mockOctokit.rest.repos.createInOrg).toHaveBeenCalledWith({
description: 'description',
name: 'repo',
org: 'owner',
private: false,
delete_branch_on_merge: false,
allow_squash_merge: true,
allow_merge_commit: true,
allow_rebase_merge: true,
visibility: 'public',
});
});
it('should call the githubApis with the correct values for createForAuthenticatedUser', async () => {
@@ -176,6 +195,25 @@ describe('publish:github', () => {
allow_merge_commit: true,
allow_rebase_merge: true,
});
await action.handler({
...mockContext,
input: {
...mockContext.input,
homepage: 'https://example.com',
},
});
expect(
mockOctokit.rest.repos.createForAuthenticatedUser,
).toHaveBeenCalledWith({
description: 'description',
name: 'repo',
private: false,
delete_branch_on_merge: false,
allow_squash_merge: true,
allow_merge_commit: true,
allow_rebase_merge: true,
});
});
it('should call initRepoAndPush with the correct values', async () => {
@@ -812,4 +850,37 @@ describe('publish:github', () => {
expect(enableBranchProtectionOnDefaultRepoBranch).not.toHaveBeenCalled();
});
it('should add homepage when provided', async () => {
mockOctokit.rest.users.getByUsername.mockResolvedValue({
data: { type: 'User' },
});
mockOctokit.rest.repos.createForAuthenticatedUser.mockResolvedValue({
data: {
clone_url: 'https://github.com/clone/url.git',
html_url: 'https://github.com/html/url',
},
});
mockOctokit.rest.repos.replaceAllTopics.mockResolvedValue({
data: {
names: ['node.js'],
},
});
await action.handler({
...mockContext,
input: {
...mockContext.input,
topics: ['node.js'],
},
});
expect(mockOctokit.rest.repos.replaceAllTopics).toHaveBeenCalledWith({
owner: 'owner',
repo: 'repo',
names: ['node.js'],
});
});
});