Project:
lixa
Code Location:
https://lixa.svn.sourceforge.net/svnroot/lixa/tests//tests
/
generic_client.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
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
AT_BANNER([LIXA client basic]) AT_SETUP([Basic static registration (3 RMs)]) 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_close/0 ]]) AT_DATA([monkey2s.conf], [[# second monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_close/0 ]]) AT_DATA([monkey3s.conf], [[# third monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0000 ; lixa_test_exec.sh reset start case0000], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([Basic dynamic registration (3 RMs)]) AT_DATA([monkey1d.conf], [[# first monkey R.M. config xa_open/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_close/0 ]]) AT_DATA([monkey2d.conf], [[# second monkey R.M. config xa_open/0 xa_end/0 xa_prepare/0 xa_commit/0 xa_close/0 ]]) AT_DATA([monkey3d.conf], [[# third 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_0001 && lixa_test_exec.sh noreset none case0001], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([Heuristic completion 4 RMs (commit)]) AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_commit/5 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey2s.conf], [[# second monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_prepare/0 xa_commit/6 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# third monkey R.M. config xa_open/0 xa_end/0 xa_prepare/0 xa_commit/7 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey2d.conf], [[# third monkey R.M. config xa_open/0 xa_end/0 xa_prepare/0 xa_commit/8 xa_forget/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0002 ; lixa_test_exec.sh noreset none case0002 commit -3], [0], [ignore], [ignore]) AT_CLEANUP AT_SETUP([Heuristic completion 4 RMs (rollback)]) AT_DATA([monkey1s.conf], [[# first monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/5 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey2s.conf], [[# second monkey R.M. config xa_open/0 xa_start/0 xa_end/0 xa_rollback/6 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey1d.conf], [[# third monkey R.M. config xa_open/0 xa_end/0 xa_rollback/7 xa_forget/0 xa_close/0 ]]) AT_DATA([monkey2d.conf], [[# fourth monkey R.M. config xa_open/0 xa_end/0 xa_rollback/8 xa_forget/0 xa_close/0 ]]) AT_CHECK([export LIXA_PROFILE=CASE_PROF_0002 ; lixa_test_exec.sh noreset stop case0002 rollback -3], [0], [ignore], [ignore]) AT_CLEANUP
