1
|
|
|
# -*- coding: utf-8 -*- |
2
|
|
|
# Copyright (C) 2019-2021 Greenbone Networks GmbH |
3
|
|
|
# |
4
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later |
5
|
|
|
# |
6
|
|
|
# This program is free software: you can redistribute it and/or modify |
7
|
|
|
# it under the terms of the GNU General Public License as published by |
8
|
|
|
# the Free Software Foundation, either version 3 of the License, or |
9
|
|
|
# (at your option) any later version. |
10
|
|
|
# |
11
|
|
|
# This program is distributed in the hope that it will be useful, |
12
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
13
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14
|
|
|
# GNU General Public License for more details. |
15
|
|
|
# |
16
|
|
|
# You should have received a copy of the GNU General Public License |
17
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
18
|
|
|
|
19
|
|
|
from . import Gmpv214TestCase |
20
|
|
|
from ..gmpv7.testcmds import * # pylint: disable=unused-wildcard-import,wildcard-import |
21
|
|
|
|
22
|
|
|
|
23
|
|
|
class Gmpv214AuthenticateTestCase(GmpAuthenticateTestCase, Gmpv214TestCase): |
|
|
|
|
24
|
|
|
pass |
25
|
|
|
|
26
|
|
|
|
27
|
|
|
class Gmpv214CloneAlertTestCase(GmpCloneAlertTestCase, Gmpv214TestCase): |
|
|
|
|
28
|
|
|
|
29
|
|
|
pass |
30
|
|
|
|
31
|
|
|
|
32
|
|
|
class Gmpv214CloneConfigTestCase(GmpCloneConfigTestCase, Gmpv214TestCase): |
|
|
|
|
33
|
|
|
pass |
34
|
|
|
|
35
|
|
|
|
36
|
|
|
class Gmpv214CloneReportFormatTestCase( |
37
|
|
|
GmpCloneReportFormatTestCase, Gmpv214TestCase |
|
|
|
|
38
|
|
|
): |
39
|
|
|
pass |
40
|
|
|
|
41
|
|
|
|
42
|
|
|
class Gmpv214CloneCredentialTestCase( |
43
|
|
|
GmpCloneCredentialTestCase, Gmpv214TestCase |
|
|
|
|
44
|
|
|
): |
45
|
|
|
pass |
46
|
|
|
|
47
|
|
|
|
48
|
|
|
class Gmpv214CloneFilterTestCase(GmpCloneFilterTestCase, Gmpv214TestCase): |
|
|
|
|
49
|
|
|
pass |
50
|
|
|
|
51
|
|
|
|
52
|
|
|
class Gmpv214HelpTestCase(GmpHelpTestCase, Gmpv214TestCase): |
|
|
|
|
53
|
|
|
pass |
54
|
|
|
|
55
|
|
|
|
56
|
|
|
class Gmpv214CloneGroupTestCase(GmpCloneGroupTestCase, Gmpv214TestCase): |
|
|
|
|
57
|
|
|
|
58
|
|
|
pass |
59
|
|
|
|
60
|
|
|
|
61
|
|
|
class Gmpv214CloneNoteTestCase(GmpCloneNoteTestCase, Gmpv214TestCase): |
|
|
|
|
62
|
|
|
pass |
63
|
|
|
|
64
|
|
|
|
65
|
|
|
class Gmpv214CloneOverrideTestCase(GmpCloneOverrideTestCase, Gmpv214TestCase): |
|
|
|
|
66
|
|
|
pass |
67
|
|
|
|
68
|
|
|
|
69
|
|
|
class Gmpv214ClonePermissionTestCase( |
70
|
|
|
GmpClonePermissionTestCase, Gmpv214TestCase |
|
|
|
|
71
|
|
|
): |
72
|
|
|
pass |
73
|
|
|
|
74
|
|
|
|
75
|
|
|
class Gmpv214ClonePortListTestCase(GmpClonePortListTestCase, Gmpv214TestCase): |
|
|
|
|
76
|
|
|
pass |
77
|
|
|
|
78
|
|
|
|
79
|
|
|
class Gmpv214CloneRoleTestCase(GmpCloneRoleTestCase, Gmpv214TestCase): |
|
|
|
|
80
|
|
|
pass |
81
|
|
|
|
82
|
|
|
|
83
|
|
|
class Gmpv214CloneScannerTestCase(GmpCloneScannerTestCase, Gmpv214TestCase): |
|
|
|
|
84
|
|
|
pass |
85
|
|
|
|
86
|
|
|
|
87
|
|
|
class Gmpv214CloneScheduleTestCase(GmpCloneScheduleTestCase, Gmpv214TestCase): |
|
|
|
|
88
|
|
|
pass |
89
|
|
|
|
90
|
|
|
|
91
|
|
|
class Gmpv214CloneTagTestCase(GmpCloneTagTestCase, Gmpv214TestCase): |
|
|
|
|
92
|
|
|
pass |
93
|
|
|
|
94
|
|
|
|
95
|
|
|
class Gmpv214CloneTargetCommandTestCase( |
96
|
|
|
GmpCloneTargetCommandTestCase, Gmpv214TestCase |
|
|
|
|
97
|
|
|
): |
98
|
|
|
pass |
99
|
|
|
|
100
|
|
|
|
101
|
|
|
class Gmpv214CloneTaskTestCase(GmpCloneTaskTestCase, Gmpv214TestCase): |
|
|
|
|
102
|
|
|
pass |
103
|
|
|
|
104
|
|
|
|
105
|
|
|
class Gmpv214CloneUserTestCase(GmpCloneUserTestCase, Gmpv214TestCase): |
|
|
|
|
106
|
|
|
pass |
107
|
|
|
|
108
|
|
|
|
109
|
|
|
class Gmpv214CreateContainerTaskCommandTestCase( |
110
|
|
|
GMPCreateContainerTaskCommandTestCase, Gmpv214TestCase |
|
|
|
|
111
|
|
|
): |
112
|
|
|
pass |
113
|
|
|
|
114
|
|
|
|
115
|
|
|
class Gmpv214CreateGroupTestCase(GmpCreateGroupTestCase, Gmpv214TestCase): |
|
|
|
|
116
|
|
|
pass |
117
|
|
|
|
118
|
|
|
|
119
|
|
|
class Gmpv214CreateHostTestCase(GmpCreateHostTestCase, Gmpv214TestCase): |
|
|
|
|
120
|
|
|
pass |
121
|
|
|
|
122
|
|
|
|
123
|
|
|
class Gmpv214CreatePortListTestCase(GmpCreatePortListTestCase, Gmpv214TestCase): |
|
|
|
|
124
|
|
|
pass |
125
|
|
|
|
126
|
|
|
|
127
|
|
|
class Gmpv214CreatePortRangeTestCase( |
128
|
|
|
GmpCreatePortRangeTestCase, Gmpv214TestCase |
|
|
|
|
129
|
|
|
): |
130
|
|
|
pass |
131
|
|
|
|
132
|
|
|
|
133
|
|
|
class Gmpv214CreateRoleTestCase(GmpCreateRoleTestCase, Gmpv214TestCase): |
|
|
|
|
134
|
|
|
pass |
135
|
|
|
|
136
|
|
|
|
137
|
|
|
class Gmpv214CreateUserTestCase(GmpCreateUserTestCase, Gmpv214TestCase): |
|
|
|
|
138
|
|
|
pass |
139
|
|
|
|
140
|
|
|
|
141
|
|
|
class Gmpv214DeleteAlertTestCase(GmpDeleteAlertTestCase, Gmpv214TestCase): |
|
|
|
|
142
|
|
|
pass |
143
|
|
|
|
144
|
|
|
|
145
|
|
|
class Gmpv214DeleteAssetTestCase(GmpDeleteAssetTestCase, Gmpv214TestCase): |
|
|
|
|
146
|
|
|
pass |
147
|
|
|
|
148
|
|
|
|
149
|
|
|
class Gmpv214DeleteCredentialTestCase( |
150
|
|
|
GmpDeleteCredentialTestCase, Gmpv214TestCase |
|
|
|
|
151
|
|
|
): |
152
|
|
|
pass |
153
|
|
|
|
154
|
|
|
|
155
|
|
|
class Gmpv214DeleteFilterTestCase(GmpDeleteFilterTestCase, Gmpv214TestCase): |
|
|
|
|
156
|
|
|
pass |
157
|
|
|
|
158
|
|
|
|
159
|
|
|
class Gmpv214DeleteGroupTestCase(GmpDeleteGroupTestCase, Gmpv214TestCase): |
|
|
|
|
160
|
|
|
pass |
161
|
|
|
|
162
|
|
|
|
163
|
|
|
class Gmpv214DeleteNoteTestCase(GmpDeleteNoteTestCase, Gmpv214TestCase): |
|
|
|
|
164
|
|
|
pass |
165
|
|
|
|
166
|
|
|
|
167
|
|
|
class Gmpv214DeleteOverrideTestCase(GmpDeleteOverrideTestCase, Gmpv214TestCase): |
|
|
|
|
168
|
|
|
pass |
169
|
|
|
|
170
|
|
|
|
171
|
|
|
class Gmpv214DeletePermissionTestCase( |
172
|
|
|
GmpDeletePermissionTestCase, Gmpv214TestCase |
|
|
|
|
173
|
|
|
): |
174
|
|
|
pass |
175
|
|
|
|
176
|
|
|
|
177
|
|
|
class Gmpv214DeletePortListTestCase(GmpDeletePortListTestCase, Gmpv214TestCase): |
|
|
|
|
178
|
|
|
pass |
179
|
|
|
|
180
|
|
|
|
181
|
|
|
class Gmpv214DeletePortRangeTestCase( |
182
|
|
|
GmpDeletePortRangeTestCase, Gmpv214TestCase |
|
|
|
|
183
|
|
|
): |
184
|
|
|
pass |
185
|
|
|
|
186
|
|
|
|
187
|
|
|
class Gmpv214DeleteReportTestCase(GmpDeleteReportTestCase, Gmpv214TestCase): |
|
|
|
|
188
|
|
|
pass |
189
|
|
|
|
190
|
|
|
|
191
|
|
|
class Gmpv214DeleteReportFormatTestCase( |
192
|
|
|
GmpDeleteReportFormatTestCase, Gmpv214TestCase |
|
|
|
|
193
|
|
|
): |
194
|
|
|
pass |
195
|
|
|
|
196
|
|
|
|
197
|
|
|
class Gmpv214DeleteRoleTestCase(GmpDeleteRoleTestCase, Gmpv214TestCase): |
|
|
|
|
198
|
|
|
pass |
199
|
|
|
|
200
|
|
|
|
201
|
|
|
class Gmpv214DeleteScannerTestCase(GmpDeleteScannerTestCase, Gmpv214TestCase): |
|
|
|
|
202
|
|
|
pass |
203
|
|
|
|
204
|
|
|
|
205
|
|
|
class Gmpv214DeleteScheduleTestCase(GmpDeleteScheduleTestCase, Gmpv214TestCase): |
|
|
|
|
206
|
|
|
pass |
207
|
|
|
|
208
|
|
|
|
209
|
|
|
class Gmpv214DeleteTagTestCase(GmpDeleteTagTestCase, Gmpv214TestCase): |
|
|
|
|
210
|
|
|
pass |
211
|
|
|
|
212
|
|
|
|
213
|
|
|
class Gmpv214DeleteTargetTestCase(GmpDeleteTargetTestCase, Gmpv214TestCase): |
|
|
|
|
214
|
|
|
pass |
215
|
|
|
|
216
|
|
|
|
217
|
|
|
class Gmpv214DeleteTaskTestCase(GmpDeleteTaskTestCase, Gmpv214TestCase): |
|
|
|
|
218
|
|
|
pass |
219
|
|
|
|
220
|
|
|
|
221
|
|
|
class Gmpv214DeleteUserTestCase(GmpDeleteUserTestCase, Gmpv214TestCase): |
|
|
|
|
222
|
|
|
pass |
223
|
|
|
|
224
|
|
|
|
225
|
|
|
class Gmpv214DescribeAuthCommandTestCase( |
226
|
|
|
GmpDescribeAuthCommandTestCase, Gmpv214TestCase |
|
|
|
|
227
|
|
|
): |
228
|
|
|
pass |
229
|
|
|
|
230
|
|
|
|
231
|
|
|
class Gmpv214EmptyTrashcanCommandTestCase( |
232
|
|
|
GmpEmptyTrashcanCommandTestCase, Gmpv214TestCase |
|
|
|
|
233
|
|
|
): |
234
|
|
|
pass |
235
|
|
|
|
236
|
|
|
|
237
|
|
|
class Gmpv214GetAlertTestCase(GmpGetAlertTestCase, Gmpv214TestCase): |
|
|
|
|
238
|
|
|
pass |
239
|
|
|
|
240
|
|
|
|
241
|
|
|
class Gmpv214GetAlertsTestCase(GmpGetAlertsTestCase, Gmpv214TestCase): |
|
|
|
|
242
|
|
|
pass |
243
|
|
|
|
244
|
|
|
|
245
|
|
|
class Gmpv214GetAssetTestCase(GmpGetAssetTestCase, Gmpv214TestCase): |
|
|
|
|
246
|
|
|
pass |
247
|
|
|
|
248
|
|
|
|
249
|
|
|
class Gmpv214GetAssetsTestCase(GmpGetAssetsTestCase, Gmpv214TestCase): |
|
|
|
|
250
|
|
|
pass |
251
|
|
|
|
252
|
|
|
|
253
|
|
|
class Gmpv214GetCredentialTestCase(GmpGetCredentialTestCase, Gmpv214TestCase): |
|
|
|
|
254
|
|
|
pass |
255
|
|
|
|
256
|
|
|
|
257
|
|
|
class Gmpv214GetCredentialsTestCase(GmpGetCredentialsTestCase, Gmpv214TestCase): |
|
|
|
|
258
|
|
|
pass |
259
|
|
|
|
260
|
|
|
|
261
|
|
|
class Gmpv214GetFeedTestCase(GmpGetFeedTestCase, Gmpv214TestCase): |
|
|
|
|
262
|
|
|
pass |
263
|
|
|
|
264
|
|
|
|
265
|
|
|
class Gmpv214GetFeedsTestCase(GmpGetFeedsTestCase, Gmpv214TestCase): |
|
|
|
|
266
|
|
|
pass |
267
|
|
|
|
268
|
|
|
|
269
|
|
|
class Gmpv214GetFilterTestCase(GmpGetFilterTestCase, Gmpv214TestCase): |
|
|
|
|
270
|
|
|
pass |
271
|
|
|
|
272
|
|
|
|
273
|
|
|
class Gmpv214GetFiltersTestCase(GmpGetFiltersTestCase, Gmpv214TestCase): |
|
|
|
|
274
|
|
|
pass |
275
|
|
|
|
276
|
|
|
|
277
|
|
|
class Gmpv214GetGroupTestCase(GmpGetGroupTestCase, Gmpv214TestCase): |
|
|
|
|
278
|
|
|
pass |
279
|
|
|
|
280
|
|
|
|
281
|
|
|
class Gmpv214GetGroupsTestCase(GmpGetGroupsTestCase, Gmpv214TestCase): |
|
|
|
|
282
|
|
|
pass |
283
|
|
|
|
284
|
|
|
|
285
|
|
|
class Gmpv214GetNoteTestCase(GmpGetNoteTestCase, Gmpv214TestCase): |
|
|
|
|
286
|
|
|
pass |
287
|
|
|
|
288
|
|
|
|
289
|
|
|
class Gmpv214GetNotesTestCase(GmpGetNotesTestCase, Gmpv214TestCase): |
|
|
|
|
290
|
|
|
pass |
291
|
|
|
|
292
|
|
|
|
293
|
|
|
class Gmpv214GetNvtTestCase(GmpGetNvtTestCase, Gmpv214TestCase): |
|
|
|
|
294
|
|
|
pass |
295
|
|
|
|
296
|
|
|
|
297
|
|
|
class Gmpv214GetNvtFamiliesTestCase(GmpGetNvtFamiliesTestCase, Gmpv214TestCase): |
|
|
|
|
298
|
|
|
pass |
299
|
|
|
|
300
|
|
|
|
301
|
|
|
class Gmpv214GetNvtsTestCase(GmpGetNvtsTestCase, Gmpv214TestCase): |
|
|
|
|
302
|
|
|
pass |
303
|
|
|
|
304
|
|
|
|
305
|
|
|
class Gmpv214GetOverrideTestCase(GmpGetOverrideTestCase, Gmpv214TestCase): |
|
|
|
|
306
|
|
|
pass |
307
|
|
|
|
308
|
|
|
|
309
|
|
|
class Gmpv214GetOverridesTestCase(GmpGetOverridesTestCase, Gmpv214TestCase): |
|
|
|
|
310
|
|
|
pass |
311
|
|
|
|
312
|
|
|
|
313
|
|
|
class Gmpv214GetPermissionTestCase(GmpGetPermissionTestCase, Gmpv214TestCase): |
|
|
|
|
314
|
|
|
pass |
315
|
|
|
|
316
|
|
|
|
317
|
|
|
class Gmpv214GetPermissionsTestCase(GmpGetPermissionsTestCase, Gmpv214TestCase): |
|
|
|
|
318
|
|
|
pass |
319
|
|
|
|
320
|
|
|
|
321
|
|
|
class Gmpv214GetPortListTestCase(GmpGetPortListTestCase, Gmpv214TestCase): |
|
|
|
|
322
|
|
|
pass |
323
|
|
|
|
324
|
|
|
|
325
|
|
|
class Gmpv214GetPortListsTestCase(GmpGetPortListsTestCase, Gmpv214TestCase): |
|
|
|
|
326
|
|
|
pass |
327
|
|
|
|
328
|
|
|
|
329
|
|
|
class Gmpv214GetPreferenceTestCase(GmpGetPreferenceTestCase, Gmpv214TestCase): |
|
|
|
|
330
|
|
|
pass |
331
|
|
|
|
332
|
|
|
|
333
|
|
|
class Gmpv214GetPreferencesTestCase(GmpGetPreferencesTestCase, Gmpv214TestCase): |
|
|
|
|
334
|
|
|
pass |
335
|
|
|
|
336
|
|
|
|
337
|
|
|
class Gmpv214GetReportTestCase(GmpGetReportTestCase, Gmpv214TestCase): |
|
|
|
|
338
|
|
|
pass |
339
|
|
|
|
340
|
|
|
|
341
|
|
|
class Gmpv214GetReportFormatTestCase( |
342
|
|
|
GmpGetReportFormatTestCase, Gmpv214TestCase |
|
|
|
|
343
|
|
|
): |
344
|
|
|
pass |
345
|
|
|
|
346
|
|
|
|
347
|
|
|
class Gmpv214GetReportFormatsTestCase( |
348
|
|
|
GmpGetReportFormatsTestCase, Gmpv214TestCase |
|
|
|
|
349
|
|
|
): |
350
|
|
|
pass |
351
|
|
|
|
352
|
|
|
|
353
|
|
|
class Gmpv214GetReportsTestCase(GmpGetReportsTestCase, Gmpv214TestCase): |
|
|
|
|
354
|
|
|
pass |
355
|
|
|
|
356
|
|
|
|
357
|
|
|
class Gmpv214GetResultTestCase(GmpGetResultTestCase, Gmpv214TestCase): |
|
|
|
|
358
|
|
|
pass |
359
|
|
|
|
360
|
|
|
|
361
|
|
|
class Gmpv214GetResultsTestCase(GmpGetResultsTestCase, Gmpv214TestCase): |
|
|
|
|
362
|
|
|
pass |
363
|
|
|
|
364
|
|
|
|
365
|
|
|
class Gmpv214GetRoleTestCase(GmpGetRoleTestCase, Gmpv214TestCase): |
|
|
|
|
366
|
|
|
pass |
367
|
|
|
|
368
|
|
|
|
369
|
|
|
class Gmpv214GetRolesTestCase(GmpGetRolesTestCase, Gmpv214TestCase): |
|
|
|
|
370
|
|
|
pass |
371
|
|
|
|
372
|
|
|
|
373
|
|
|
class Gmpv214GetScannerTestCase(GmpGetScannerTestCase, Gmpv214TestCase): |
|
|
|
|
374
|
|
|
pass |
375
|
|
|
|
376
|
|
|
|
377
|
|
|
class Gmpv214GetScannersTestCase(GmpGetScannersTestCase, Gmpv214TestCase): |
|
|
|
|
378
|
|
|
pass |
379
|
|
|
|
380
|
|
|
|
381
|
|
|
class Gmpv214GetScheduleTestCase(GmpGetScheduleTestCase, Gmpv214TestCase): |
|
|
|
|
382
|
|
|
pass |
383
|
|
|
|
384
|
|
|
|
385
|
|
|
class Gmpv214GetSchedulesTestCase(GmpGetSchedulesTestCase, Gmpv214TestCase): |
|
|
|
|
386
|
|
|
pass |
387
|
|
|
|
388
|
|
|
|
389
|
|
|
class Gmpv214GetSettingTestCase(GmpGetSettingTestCase, Gmpv214TestCase): |
|
|
|
|
390
|
|
|
pass |
391
|
|
|
|
392
|
|
|
|
393
|
|
|
class Gmpv214GetSettingsTestCase(GmpGetSettingsTestCase, Gmpv214TestCase): |
|
|
|
|
394
|
|
|
pass |
395
|
|
|
|
396
|
|
|
|
397
|
|
|
class Gmpv214GetSystemReportsTestCase( |
398
|
|
|
GmpGetSystemReportsTestCase, Gmpv214TestCase |
|
|
|
|
399
|
|
|
): |
400
|
|
|
pass |
401
|
|
|
|
402
|
|
|
|
403
|
|
|
class Gmpv214GetTagTestCase(GmpGetTagTestCase, Gmpv214TestCase): |
|
|
|
|
404
|
|
|
pass |
405
|
|
|
|
406
|
|
|
|
407
|
|
|
class Gmpv214GetTagsTestCase(GmpGetTagsTestCase, Gmpv214TestCase): |
|
|
|
|
408
|
|
|
pass |
409
|
|
|
|
410
|
|
|
|
411
|
|
|
class Gmpv214GetTargetTestCase(GmpGetTargetTestCase, Gmpv214TestCase): |
|
|
|
|
412
|
|
|
pass |
413
|
|
|
|
414
|
|
|
|
415
|
|
|
class Gmpv214GetTargetsTestCase(GmpGetTargetsTestCase, Gmpv214TestCase): |
|
|
|
|
416
|
|
|
pass |
417
|
|
|
|
418
|
|
|
|
419
|
|
|
class Gmpv214GetUserTestCase(GmpGetUserTestCase, Gmpv214TestCase): |
|
|
|
|
420
|
|
|
pass |
421
|
|
|
|
422
|
|
|
|
423
|
|
|
class Gmpv214GetUsersTestCase(GmpGetUsersTestCase, Gmpv214TestCase): |
|
|
|
|
424
|
|
|
pass |
425
|
|
|
|
426
|
|
|
|
427
|
|
|
class Gmpv214GetVersionCommandTestCase( |
428
|
|
|
GmpGetVersionCommandTestCase, Gmpv214TestCase |
|
|
|
|
429
|
|
|
): |
430
|
|
|
pass |
431
|
|
|
|
432
|
|
|
|
433
|
|
|
class Gmpv214ImportConfigTestCase(GmpImportConfigTestCase, Gmpv214TestCase): |
|
|
|
|
434
|
|
|
pass |
435
|
|
|
|
436
|
|
|
|
437
|
|
|
class Gmpv214ImportReportFormatTestCase( |
438
|
|
|
GmpImportReportFormatTestCase, Gmpv214TestCase |
|
|
|
|
439
|
|
|
): |
440
|
|
|
pass |
441
|
|
|
|
442
|
|
|
|
443
|
|
|
class Gmpv214ModifyAssetTestCase(GmpModifyAssetTestCase, Gmpv214TestCase): |
|
|
|
|
444
|
|
|
pass |
445
|
|
|
|
446
|
|
|
|
447
|
|
|
class Gmpv214ModifyAuthTestCase(GmpModifyAuthTestCase, Gmpv214TestCase): |
|
|
|
|
448
|
|
|
pass |
449
|
|
|
|
450
|
|
|
|
451
|
|
|
class Gmpv214ModifyConfigTestCase(GmpModifyConfigTestCase, Gmpv214TestCase): |
|
|
|
|
452
|
|
|
pass |
453
|
|
|
|
454
|
|
|
|
455
|
|
|
class Gmpv214ModifyConfigSetCommentTestCase( |
456
|
|
|
GmpModifyConfigSetCommentTestCase, Gmpv214TestCase |
|
|
|
|
457
|
|
|
): |
458
|
|
|
pass |
459
|
|
|
|
460
|
|
|
|
461
|
|
|
class Gmpv214ModifyConfigSetFamilySelectionTestCase( |
462
|
|
|
GmpModifyConfigSetFamilySelectionTestCase, Gmpv214TestCase |
|
|
|
|
463
|
|
|
): |
464
|
|
|
pass |
465
|
|
|
|
466
|
|
|
|
467
|
|
|
class Gmpv214ModifyConfigSetNvtPreferenceTestCase( |
468
|
|
|
GmpModifyConfigSetNvtPreferenceTestCase, Gmpv214TestCase |
|
|
|
|
469
|
|
|
): |
470
|
|
|
pass |
471
|
|
|
|
472
|
|
|
|
473
|
|
|
class Gmpv214ModifyConfigSetNvtSelectionTestCase( |
474
|
|
|
GmpModifyConfigSetNvtSelectionTestCase, Gmpv214TestCase |
|
|
|
|
475
|
|
|
): |
476
|
|
|
pass |
477
|
|
|
|
478
|
|
|
|
479
|
|
|
class Gmpv214ModifyConfigSetScannerPreferenceTestCase( |
480
|
|
|
GmpModifyConfigSetScannerPreferenceTestCase, Gmpv214TestCase |
|
|
|
|
481
|
|
|
): |
482
|
|
|
pass |
483
|
|
|
|
484
|
|
|
|
485
|
|
|
class Gmpv214ModifyGroupTestCase(GmpModifyGroupTestCase, Gmpv214TestCase): |
|
|
|
|
486
|
|
|
pass |
487
|
|
|
|
488
|
|
|
|
489
|
|
|
class Gmpv214ModifyPortListTestCase(GmpModifyPortListTestCase, Gmpv214TestCase): |
|
|
|
|
490
|
|
|
pass |
491
|
|
|
|
492
|
|
|
|
493
|
|
|
class Gmpv214ModifyRoleTestCase(GmpModifyRoleTestCase, Gmpv214TestCase): |
|
|
|
|
494
|
|
|
pass |
495
|
|
|
|
496
|
|
|
|
497
|
|
|
class Gmpv214ModifySettingTestCase(GmpModifySettingTestCase, Gmpv214TestCase): |
|
|
|
|
498
|
|
|
pass |
499
|
|
|
|
500
|
|
|
|
501
|
|
|
class Gmpv214ModifyTargetTestCase(GmpModifyTargetTestCase, Gmpv214TestCase): |
|
|
|
|
502
|
|
|
pass |
503
|
|
|
|
504
|
|
|
|
505
|
|
|
class Gmpv214ModifyTaskCommandTestCase( |
506
|
|
|
GmpModifyTaskCommandTestCase, Gmpv214TestCase |
|
|
|
|
507
|
|
|
): |
508
|
|
|
pass |
509
|
|
|
|
510
|
|
|
|
511
|
|
|
class Gmpv214MoveTaskTestCase(GmpMoveTaskTestCase, Gmpv214TestCase): |
|
|
|
|
512
|
|
|
pass |
513
|
|
|
|
514
|
|
|
|
515
|
|
|
class Gmpv214RestoreTestCase(GmpRestoreTestCase, Gmpv214TestCase): |
|
|
|
|
516
|
|
|
pass |
517
|
|
|
|
518
|
|
|
|
519
|
|
|
class Gmpv214ResumeTaskTestCase(GmpResumeTaskTestCase, Gmpv214TestCase): |
|
|
|
|
520
|
|
|
pass |
521
|
|
|
|
522
|
|
|
|
523
|
|
|
class Gmpv214StartTaskTestCase(GmpStartTaskTestCase, Gmpv214TestCase): |
|
|
|
|
524
|
|
|
pass |
525
|
|
|
|
526
|
|
|
|
527
|
|
|
class Gmpv214StopTaskTestCase(GmpStopTaskTestCase, Gmpv214TestCase): |
|
|
|
|
528
|
|
|
pass |
529
|
|
|
|
530
|
|
|
|
531
|
|
|
class Gmpv214SyncCertCommandTestCase( |
532
|
|
|
GmpSyncCertCommandTestCase, Gmpv214TestCase |
|
|
|
|
533
|
|
|
): |
534
|
|
|
pass |
535
|
|
|
|
536
|
|
|
|
537
|
|
|
class Gmpv214SyncConfigCommandTestCase( |
538
|
|
|
GmpSyncConfigCommandTestCase, Gmpv214TestCase |
|
|
|
|
539
|
|
|
): |
540
|
|
|
pass |
541
|
|
|
|
542
|
|
|
|
543
|
|
|
class Gmpv214SyncFeedCommandTestCase( |
544
|
|
|
GmpSyncFeedCommandTestCase, Gmpv214TestCase |
|
|
|
|
545
|
|
|
): |
546
|
|
|
pass |
547
|
|
|
|
548
|
|
|
|
549
|
|
|
class Gmpv214SyncScapCommandTestCase( |
550
|
|
|
GmpSyncScapCommandTestCase, Gmpv214TestCase |
|
|
|
|
551
|
|
|
): |
552
|
|
|
pass |
553
|
|
|
|
554
|
|
|
|
555
|
|
|
class Gmpv214TestAlertTestCase(GmpTestAlertTestCase, Gmpv214TestCase): |
|
|
|
|
556
|
|
|
pass |
557
|
|
|
|
558
|
|
|
|
559
|
|
|
class Gmpv214TriggerAlertTestCase(GmpTriggerAlertTestCase, Gmpv214TestCase): |
|
|
|
|
560
|
|
|
pass |
561
|
|
|
|
562
|
|
|
|
563
|
|
|
class Gmpv214VerifyReportFormatTestCase( |
564
|
|
|
GmpVerifyReportFormatTestCase, Gmpv214TestCase |
|
|
|
|
565
|
|
|
): |
566
|
|
|
pass |
567
|
|
|
|
568
|
|
|
|
569
|
|
|
class Gmpv214v7VerifyScannerTestCase(GmpVerifyScannerTestCase, Gmpv214TestCase): |
|
|
|
|
570
|
|
|
pass |
571
|
|
|
|
572
|
|
|
|
573
|
|
|
class Gmpv214v7WithStatementTestCase(GmpWithStatementTestCase, Gmpv214TestCase): |
|
|
|
|
574
|
|
|
pass |
575
|
|
|
|