Project:
lixa
Code Location:
https://lixa.svn.sourceforge.net/svnroot/lixa/tests//tests
/
tx_5_19.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
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
AT_BANNER([TX: 5.19 TX_FAIL]) # In some cases the [TX_FAIL] error description includes the following # sentence: # 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. # This means that any of the following can no longer perform work on behalf of # the application: # - transaction manager # - any resource manager # - any combination of resource managers # - any combination of resource managers and the transaction manager. # Again: Appendix B.3 General Rules for Mapping of Return Codes (page 62): # # The return code [TX_FAIL] reports that the TM or an RM failed and the TM # should not be called further. AT_SETUP([TX/5.19/0.0]) # test tx_set_.... & tx_info AT_DATA([monkey1s.conf], [[# monkey R.M.config xa_open/0 xa_start/-7 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M.config xa_open/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh reset start case0026 0], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.19/0.1]) # test tx_commit/xa_end AT_DATA([monkey1s.conf], [[# monkey R.M.config xa_open/0 xa_start/0 xa_end/-7 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M.config xa_open/0 xa_end/-7 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0026 1], [0], [ignore], [ignore]) # test tx_commit/xa_commit AT_DATA([monkey1s.conf], [[# monkey R.M.config xa_open/0 xa_start/0 xa_end/0 xa_commit/-7 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M.config xa_open/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0026 1], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.19/0.2]) # test tx_rollback/xa_end AT_DATA([monkey1s.conf], [[# monkey R.M.config xa_open/0 # this rollback recovers the previous commit failure xa_rollback/0 xa_start/0 xa_end/0 xa_commit/0 xa_start/0 xa_end/-7 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M.config xa_open/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0026 2], [0], [ignore], [ignore]) # test tx_rollback/xa_rollback AT_DATA([monkey1s.conf], [[# monkey R.M.config xa_open/0 xa_start/0 xa_end/0 xa_commit/0 xa_start/0 xa_end/0 xa_rollback/-7 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M.config xa_open/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset none case0026 2], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/5.19/0.3]) # test tx_open AT_DATA([monkey1s.conf], [[# monkey R.M.config xa_open/0 # this rollback recovers the previous commit failure xa_rollback/0 xa_start/0 xa_end/0 xa_commit/0 xa_start/0 xa_end/0 xa_rollback/0 xa_close/0 xa_open/0 xa_close/-7 ]]) AT_DATA([monkey1d.conf], [[# monkey R.M.config xa_open/0 xa_close/0 xa_open/0 xa_close/-7 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh noreset stop case0026 3], [0], [ignore], [ignore]) AT_CLEANUP
