-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathlib.test.ts
81 lines (67 loc) · 2.13 KB
/
lib.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import * as path from 'path'
import {Context} from '../src/context'
/* eslint-disable @typescript-eslint/no-require-imports */
/* eslint-disable @typescript-eslint/no-var-requires */
describe('@actions/context', () => {
let context: Context
beforeEach(() => {
process.env.GITHUB_EVENT_PATH = path.join(__dirname, 'payload.json')
process.env.GITHUB_REPOSITORY = 'actions/toolkit'
context = new Context()
})
it('returns the payload object', () => {
expect(context.payload).toEqual(require('./payload.json'))
})
it('returns an empty payload if the GITHUB_EVENT_PATH environment variable is falsey', () => {
delete process.env.GITHUB_EVENT_PATH
context = new Context()
expect(context.payload).toEqual({})
})
it('returns attributes from the GITHUB_REPOSITORY', () => {
expect(context.repo).toEqual({owner: 'actions', repo: 'toolkit'})
})
it('returns attributes from the repository payload', () => {
delete process.env.GITHUB_REPOSITORY
context.payload.repository = {
name: 'test',
owner: {login: 'user'}
}
expect(context.repo).toEqual({owner: 'user', repo: 'test'})
})
it("return error for context.repo when repository doesn't exist", () => {
delete process.env.GITHUB_REPOSITORY
context.payload.repository = undefined
expect(() => context.repo).toThrowErrorMatchingSnapshot()
})
it('returns issue attributes from the repository', () => {
expect(context.issue).toEqual({
owner: 'actions',
repo: 'toolkit',
number: 1
})
})
it('works with pull_request payloads', () => {
delete process.env.GITHUB_REPOSITORY
context.payload = {
pull_request: {number: 2},
repository: {owner: {login: 'user'}, name: 'test'}
}
expect(context.issue).toEqual({
number: 2,
owner: 'user',
repo: 'test'
})
})
it('works with payload.number payloads', () => {
delete process.env.GITHUB_REPOSITORY
context.payload = {
number: 2,
repository: {owner: {login: 'user'}, name: 'test'}
}
expect(context.issue).toEqual({
number: 2,
owner: 'user',
repo: 'test'
})
})
})