當前位置: 首頁>>代碼示例>>Python>>正文


Python AtomicCmd.join方法代碼示例

本文整理匯總了Python中paleomix.atomiccmd.command.AtomicCmd.join方法的典型用法代碼示例。如果您正苦於以下問題:Python AtomicCmd.join方法的具體用法?Python AtomicCmd.join怎麽用?Python AtomicCmd.join使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在paleomix.atomiccmd.command.AtomicCmd的用法示例。


在下文中一共展示了AtomicCmd.join方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_atomiccmd__commit_before_join

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__commit_before_join(temp_folder):
    cmd = AtomicCmd(("sleep", "0.1"))
    cmd.run(temp_folder)
    while cmd._proc.poll() is None:
        pass
    assert_raises(CmdError, cmd.commit, temp_folder)
    cmd.join()
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:9,代碼來源:command_test.py

示例2: test_atomiccmd__ready

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__ready(temp_folder):
    cmd = AtomicCmd("ls")
    assert_equal(cmd.join(), [None])
    assert not cmd.ready()
    cmd.run(temp_folder)
    assert_equal(cmd.join(), [0])
    assert cmd.ready()
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:9,代碼來源:command_test.py

示例3: test_atomiccmd__commit_missing_files

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__commit_missing_files(temp_folder):
    destination, temp_folder = _setup_for_commit(temp_folder, False)
    cmd = AtomicCmd(("touch", "%(OUT_FOO)s"),
                    OUT_FOO=os.path.join(destination, "1234"),
                    OUT_BAR=os.path.join(destination, "4567"))
    cmd.run(temp_folder)
    cmd.join()
    before = set(os.listdir(temp_folder))
    assert_raises(CmdError, cmd.commit, temp_folder)
    assert_equal(before, set(os.listdir(temp_folder)))
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:12,代碼來源:command_test.py

示例4: test_pformat__simple__running__set_cwd

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_pformat__simple__running__set_cwd(temp_folder):
    cmd = AtomicCmd(("sleep", "10"), set_cwd=True)
    cmd.run(temp_folder)
    assert_equal(pformat(cmd), ("<Command = ['sleep', '10']\n"
                                " Status  = Running ...\n"
                                " STDOUT* = 'pipe_sleep_{id}.stdout'\n"
                                " STDERR* = 'pipe_sleep_{id}.stderr'\n"
                                " CWD     = '{temp_dir}'>").format(id=id(cmd),
                                                                   temp_dir=temp_folder))
    cmd.terminate()
    cmd.join()
開發者ID:muslih14,項目名稱:paleomix,代碼行數:13,代碼來源:pprint_test.py

示例5: test_pformat__simple__running

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_pformat__simple__running(temp_folder):
    cmd = AtomicCmd(("sleep", "10"))
    cmd.run(temp_folder)
    assert_equal(pformat(cmd),
                 ("Command = sleep 10\n"
                  "Status  = Running ...\n"
                  "STDOUT* = '{temp_dir}/pipe_sleep_{id}.stdout'\n"
                  "STDERR* = '{temp_dir}/pipe_sleep_{id}.stderr'\n"
                  "CWD     = '{cwd}'").format(id=id(cmd),
                                              cwd=os.getcwd(),
                                              temp_dir=temp_folder))
    cmd.terminate()
    cmd.join()
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:15,代碼來源:pprint_test.py

示例6: test_atomiccmd__piping_is_only_allowed_once

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__piping_is_only_allowed_once(temp_folder):
    cmd_1 = AtomicCmd(["echo", "-n", "foo\nbar"],
                      OUT_STDOUT=AtomicCmd.PIPE)
    cmd_2a = AtomicCmd(["grep", "foo"],
                       IN_STDIN=cmd_1)
    cmd_2b = AtomicCmd(["grep", "bar"],
                       IN_STDIN=cmd_1)
    cmd_1.run(temp_folder)
    cmd_2a.run(temp_folder)
    assert_raises(CmdError, cmd_2b.run, temp_folder)
    assert_equal(cmd_1.join(), [0])
    assert_equal(cmd_2a.join(), [0])
    assert_equal(cmd_2b.join(), [None])
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:15,代碼來源:command_test.py

示例7: test_atomiccmd__piping_temp

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__piping_temp(temp_folder):
    cmd_1 = AtomicCmd(["echo", "-n", "#@!$^"],
                      TEMP_OUT_STDOUT=AtomicCmd.PIPE)
    assert_equal(cmd_1.output_files, frozenset())
    cmd_2 = AtomicCmd(["cat"],
                      TEMP_IN_STDIN=cmd_1,
                      OUT_STDOUT="piped.txt")
    assert_equal(cmd_2.input_files, frozenset())
    cmd_1.run(temp_folder)
    cmd_2.run(temp_folder)
    assert_equal(cmd_1.join(), [0])
    assert_equal(cmd_2.join(), [0])
    result = get_file_contents(os.path.join(temp_folder, "piped.txt"))
    assert_equal(result, "#@!$^")
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:16,代碼來源:command_test.py

示例8: test_atomiccmd__paths__key

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__paths__key(temp_folder):
    cmd = AtomicCmd(("echo", "-n", "%(TEMP_DIR)s"),
                    OUT_STDOUT=AtomicCmd.PIPE)
    cmd.run(temp_folder)
    path = cmd._proc.stdout.read()
    assert os.path.samefile(temp_folder, path), (temp_folder, path)
    assert_equal(cmd.join(), [0])
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:9,代碼來源:command_test.py

示例9: test_atomiccmd__paths_non_str

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__paths_non_str(temp_folder):
    cmd = AtomicCmd(("touch", 1234),
                    OUT_FOO="1234",
                    set_cwd=True)
    cmd.run(temp_folder)
    assert_equal(cmd.join(), [0])
    assert os.path.exists(os.path.join(temp_folder, "1234"))
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:9,代碼來源:command_test.py

示例10: test_atomiccmd__terminate_race_condition

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__terminate_race_condition(temp_folder):
    cmd = AtomicCmd("true")
    cmd.run(temp_folder)
    while cmd._proc.poll() is None:
        pass
    cmd.terminate()
    assert_equal(cmd.join(), [0])
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:9,代碼來源:command_test.py

示例11: test_atomiccmd__commit_temp_only

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__commit_temp_only(temp_folder):
    cmd = AtomicCmd(("echo", "foo"),
                    TEMP_OUT_STDOUT="bar.txt")
    cmd.run(temp_folder)
    assert_equal(cmd.join(), [0])
    assert os.path.exists(os.path.join(temp_folder, "bar.txt"))
    cmd.commit(temp_folder)
    assert_equal(os.listdir(temp_folder), [])
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:10,代碼來源:command_test.py

示例12: _do_test_atomiccmd__pipes_out

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
 def _do_test_atomiccmd__pipes_out(temp_folder, stdout, stderr, kwargs):
     cmd = AtomicCmd(("bash", "-c", "echo -n 'STDERR!' > /dev/stderr; echo -n 'STDOUT!';"), **kwargs)
     cmd.run(temp_folder)
     assert_equal(cmd.join(), [0])
     result_out = get_file_contents(os.path.join(temp_folder, stdout.format(id(cmd))))
     result_err = get_file_contents(os.path.join(temp_folder, stderr.format(id(cmd))))
     assert_equal(result_out, "STDOUT!")
     assert_equal(result_err, "STDERR!")
開發者ID:muslih14,項目名稱:paleomix,代碼行數:10,代碼來源:command_test.py

示例13: test_atomiccmd__pipes_stdin__temp_file

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__pipes_stdin__temp_file(temp_folder):
    cmd = AtomicCmd("cat",
                    TEMP_IN_STDIN="infile.fasta",
                    OUT_STDOUT="result.txt")
    assert_equal(cmd.input_files, frozenset())
    set_file_contents(os.path.join(temp_folder, "infile.fasta"), "a\nbc\nd")
    cmd.run(temp_folder)
    assert_equal(cmd.join(), [0])
    result = get_file_contents(os.path.join(temp_folder, "result.txt"))
    assert_equal(result, "a\nbc\nd")
開發者ID:MikkelSchubert,項目名稱:paleomix,代碼行數:12,代碼來源:command_test.py

示例14: test_pformat__simple__done__set_cwd

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_pformat__simple__done__set_cwd(temp_folder):
    cmd = AtomicCmd("true", set_cwd=True)
    cmd.run(temp_folder)
    assert_equal(cmd.join(), [0])
    assert_equal(pformat(cmd), ("<Command = ['true']\n"
                                " Status  = Exited with return-code 0\n"
                                " STDOUT* = 'pipe_true_{id}.stdout'\n"
                                " STDERR* = 'pipe_true_{id}.stderr'\n"
                                " CWD     = '{temp_dir}'>").format(id=id(cmd),
                                                                   temp_dir=temp_folder))
開發者ID:muslih14,項目名稱:paleomix,代碼行數:12,代碼來源:pprint_test.py

示例15: test_atomiccmd__pipes_stdin

# 需要導入模塊: from paleomix.atomiccmd.command import AtomicCmd [as 別名]
# 或者: from paleomix.atomiccmd.command.AtomicCmd import join [as 別名]
def test_atomiccmd__pipes_stdin(temp_folder):
    fname = test_file("fasta_file.fasta")
    cmd = AtomicCmd("cat",
                    IN_STDIN=fname,
                    OUT_STDOUT="result.txt")
    assert_equal(cmd.input_files, frozenset([fname]))
    cmd.run(temp_folder)
    assert_equal(cmd.join(), [0])
    result = get_file_contents(os.path.join(temp_folder, "result.txt"))
    assert_equal(result, ">This_is_FASTA!\nACGTN\n>This_is_ALSO_FASTA!\nCGTNA\n")
開發者ID:muslih14,項目名稱:paleomix,代碼行數:12,代碼來源:command_test.py


注:本文中的paleomix.atomiccmd.command.AtomicCmd.join方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。