def test_socat_process_stop():
     try:
         socat.stop_socat()
         socat.status_socat()
         assert False
     except:
         assert True
예제 #2
0
def test_socat_process_stop():
    try:
        socat.stop_socat(conf_file=tmp_conf_file)
        socat.status_socat()
        assert False
    except:
        assert True
def test_socat_process_stop():
     try:
         socat.stop_socat()
         socat.status_socat()
         assert False
     except:
         assert True
예제 #4
0
def test_socat_process_start():
    try:
        socat.start_socat(conf_file=tmp_conf_file)
        time.sleep(2)
        socat.status_socat()
        assert True
    except:
        assert False
def test_socat_process_start():
     try:
         socat.start_socat()
         ipmi.start_ipmi("quanta_d51")
         time.sleep(3)
         socat.status_socat()
         assert True
     except:
         assert False
def test_socat_process_status_running():
    try:
        socat.status_socat()
        assert True
    except:
        assert False
예제 #7
0
def test_socat_process_status_running():
    try:
        socat.status_socat()
        assert True
    except:
        assert False