-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
124 lines (101 loc) · 2.1 KB
/
test.js
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import test from 'ava'
import Interactor from './'
test('basic interactor', async t => {
const context = {
user: 'mike'
}
class Test extends Interactor {
async call () {
const {user} = this.context
t.is(user, 'mike')
this.context.user = 'james'
}
}
const result = await Test.call(context)
t.true(result.success)
t.false(result.failure)
t.is(result.user, 'james')
})
test('rollback interactor', async t => {
t.plan(5)
const context = {
next: 1
}
class Test extends Interactor {
async call () {
t.pass()
this.context.next++
throw new Error()
}
async rollback () {
t.pass()
this.context.next = 1
}
}
const result = await Test.call(context)
t.false(result.success)
t.true(result.failure)
t.is(result.next, 1)
})
test('organize', async t => {
t.plan(5)
const context = {
next: 1
}
class Test1 extends Interactor {
async call () {
t.pass()
this.context.next++
}
}
class Test2 extends Interactor {
async call () {
t.pass()
this.context.next++
}
}
class Test3 extends Interactor {
organize () {
return [Test1, Test2]
}
}
const result = await Test3.call(context)
t.true(result.success)
t.false(result.failure)
t.is(result.next, 3)
})
test('before/after', async t => {
t.plan(4)
const context = {}
class Test extends Interactor {
async before () {
if (!this.context.user) {
this.context.user = {new: true}
}
}
async call () {
this.context.user.new = false
}
async after () {
if (this.context.user.new) {
throw new Error('User should be `false`')
}
this.context.user.id = 1
}
}
const result = await Test.call(context)
t.true(result.success)
t.false(result.failure)
t.is(result.user.id, 1)
t.false(result.user.new)
})
test('throw option', async t => {
class Test extends Interactor {
throwOnError = true
async call () {
throw new Error('Boom')
}
}
const error = await t.throws(Test.call({}))
t.is(error.message, 'Boom')
})