-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest lab.txt
417 lines (356 loc) · 15.6 KB
/
test lab.txt
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
Sub MoveToFolder(Folder)
On Error Resume Next
Set g_objFolder = Folder
On Error GoTo 0
End Sub
Function TestSetTests_FieldCanChange(FieldName, NewValue)
On Error Resume Next
Select Case FieldName
Case "TC_STATUS"
If Not (User.IsInGroup("LCHC_Test_Lead") Or User.IsInGroup("LCHC_Test_Manager")) Then
MsgBox "You cannot change the test status without performing a new run!", vbExclamation, "Warning"
TestSetTests_FieldCanChange = False
End If
Case Else
TestSetTests_FieldCanChange = DefaultRes
End Select
On Error GoTo 0
End Function
Sub TestSet_AfterPost
On Error Resume Next
On Error GoTo 0
End Sub
Sub Run_AfterPost
On Error Resume Next
On Error GoTo 0
End Sub
Sub RunTestsManually(Tests)
On Error Resume Next
On Error GoTo 0
End Sub
Sub RunTestSet(Tests)
On Error Resume Next
On Error GoTo 0
End Sub
Sub TestSet_MoveTo
On Error Resume Next
TestSet_Fields("CY_USER_02").ViewOrder = 1
TestSet_Fields("CY_USER_03").ViewOrder = 2
TestSet_Fields("CY_USER_04").ViewOrder = 3
TestSet_Fields("CY_USER_05").ViewOrder = 4
TestSet_Fields("CY_USER_06").ViewOrder = 5
TestSet_Fields("CY_USER_07").ViewOrder = 6
TestSet_Fields("CY_ASSIGN_RCYC").ViewOrder = 7
TestSet_Fields("CY_STATUS").ViewOrder = 8
TestSet_Fields("CY_USER_01").ViewOrder = 9
TestSet_Fields("CY_OPEN_DATE").ViewOrder = 10
TestSet_Fields("CY_CLOSE_DATE").ViewOrder = 11
TestSet_Fields("CY_REQUEST_ID").ViewOrder = 12
On Error GoTo 0
End Sub
Sub TestSetTests_MoveTo
On Error Resume Next
TestSet_Fields("CY_USER_02").ViewOrder = 1
TestSet_Fields("CY_USER_03").ViewOrder = 2
TestSet_Fields("CY_USER_04").ViewOrder = 3
TestSet_Fields("CY_USER_05").ViewOrder = 4
TestSet_Fields("CY_USER_06").ViewOrder = 5
TestSet_Fields("CY_USER_07").ViewOrder = 6
TestSet_Fields("CY_ASSIGN_RCYC").ViewOrder = 7
TestSet_Fields("CY_STATUS").ViewOrder = 8
TestSet_Fields("CY_USER_01").ViewOrder = 9
TestSet_Fields("CY_OPEN_DATE").ViewOrder = 10
TestSet_Fields("CY_CLOSE_DATE").ViewOrder = 11
TestSet_Fields("CY_REQUEST_ID").ViewOrder = 12
On Error GoTo 0
End Sub
Sub TestSet_FieldChange(FieldName)
On Error Resume Next
If TestSet_Fields.Field("CY_USER_02").Value = "OP661" Then
TestSet_Fields.Field("CY_USER_04").IsRequired = True
'TestSet_Fields.Field("CY_USER_06").IsRequired = True
Else
TestSet_Fields.Field("CY_USER_04").IsRequired = False
'TestSet_Fields.Field("CY_USER_06").IsRequired = False
End If
On Error GoTo 0
End Sub
Function TestSet_FieldCanChange(FieldName, NewValue)
On Error Resume Next
If TestSet_Fields.Field("CY_USER_02").Value = "OP661" Then
TestSet_Fields.Field("CY_USER_04").IsRequired = True
'TestSet_Fields.Field("CY_USER_06").IsRequired = True
Else
TestSet_Fields.Field("CY_USER_04").IsRequired = False
'TestSet_Fields.Field("CY_USER_06").IsRequired = False
End If
If FieldName = "CY_USER_06" Then
Select Case NewValue
Case "Risk"
TestSet_Fields.Field("CY_USER_05").List = Lists("Risk Test Cycle")
Case "Operations"
TestSet_Fields.Field("CY_USER_05").List = Lists("Operations Test Cycle")
Case "Reporting"
TestSet_Fields.Field("CY_USER_05").List = Lists("Reporting Test Cycle")
Case "Technical","Techincial"
TestSet_Fields.Field("CY_USER_05").List = Lists("Technical Test Cycle")
Case Else
TestSet_Fields.Field("CY_USER_05").List = Lists("Test Cycle")
End Select
End If
TestSet_FieldCanChange = DefaultRes
On Error GoTo 0
End Function
Sub TestSetTests_FieldChange(FieldName)
On Error Resume Next
If FieldName = "TC_PLAN_SCHEDULING_DATE" Then
If TestSetTest_Fields.Field("TC_USER_03").Value = "" Then
TestSetTest_Fields.Field("TC_USER_03").Value = TestSetTest_Fields.Field("TC_PLAN_SCHEDULING_DATE").Value
End If
End If
If FieldName = "TC_USER_03" Then
If TestSetTest_Fields.Field("TC_PLAN_SCHEDULING_DATE"). Value = "" Then
MsgBox "You cannot enter a replanned exec date without entering a baseline planned date first", vbExclamation, "Warning"
TestSetTest_Fields.Field("TC_USER_03").Value = ""
End If
End If
On Error GoTo 0
End Sub
Sub Run_MoveTo
On Error Resume Next
On Error GoTo 0
End Sub
Function Run_CanPost
On Error Resume Next
Run_CanPost = DefaultRes
On Error GoTo 0
End Function
Function TestSet_CanRemoveTests(Tests)
On Error Resume Next
TestSet_CanRemoveTests = DefaultRes
On Error GoTo 0
End Function
Function TestSet_CanAddTests(Tests)
On Error Resume Next
TestSet_CanAddTests = DefaultRes
On Error GoTo 0
End Function
Function TestSet_CanDelete(Entity,IsTestSet)
On Error Resume Next
TestSet_CanDelete = DefaultRes
On Error GoTo 0
End Function
Function TestSet_CanPost
On Error Resume Next
TestSet_CanPost = DefaultRes
On Error GoTo 0
End Function
Public Function ExportTestsByTestSet()
On Error Resume Next
Dim testSet
Dim testF
Dim tstSet
Dim testSetFilter
Dim TestFilter
Dim tst
Dim desstepF
Dim desstep
Dim tList
Dim dList
Dim iRow
Dim myArr()
Dim iCount
iRow = 2
iCount = -1
' Get the path for the test that's been selected
strFolderPath = g_objFolder.Path
strYorN = MsgBox("You have chosen the following folder path to export - [" & strFolderPath & "]. Is this correct?",VbYesNo)
If strYorN <> "6" Then
Exit Function
Else
' Now choose where you'd like to store your file
strPath = BrowseFolder("My Computer",True)
If strPath = "" Then
Exit Function
Else
Set objWshShell = CreateObject("WScript.Shell")
objWshShell.Sleep 60
Set objWshShell = Nothing
End If
End If
' Open Excel
Set objExcel = CreateObject("Excel.Application")
objExcel.Visible = False
objExcel.Application.DisplayAlerts = False
Set objWrkBk = objExcel.Workbooks.Add()
objWrkBk.SaveAs(strPath & "\QC_Test_Set_Export.xlsx")
objWrkBk.Worksheets(1).Cells(1,1).Value = "Test Set Folder"
objWrkBk.Worksheets(1).Cells(1,2).Value = "Test Set Name"
objWrkBk.Worksheets(1).Cells(1,3).Value = "Test Case Folder"
objWrkBk.Worksheets(1).Cells(1,4).Value = "Test Case Name"
objWrkBk.Worksheets(1).Cells(1,5).Value = "Application"
objWrkBk.Worksheets(1).Cells(1,6).Value = "Functional Area"
objWrkBk.Worksheets(1).Cells(1,7).Value = "Created for Project"
objWrkBk.Worksheets(1).Cells(1,8).Value = "Description"
objWrkBk.Worksheets(1).Cells(1,9).Value = "Priority"
objWrkBk.Worksheets(1).Cells(1,10).Value = "Step Name"
objWrkBk.Worksheets(1).Cells(1,11).Value = "Step Description"
objWrkBk.Worksheets(1).Cells(1,12).Value = "Step Expected Result"
objWrkBk.Worksheets(1).Cells(1,13).Value = "Test Execution Status"
objWrkBk.Worksheets(1).Rows("1:1").Select
objWrkBk.Application.Selection.AutoFilter
' Open the connection to QC
Set tdc = TDConnection
' Create test set factory
Set testSet = tdc.TestSetFactory
' Create the list of test sets
Set tList = testSet.NewList("")
' Loop round the list
For Each tstSet In tList
rc = tstSet.TestSetFolder.Path
If InStr(1, rc, strFolderPath) > 0 Then
Set InstFilter = tstSet.TSTestFactory.Filter
InstFilter.Order("TC_TEST_ORDER") = 1
For Each mytst In InstFilter.NewList
iCount = iCount + 1
ReDim Preserve myArr(iCount)
myArr(iCount) = mytst.Name
Next
' Get a cross reference to the tests within the test set
Set testSetFilter = testSet.Filter
' Choose this test set
testSetFilter.Filter("CY_CYCLE_ID") = tstSet.ID
Set testF = tdc.TestFactory
Set TestFilter = testF.Filter
TestFilter.SetXFilter "TEST-TESTSET", True, testSetFilter.Text
Set testL = testF.NewList(TestFilter.Text)
' Loop round the array
For Each Ele In myArr
' Loop round tests in the test set
For Each tst In testL
' See if this one matches our test id
If InStr(1, Ele, tst.Name) Then
' Get link to design steps
Set desstepF = tst.DesignStepFactory
Set dList = desstepF.NewList("")
For Each desstep In dList
On Error Resume Next
' Write out the test set
objWrkBk.Worksheets(1).Cells(iRow, 1).Value = tstSet.TestSetFolder.Name
objWrkBk.Worksheets(1).Cells(iRow, 2).Value = tstSet.Name
rc = tst.Field("TS_SUBJECT").Path
objWrkBk.Worksheets(1).Cells(iRow, 3).Value = rc
objWrkBk.Worksheets(1).Cells(iRow, 4).Value = tst.Name
objWrkBk.Worksheets(1).Cells(iRow, 5).Value = tst.Field(GetFieldName("Application", "TEST"))
objWrkBk.Worksheets(1).Cells(iRow, 6).Value = tst.Field(GetFieldName("Functional Area", "TEST"))
objWrkBk.Worksheets(1).Cells(iRow, 7).Value = tst.Field(GetFieldName("Created for Project", "TEST"))
strDesc = ReworkComments(tst.Field("TS_DESCRIPTION"))
' Split the comments if there's any vbLf characters
mysplit = Split(strDesc, "vbLf")
If UBound(mysplit) > 0 Then
strDesc = ""
For i = 0 To UBound(mysplit)
If mysplit(i) <> "" And mysplit(i) <> " " Then
If i = 0 Then
strDesc = mysplit(i)
Else
If strDesc <> "" Then
strDesc = strDesc & vbLf & mysplit(i)
Else
strDesc = mysplit(i)
End If
End If
End If
Next
objWrkBk.Worksheets(1).Cells(iRow, 8).Value = strDesc
Else
objWrkBk.Worksheets(1).Cells(iRow, 8).Value = strDesc
End If
objWrkBk.Worksheets(1).Cells(iRow, 9).Value = tst.Field(GetFieldName("Priority", "TEST"))
objWrkBk.Worksheets(1).Cells(iRow, 10).Value = desstep.StepName
strDesc = ReworkComments(desstep.StepDescription)
' Split the comments if there's any vbLf characters
mysplit = Split(strDesc, "vbLf")
If UBound(mysplit) > 0 Then
strDesc = ""
For i = 0 To UBound(mysplit)
If mysplit(i) <> "" And mysplit(i) <> " " Then
If i = 0 Then
strDesc = mysplit(i)
Else
If strDesc <> "" Then
strDesc = strDesc & vbLf & mysplit(i)
Else
strDesc = mysplit(i)
End If
End If
End If
Next
objWrkBk.Worksheets(1).Cells(iRow, 11).Value = strDesc
Else
objWrkBk.Worksheets(1).Cells(iRow, 11).Value = strDesc
End If
strDesc = ReworkComments(desstep.StepExpectedResult)
' Split the comments if there's any vbLf characters
mysplit = Split(strDesc, "vbLf")
If UBound(mysplit) > 0 Then
strDesc = ""
For i = 0 To UBound(mysplit)
If mysplit(i) <> "" And mysplit(i) <> " " Then
If i = 0 Then
strDesc = mysplit(i)
Else
If strDesc <> "" Then
strDesc = strDesc & vbLf & mysplit(i)
Else
strDesc = mysplit(i)
End If
End If
End If
Next
objWrkBk.Worksheets(1).Cells(iRow, 12).Value = strDesc
Else
objWrkBk.Worksheets(1).Cells(iRow, 12).Value = strDesc
End If
objWrkBk.Worksheets(1).Cells(iRow, 13).Value = tst.Field("TS_EXEC_STATUS")
iRow = iRow + 1
Next
End If
Next
Next
End If
Next
' Do some formatting
objWrkBk.Worksheets(1).Cells.Select
objWrkBk.Worksheets(1).Cells.EntireColumn.AutoFit
objWrkBk.Application.ActiveWindow.Zoom = 75
objWrkBk.Worksheets(1).Cells(1,1).Activate
objWrkBk.SaveAs (strPath & "\QC_Test_Set_Export.xlsx")
objWrkBk.Close
Set objWrkBk = Nothing
Set objExcel = Nothing
Set testF = Nothing
Set tdc = Nothing
MsgBox "Your Test Set Export has completed and can be found in [" & strPath & "]",vbOK
On Error GoTo 0
End Function
Sub RunTests(Tests)
On Error Resume Next
On Error GoTo 0
End Sub
Sub TestSet_New
On Error Resume Next
TestSet_Fields("CY_USER_02").ViewOrder = 1
TestSet_Fields("CY_USER_03").ViewOrder = 2
TestSet_Fields("CY_USER_04").ViewOrder = 3
TestSet_Fields("CY_USER_05").ViewOrder = 4
TestSet_Fields("CY_USER_06").ViewOrder = 5
TestSet_Fields("CY_USER_07").ViewOrder = 6
TestSet_Fields("CY_ASSIGN_RCYC").ViewOrder = 7
TestSet_Fields("CY_STATUS").ViewOrder = 8
TestSet_Fields("CY_USER_01").ViewOrder = 9
TestSet_Fields("CY_OPEN_DATE").ViewOrder = 10
TestSet_Fields("CY_CLOSE_DATE").ViewOrder = 11
TestSet_Fields("CY_REQUEST_ID").ViewOrder = 12
On Error GoTo 0
End Sub