forked from neo4j/neo4j-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorsView.test.tsx
More file actions
210 lines (180 loc) · 5.27 KB
/
ErrorsView.test.tsx
File metadata and controls
210 lines (180 loc) · 5.27 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [http://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { render } from '@testing-library/react'
import React from 'react'
import { createBus } from 'suber'
import { ErrorsView, ErrorsViewProps } from './ErrorsView'
import { BrowserError } from 'services/exceptions'
import { Provider } from 'react-redux'
import { initialState as initialMetaState } from 'shared/modules/dbMeta/dbMetaDuck'
import { initialState as initialSettingsState } from 'shared/modules/settings/settingsDuck'
const withProvider = (store: any, children: any) => {
return <Provider store={store}>{children}</Provider>
}
const mount = (props: Partial<ErrorsViewProps>, state?: any) => {
const defaultProps: ErrorsViewProps = {
result: null,
bus: createBus(),
params: {},
executeCmd: jest.fn(),
setEditorContent: jest.fn(),
neo4jVersion: null
}
const combinedProps = {
...defaultProps,
...props
}
const initialState = {
meta: initialMetaState,
settings: initialSettingsState
}
const combinedState = { ...initialState, ...state }
const store = {
subscribe: () => {},
dispatch: () => {},
getState: () => ({
...combinedState
})
}
return render(withProvider(store, <ErrorsView {...combinedProps} />))
}
describe('ErrorsView', () => {
test('displays nothing if no errors', () => {
// Given
const props = {
result: null
}
// When
const { container } = mount(props)
// Then
expect(container).toMatchSnapshot()
})
test('does display an error', () => {
// Given
const error: BrowserError = {
code: 'Test.Error',
message: 'Test error description',
type: 'Neo4jError'
}
const props = {
result: error
}
// When
const { container } = mount(props)
// Then
expect(container).toMatchSnapshot()
})
test('does display an error for GQL status codes', () => {
// Given
const error: BrowserError = {
code: 'Test.Error',
message: 'Test error description',
type: 'Neo4jError',
gqlStatus: '22N14',
gqlStatusDescription:
"error: data exception - invalid temporal value combination. Cannot select both epochSeconds and 'datetime'.",
cause: undefined
}
const props = {
result: error
}
const state = {
meta: {
server: {
version: '5.27.0'
}
}
}
// When
const { container } = mount(props, state)
// Then
expect(container).toMatchSnapshot()
})
test('does display a nested error for GQL status codes', () => {
// Given
const error: BrowserError = {
code: 'Test.Error',
message: 'Test error description',
type: 'Neo4jError',
gqlStatus: '42N51',
gqlStatusDescription:
'error: syntax error or access rule violation - invalid parameter. Invalid parameter $`param`. ',
cause: {
gqlStatus: '22G03',
gqlStatusDescription: 'error: data exception - invalid value type',
cause: {
gqlStatus: '22N27',
gqlStatusDescription:
"error: data exception - invalid entity type. Invalid input '******' for $`param`. Expected to be STRING.",
cause: undefined
}
}
}
const props = {
result: error
}
const state = {
meta: {
server: {
version: '5.27.0'
}
}
}
// When
const { container } = mount(props, state)
// Then
expect(container).toMatchSnapshot()
})
test('displays procedure link if unknown procedure', () => {
// Given
const error: BrowserError = {
code: 'Neo.ClientError.Procedure.ProcedureNotFound',
message: 'not found',
type: 'Neo4jError'
}
const props = {
result: error
}
// When
const { container, getByText } = mount(props)
// Then
expect(container).toMatchSnapshot()
expect(getByText('List available procedures')).not.toBeUndefined()
})
test('displays procedure link if periodic commit error', () => {
// Given
const error: BrowserError = {
code: 'Neo.ClientError.Statement.SemanticError',
message:
'Executing queries that use periodic commit in an open transaction is not possible.',
type: 'Neo4jError'
}
const props = {
result: error
}
// When
const { getByText } = mount(props)
// Then
// We need to split up because of the use of <code> tags in the rendered document
expect(getByText(/info on the/i)).not.toBeUndefined()
expect(getByText(':auto')).not.toBeUndefined()
expect(getByText('(auto-committing transactions)')).not.toBeUndefined()
})
})