File tree Expand file tree Collapse file tree 2 files changed +21
-6
lines changed
tests/integration/targets/cics_cmci/playbooks Expand file tree Collapse file tree 2 files changed +21
-6
lines changed Original file line number Diff line number Diff line change 35
35
assert :
36
36
that :
37
37
- result.failed is false
38
- # This will need updating when we pull out more specific error messages from the CMCI response.
39
- # Expecting the error to contain 'Attribute Configuration File (CONFIGFILE) Error(PIPEDEF_INV_DATA)'
40
- - result.msg == "CMCI request failed with response \"TABLEERROR\" reason \"DATAERROR\""
38
+ - result.msg == "CMCI request failed with response \"TABLEERROR\" reason \"DATAERROR\""
39
+ - result.cpsm_reason == 'DATAERROR'
40
+ - result.cpsm_response == 'TABLEERROR'
41
+
42
+ - result.feedback[0].action == 'CREATE'
43
+ - result.feedback[0].attribute1 == 'CONFIGFILE'
44
+ - result.feedback[0].errorcode == '1' # (PIPEDEF_INV_DATA)
Original file line number Diff line number Diff line change 101
101
assert :
102
102
that :
103
103
- result.failed is false
104
- # This will need updating when we pull out more specific error messages from the CMCI response.
105
- # Expecting the error to contain 'EXEC CICS command(CSD INSTALL) RESP(INVREQ) RESP2(633)'
106
- # Where RESP2(633) is 'Installation of BUNDLE resource resource failed because the resource had no manifest'
107
104
- result.msg == "CMCI request failed with response \"TABLEERROR\" reason \"DATAERROR\""
105
+ - result.cpsm_reason == 'DATAERROR'
106
+ - result.cpsm_response == 'TABLEERROR'
107
+
108
+ - result.feedback[0].action == 'CSDINSTALL'
109
+ - result.feedback[0].attribute1 == 'NAME'
110
+ - result.feedback[0].errorcode == '31'
111
+
112
+ - result.feedback[1].action == 'CSDINSTALL'
113
+ - result.feedback[1].eibfn == 'A20E'
114
+ - result.feedback[1].eibfn_alt == 'CSD INSTALL'
115
+ - result.feedback[1].eyu_cicsname == cmci_scope
116
+ - result.feedback[1].resp == '16'
117
+ - result.feedback[1].resp2 == '633' # 'Installation of BUNDLE resource resource failed because the resource had no manifest'
118
+ - result.feedback[1].resp_alt == 'INVREQ'
108
119
109
120
110
121
- name : ' delete bundle def'
You can’t perform that action at this time.
0 commit comments