File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from osgtest .library import core , service , osgunittest
4
4
5
+
5
6
class TestStartRSV (osgunittest .OSGTestCase ):
6
7
8
+ @core .osgrelease (3.4 )
9
+ def setUp (self ):
10
+ pass
11
+
7
12
def test_01_config (self ):
8
13
pass
9
14
Original file line number Diff line number Diff line change @@ -26,6 +26,10 @@ class TestRSV(osgunittest.OSGTestCase):
26
26
27
27
host = socket .getfqdn ()
28
28
29
+ @core .osgrelease (3.4 )
30
+ def setUp (self ):
31
+ pass
32
+
29
33
def start_rsv (self ):
30
34
core .check_system (('rsv-control' , '--on' ), 'rsv-control --on' )
31
35
@@ -203,16 +207,12 @@ def test_031_hostcert_expiry_metric(self):
203
207
204
208
self .run_metric ('org.osg.local.hostcert-expiry' )
205
209
206
- # OSG 3.3 tries to download from IU and causes a failure
207
- @core .osgrelease (3.4 )
208
210
def test_032_cacert_expiry (self ):
209
211
core .skip_ok_unless_installed ('rsv' , 'htcondor-ce' )
210
212
211
213
self .run_metric ('org.osg.certificates.cacert-expiry' ,
212
214
accept_status = ['OK' , 'WARNING' ])
213
215
214
- # OSG 3.3 tries to download from IU and causes a failure
215
- @core .osgrelease (3.4 )
216
216
def test_033_crlcert_expiry (self ):
217
217
core .skip_ok_unless_installed ('rsv' , 'htcondor-ce' )
218
218
Original file line number Diff line number Diff line change 3
3
import osgtest .library .service as service
4
4
import osgtest .library .osgunittest as osgunittest
5
5
6
+
6
7
class TestStopRSV (osgunittest .OSGTestCase ):
7
8
9
+ @core .osgrelease (3.4 )
10
+ def setUp (self ):
11
+ pass
12
+
8
13
def test_01_stop_rsv (self ):
9
14
core .skip_ok_unless_installed ('rsv' )
10
15
self .skip_ok_if (core .state ['rsv.started-service' ] == False , 'did not start service' )
Original file line number Diff line number Diff line change
1
+ rsv
You can’t perform that action at this time.
0 commit comments