コード例 #1
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_download_invalid_parameter():
    with pytest.raises(SystemExit):
        main()
        assert os.path.exists(tmp_file)
        os.remove(tmp_file)
コード例 #2
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_copy_invalid_parameter():
    with pytest.raises(SystemExit):
        main()
        delete_from_oss(oss_endpoint, tmp_file)
コード例 #3
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_download():
    main()
    assert os.path.exists(tmp_file)
    os.remove(tmp_file)
コード例 #4
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_delete_invalid_parameter():
    with pytest.raises(SystemExit):
        main()
コード例 #5
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_copy():
    main()
    delete_from_oss(oss_endpoint, tmp_file)
コード例 #6
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_exist_failed():
    with pytest.raises(SystemExit):
        main()
コード例 #7
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_delete():
    upload_to_oss(cur_file, oss_endpoint, tmp_file)
    main()
コード例 #8
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_upload_invalid_parameter():
    with pytest.raises(SystemExit):
        main()
コード例 #9
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_exist():
    main()
コード例 #10
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_upload():
    main()
    delete_from_oss(oss_endpoint, tmp_file)
コード例 #11
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_config():
    main()
コード例 #12
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_help():
    with pytest.raises(SystemExit):
        main()
コード例 #13
0
ファイル: test_entrypoint.py プロジェクト: imhuwq/oss-command
def test_command_fail_will_result_abnormal_exit():
    with pytest.raises(SystemExit):
        main()
コード例 #14
0
ファイル: debug.py プロジェクト: imhuwq/oss-command
from oss_command.entrypoint import main

if __name__ == '__main__':
    main()