Changeset 3531

Show
Ignore:
Timestamp:
10/08/2009 10:27:48 AM (2 months ago)
Author:
brian
Message:

Test cases for downtime plugin.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gip/trunk/test/test_configs/downtime_blocked.conf

    r3528 r3531  
    2727osg_version_script = test_configs/osg-version 
    2828check_osg = False 
    29 downtime_file = test_configs/downtime_sample.xml 
     29downtime_url = http://derek.unl.edu:23 
    3030 
    3131[dcache] 
  • gip/trunk/test/test_configs/downtime_down_url.conf

    r3528 r3531  
    2727osg_version_script = test_configs/osg-version 
    2828check_osg = False 
    29 downtime_file = test_configs/downtime_sample.xml 
     29downtime_url = http://www.example.edu 
    3030 
    3131[dcache] 
  • gip/trunk/test/test_configs/downtime_wrong_url.conf

    r3528 r3531  
    2727osg_version_script = test_configs/osg-version 
    2828check_osg = False 
    29 downtime_file = test_configs/downtime_sample.xml 
     29downtime_url = http://www.google.com 
    3030 
    3131[dcache] 
  • gip/trunk/test/test_gip.py

    r3043 r3531  
    1111from test_subclusters import main as subclusters_main 
    1212from test_se import main as se_main 
     13from test_downtime import main as downtime_main 
    1314 
    1415def test_run(fcn): 
     
    3031    test_run(subclusters_main) 
    3132    test_run(se_main) 
     33    test_run(downtime_main) 
    3234 
    3335if __name__ == '__main__':