Project:
lixa
Code Location:
https://lixa.svn.sourceforge.net/svnroot/lixa/tests//tests
/
tx_5_27.at
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
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
AT_BANNER([TX: 5.27 tx_rollback()]) # All the test cases test thid condition too: # [TX_PROTOCOL_ERROR] # The function was called in an improper context (for example, the caller is # not in transaction mode). The caller.s state with respect to the transaction # is not changed. AT_SETUP([TX/5.27/0.0]) # [TX_NO_BEGIN] # The transaction rolled back; however, a new transaction could not be started # and the caller is no longer in transaction mode. This return value occurs # only when the transaction_control characteristic is TX_CHAINED. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset start case0019 1 -100], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.27/0.1]) # [TX_MIXED] # The transaction was partially committed and partially rolled back. In # addition, if the transaction_control characteristic is TX_CHAINED, a new # transaction is started. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/7 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/-3 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0019 0 -3], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.27/0.2]) # [TX_MIXED_NO_BEGIN] # The transaction was partially committed and partially rolled back. In # addition, a new transaction could not be started and the caller is no longer # in transaction mode. This return value can occur only when the # transaction_control characteristic is TX_CHAINED. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/7 xa_forget/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/-3 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0019 1 -103], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.27/0.3]) # [TX_HAZARD] # Due to a failure, the transaction may have been partially committed and # partially rolled back. In addition, if the transaction_control # characteristic is TX_CHAINED, a new transaction is started. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/8 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0019 0 -4], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.27/0.4]) # TX_HAZARD_NO_BEGIN] # Due to a failure, the transaction may have been partially committed and # partially rolled back. In addition, a new transaction could not be started # and the caller is no longer in transaction mode. This return value can occur # only when the transaction_control characteristic is TX_CHAINED. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/8 xa_forget/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0019 1 -104], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.27/0.5]) # [TX_COMMITTED] # The transaction was heuristically committed. In addition, if the # transaction_control characteristic is TX_CHAINED, a new transaction is # started. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/7 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/7 xa_forget/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0019 0 -9], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.27/0.6]) # [TX_COMMITTED_NO_BEGIN] # The transaction was heuristically committed. In addition, a new transaction # could not be started and the caller is no longer in transaction mode. This # return value can occur only when the transaction_control characteristic is # TX_CHAINED. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/7 xa_forget/0 xa_start/-3 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/7 xa_forget/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0019 1 -109], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.27/0.7]) # [TX_FAIL] # Either the transaction manager or one or more of the resource managers # encountered a fatal error. The nature of the error is such that the # transaction manager and/or one or more of the resource managers can no # longer perform work on behalf of the application. The exact nature of the # error is determined in a product-specific manner. The caller's state with # respect to the transaction is unknown. AT_DATA([monkey1s.conf], [[# monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/0 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M. config xa_open/0 xa_end/0 xa_rollback/-7 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset stop case0019 0 -7], [0], [ignore], [ignore]) AT_CLEANUP
