Project:
lixa
Code Location:
https://lixa.svn.sourceforge.net/svnroot/lixa/tests//tests
/
tx_3_3.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
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
AT_BANNER([TX: 3.3 Beginning and Completing Global Transactions]) AT_SETUP([TX/3.3/0.0]) # "An AP calls tx_begin( ) to mark the beginning of a global transaction. # This act places the calling AP in transaction mode. # The function fails if the caller is already in transaction mode, without # affecting the transaction active in the thread of control." AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# second 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 reset recycle case0005 ], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/3.3/1.0]) # "A call to either tx_commit( ) [or tx_rollback ( )] begins a new global # transaction when the previous one is completed, if the AP has selected # chained mode." AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_start/0 xa_end/0 xa_rollback/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# second monkey R.M. config xa_open/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0003 ; lixa_test_exec.sh reset recycle case0006 commit], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/3.3/1.1]) # "A call to either [tx_commit( )] or tx_rollback ( ) begins a new global # transaction when the previous one is completed, if the AP has selected # chained mode." AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/0 xa_start/0 xa_end/0 xa_rollback/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# second 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 reset recycle case0006 rollback], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/3.3/2.0]) # "Many RMs let APs request work outside any global transaction without # coordination by an X/Open TM. This can happen when the AP is not in # transaction mode and does work with one or more RMs. AT_DATA([monkey1d.conf], [[# first monkey R.M. config xa_open/0 xa_close/0 ]]) AT_DATA([monkey2d.conf], [[# second monkey R.M. config xa_open/0 xa_close/0 ]]) AT_DATA([monkey3d.conf], [[# third monkey R.M. config xa_open/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0001 ; lixa_test_exec.sh reset recycle case0007 0], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/3.3/2.1]) # "Many RMs let APs request work outside any global transaction without # coordination by an X/Open TM. This can happen when the AP is not in # transaction mode and does work with one or more RMs. AT_DATA([monkey1d.conf], [[# first monkey R.M. config xa_open/0 xa_close/0 ]]) AT_DATA([monkey2d.conf], [[# second monkey R.M. config xa_open/0 xa_close/0 ]]) AT_DATA([monkey3d.conf], [[# third monkey R.M. config xa_open/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0001 ; lixa_test_exec.sh reset recycle case0007 1], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([TX/3.3/2.2]) # "Many RMs let APs request work outside any global transaction without # coordination by an X/Open TM. This can happen when the AP is not in # transaction mode and does work with one or more RMs. AT_DATA([monkey1d.conf], [[# first monkey R.M. config xa_open/0 xa_close/0 ]]) AT_DATA([monkey2d.conf], [[# second monkey R.M. config xa_open/0 xa_close/0 ]]) AT_DATA([monkey3d.conf], [[# third monkey R.M. config xa_open/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0001 ; lixa_test_exec.sh reset recycle case0007 2], [0], [ignore], [ignore]) AT_CLEANUP
