forked from project-chip/zap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmutations.test.js
146 lines (131 loc) · 4.56 KB
/
mutations.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
*
* Copyright (c) 2020 Silicon Labs
*
* 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 ZapState from '../src/store/zap/state.js'
const mutations = require('../src/store/zap/mutations.js')
test('updateInformationText', () => {
let text = 'foobar'
let state = ZapState()
mutations.updateInformationText(state, text)
expect(state.informationText).toEqual(text)
})
test('updateClusters', () => {
let clusters = [
{ name: 'foo', domainName: 'bar' },
{ name: 'bar', domainName: 'bar' },
]
let domains = ['bar']
let state = ZapState()
mutations.updateClusters(state, clusters)
expect(state.clusters).toEqual(clusters)
expect(state.domains).toEqual(domains)
})
test('updateSelectedCluster', () => {
let cluster = 'foobar'
let state = ZapState()
mutations.updateSelectedCluster(state, cluster)
expect(state.clustersView.selected).toEqual(cluster)
})
test('updateAttributeDefaults', () => {
let selectionContext = {
id: 0,
listType: 'defaultValue',
newDefaultValue: 'foo',
defaultValueValidationIssues: [],
}
let state = ZapState()
mutations.updateAttributeDefaults(state, selectionContext)
expect(state.attributeView.defaultValue[selectionContext.id]).toEqual(
selectionContext.newDefaultValue
)
expect(
state.attributeView.defaultValueValidationIssues[selectionContext.id]
).toEqual(selectionContext.defaultValueValidationIssues)
})
test('updateSelectedEndpoint', () => {
let endpoint = 'foobar'
let state = ZapState()
mutations.updateSelectedEndpoint(state, endpoint)
expect(state.endpointView.selectedEndpoint).toEqual(endpoint)
})
test('updateAttributes', () => {
let attributes = ['foo', 'bar']
let state = ZapState()
mutations.updateAttributes(state, attributes)
expect(state.attributes).toEqual(attributes)
})
test('updateCommands', () => {
let commands = ['foo', 'bar']
let state = ZapState()
mutations.updateCommands(state, commands)
expect(state.commands).toEqual(commands)
})
test('setCommandLists', () => {
let data = { incoming: [1, 2, 3], outgoing: [4, 5, 6] }
let state = ZapState()
mutations.setCommandLists(state, data)
expect(state.commandView.selectedIn).toEqual(data.incoming)
expect(state.commandView.selectedOut).toEqual(data.outgoing)
})
test('initializeDefaultEndpoints', () => {
let endpoints = [{ id: 0, endpointId: 1 }]
let state = ZapState()
mutations.initializeDefaultEndpoints(state, endpoints)
expect(state.endpointView.endpointId[0]).toEqual(1)
})
test('addEndpoint', () => {
let endpoints = { id: 0, endpointId: 1, endpointTypeRef: 'foo' }
let state = ZapState()
mutations.addEndpoint(state, endpoints)
expect(state.endpointView.endpointType[0]).toEqual('foo')
})
test('updateEndpoint', () => {
let endpoints = { id: 0, endpointId: 1, endpointTypeRef: 'foo' }
let state = ZapState()
mutations.addEndpoint(state, endpoints)
let context = {
id: 0,
changes: [{ updatedKey: 'endpointType', value: 'bar' }],
}
mutations.updateEndpoint(state, context)
expect(state.endpointView['endpointType'][0]).toEqual('bar')
})
test('initializeDefaultEndpointTypes', () => {
let endpointTypes = [
{ id: 0, endpointId: 1, name: 'foo', deviceTypeRef: 'bar' },
]
let state = ZapState()
mutations.initializeDefaultEndpointsTypes(state, endpointTypes)
expect(state.endpointTypeView.name[0]).toEqual(endpointTypes[0].name)
})
test('addEndpointType', () => {
let endpointType = { id: 0, endpointId: 1, name: 'foo' }
let state = ZapState()
mutations.addEndpointType(state, endpointType)
expect(state.endpointTypeView.name[0]).toEqual('foo')
})
test('Reset domain filter', () => {
let state = ZapState()
state.clusterManager.filter.label = 'blah'
state.clusterManager.openDomains = { foo: 1, bar: 2, tuna: 3 }
expect(Object.keys(state.clusterManager.openDomains).length).toEqual(3)
expect(state.clusterManager.filter.label).toEqual('blah')
mutations.resetFilters(state)
expect(state.clusterManager.filter.label).toEqual('No filter')
expect(Object.keys(state.clusterManager.openDomains).length).toBe(0)
})