forked from utPLSQL/utPLSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathut_rsuite.pkb
145 lines (128 loc) · 3.95 KB
/
ut_rsuite.pkb
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
/* Formatted on 2001/07/13 12:29 (RevealNet Formatter v4.4.1) */
CREATE OR REPLACE PACKAGE BODY utrsuite
IS
/************************************************************************
GNU General Public License for utPLSQL
Copyright (C) 2000-2003
Steven Feuerstein and the utPLSQL Project
(steven@stevenfeuerstein.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program (see license.txt); if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
************************************************************************
$Log$
Revision 1.3 2004/11/16 09:46:49 chrisrimmer
Changed to new version detection system.
Revision 1.2 2003/07/01 19:36:47 chrisrimmer
Added Standard Headers
************************************************************************/
PROCEDURE initiate (
run_id_in IN utr_suite.run_id%TYPE,
suite_id_in IN utr_suite.suite_id%TYPE,
start_on_in IN DATE := SYSDATE
)
IS
&start_ge_8_1
PRAGMA autonomous_transaction;
&end_ge_8_1
BEGIN
utplsql2.set_current_suite (suite_id_in);
INSERT INTO utr_suite
(run_id, suite_id, start_on)
VALUES (run_id_in, suite_id_in, start_on_in);
&start_ge_8_1
COMMIT;
&end_ge_8_1
EXCEPTION
WHEN DUP_VAL_ON_INDEX
THEN
-- Run has already been initiated. Ignore...
NULL;
&start_ge_8_1
ROLLBACK;
&end_ge_8_1
WHEN OTHERS
THEN
&start_ge_8_1
ROLLBACK;
&end_ge_8_1
utrerror.suite_report (
run_id_in,
suite_id_in,
SQLCODE,
SQLERRM,
'Unable to initiate suite for run '
|| run_id_in
|| ' SUITE ID '
|| suite_id_in
);
END initiate;
PROCEDURE terminate (
run_id_in IN utr_suite.run_id%TYPE,
suite_id_in IN utr_suite.suite_id%TYPE,
end_on_in IN DATE := SYSDATE
)
IS
&start_ge_8_1
PRAGMA autonomous_transaction;
&end_ge_8_1
CURSOR start_cur
IS
SELECT start_on, end_on
FROM utr_suite
WHERE run_id = run_id_in
AND suite_id_in = suite_id;
rec start_cur%ROWTYPE;
l_status utr_suite.status%TYPE;
BEGIN
l_status := utresult2.run_status (run_id_in);
OPEN start_cur;
FETCH start_cur INTO rec;
IF start_cur%FOUND
AND rec.end_on IS NULL
THEN
UPDATE utr_suite
SET end_on = end_on_in,
status = l_status
WHERE run_id = run_id_in
AND suite_id_in = suite_id;
ELSIF start_cur%FOUND
AND rec.end_on IS NOT NULL
THEN
-- Run is already terminated. Ignore...
NULL;
ELSE
INSERT INTO utr_suite
(run_id, suite_id, status, end_on)
VALUES (run_id_in, suite_id_in, l_status, end_on_in);
END IF;
&start_ge_8_1
COMMIT;
&end_ge_8_1
EXCEPTION
WHEN OTHERS
THEN
&start_ge_8_1
ROLLBACK;
&end_ge_8_1
utrerror.suite_report (
run_id_in,
suite_id_in,
SQLCODE,
SQLERRM,
'Unable to insert or update the utr_suite table for run '
|| run_id_in
|| ' SUITE ID '
|| suite_id_in
);
END terminate;
END utrsuite;
/