-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMessageHelper.js
173 lines (144 loc) · 6.39 KB
/
MessageHelper.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
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
// MIT License
//
// Copyright 2018 Electric Imp
//
// SPDX-License-Identifier: MIT
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
// EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
// OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
'use strict';
require('jasmine-expect');
const ImptTestHelper = require('./ImptTestHelper');
const UserInterractor = require('../lib/util/UserInteractor');
const Identifier = require('../lib/util/Identifier');
const Util = require('util');
// Helper class for testing impt tool.
// Contains common methods for testing output error message
class MessageHelper {
static get DEVICE() {
return Identifier.ENTITY_TYPE.TYPE_DEVICE;
}
static get DG() {
return Identifier.ENTITY_TYPE.TYPE_DEVICE_GROUP;
}
static get PRODUCT() {
return Identifier.ENTITY_TYPE.TYPE_PRODUCT;
}
static get BUILD() {
return Identifier.ENTITY_TYPE.TYPE_BUILD;
}
static get ACCOUNT() {
return Identifier.ENTITY_TYPE.TYPE_ACCOUNT;
}
static get LOGINKEY() {
return Identifier.ENTITY_TYPE.TYPE_LOGIN_KEY;
}
static get WEBHOOK() {
return Identifier.ENTITY_TYPE.TYPE_WEBHOOK;
}
static checkDuplicateResourceError(commandOut, entity) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Duplicate Resource: ${entity}s must have unique names.`
);
}
static checkMissingArgumentsError(commandOut, names) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Missing required argument: ${names}`
);
}
static checkNotEnoughArgumentsError(commandOut, option) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Not enough arguments following: ${option}`
);
}
static checkNonEmptyOptionValueError(commandOut, option) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
Util.format(`${UserInterractor.ERRORS.CMD_NON_EMPTY_VALUE}`, option)
);
}
static checkInvalidValuesError(commandOut) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
'Invalid values:'
);
}
static checkInvalidUrlError(commandOut) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Invalid URL: The provided URL is invalid.`
);
}
static checkOptionPositiveValueError(commandOut, option) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Option "${option}" must have a positive integer value.`
);
}
static checkProjectDeviceGroupNotExistMessage(commandOut, deviceGroup) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Device Group "${deviceGroup}", saved in Project File, does not exist anymore.`
);
}
static checkTestDeviceGroupNotExistMessage(commandOut, deviceGroup) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
Util.format(`${UserInterractor.ERRORS.CONFIG_OUTDATED}`, `Device Group "${deviceGroup}"`, 'Test Configuration')
);
}
static checkProjectNotFoundMessage(commandOut) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Project File is not found in the current directory.`
);
}
static checkDependedDeviceGroupExistMessage(commandOut) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Dependent Devicegroups Exist: Cannot delete a product with associated devicegroups.`
);
}
static checkNoIdentifierIsSpecifiedMessage(commandOut, entity) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
Util.format(`${UserInterractor.ERRORS.NO_IDENTIFIER}`, entity)
);
}
static checkEntityNotFoundError(commandOut, entity, name) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
Util.format(`${UserInterractor.ERRORS.ENTITY_NOT_FOUND}`, entity, name)
);
}
static checkDeleteFlaggedDeploymentMessage(commandOut) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
`Resource Flagged: You cannot delete flagged deployments; set the flagged attribute to false and try again.`
);
}
static checkDeleteMinSupportedDeploymentMessage(commandOut, build, dg) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
Util.format(`${UserInterractor.ERRORS.BUILD_DELETE_ERR}`, `${Identifier.ENTITY_TYPE.TYPE_BUILD} "${build}"`, `${Identifier.ENTITY_TYPE.TYPE_DEVICE_GROUP} "${dg}"`)
);
}
static checkBuildDeployFileNotFoundMessage(commandOut, filetype, file) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
Util.format(`${UserInterractor.ERRORS.BUILD_DEPLOY_FILE_NOT_FOUND}`, `${filetype}`, `${file}`)
);
}
static checkOptionMustBeSpecifiedMessage(commandOut, option) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
Util.format(`${UserInterractor.ERRORS.CMD_REQUIRED_OPTION}`, `${option}`)
);
}
static checkNoTestFileFoundMessage(commandOut) {
ImptTestHelper.checkAttribute(commandOut, UserInterractor.ERRORS.ERROR,
UserInterractor.ERRORS.TEST_NO_FILES_FOUND);
}
}
module.exports = MessageHelper;