-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmath-actions.spec.ts
143 lines (134 loc) · 3.47 KB
/
math-actions.spec.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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
* Copyright (c) 2022-2024 The Peacock Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { handleActions } from "../src"
import assert from "assert"
const data = {
Inc1: [
{
$inc: ["Some.Context.Object", 6],
},
{
Some: {
Context: {
Object: 1,
},
},
},
],
Inc2: [
{
$inc: "Context.Object",
},
{
Context: {
Object: 150150,
},
},
],
Inc3: [
{
$inc: ["Counter", "$.Value"],
},
{
Counter: 40,
Value: 2,
},
],
Dec1: [
{
$dec: ["Some.Context.Object", 6],
},
{
Some: {
Context: {
Object: 5,
},
},
},
],
Dec2: [
{
$dec: "Context.Object",
},
{
Context: {
Object: 150150,
},
},
],
Mul1: [
{
$mul: ["Context.Object", 5, "Context.Output"],
},
{
Context: {
Object: 18,
Output: 0,
},
},
],
Mul2: [
{
$mul: ["Context.Object", 10],
},
{
Context: {
Object: 42,
},
},
],
}
describe("$inc", () => {
it("can increment a context object", () => {
const [sm, vars] = data.Inc1
const r = handleActions(sm, vars)
assert.strictEqual(r.Some.Context.Object, 7)
})
it("can increment a context object with no amount specified", () => {
const [sm, vars] = data.Inc2
const r = handleActions(sm, vars)
assert.strictEqual(r.Context.Object, 150151)
})
it("can increment a context object by the value of another context object", () => {
const [sm, vars] = data.Inc3
const r = handleActions(sm, vars)
assert.strictEqual(r.Counter, 42)
})
})
describe("$dec", () => {
it("can decrement a context object", () => {
const [sm, vars] = data.Dec1
const r = handleActions(sm, vars)
assert.strictEqual(r.Some.Context.Object, -1)
})
it("can decrement a context object with no amount specified", () => {
const [sm, vars] = data.Dec2
const r = handleActions(sm, vars)
assert.strictEqual(r.Context.Object, 150149)
})
})
describe("$mul", () => {
it("can multiply a context object and store it in another", () => {
const [sm, vars] = data.Mul1
const r = handleActions(sm, vars)
assert.strictEqual(r.Context.Output, 90)
})
it("can multiply a context object and store it in that object", () => {
const [sm, vars] = data.Mul2
const r = handleActions(sm, vars)
assert.strictEqual(r.Context.Object, 420)
})
})