Example #1
0
def test_get_chunks(FAKE_ARTIFACTS_DIR):
    a = ArtifactsHandler([], parent_dir=FAKE_ARTIFACTS_DIR)
    assert a.get_chunks('windows') == {
        'mochitest-1', 'xpcshell-7', 'cppunit',
    }
    assert a.get_chunks('linux') == {
        'mochitest-2', 'xpcshell-3', 'xpcshell-7',
        'firefox-ui-functional-remote',
    }
Example #2
0
def test_get_chunks(FAKE_ARTIFACTS_DIR):
    a = ArtifactsHandler([], parent_dir=FAKE_ARTIFACTS_DIR)
    assert a.get_chunks("windows") == {"mochitest-1", "xpcshell-7", "cppunit"}
    assert a.get_chunks("linux") == {
        "mochitest-2",
        "xpcshell-3",
        "xpcshell-7",
        "firefox-ui-functional-remote",
    }
Example #3
0
def test_get_chunks(fake_artifacts):
    a = ArtifactsHandler([])
    a.artifacts = fake_artifacts
    assert a.get_chunks("windows") == {"mochitest-1", "xpcshell-7", "cppunit"}
    assert a.get_chunks("linux") == {
        "mochitest-2",
        "xpcshell-3",
        "xpcshell-7",
        "firefox-ui-functional-remote",
    }
Example #4
0
def test_get_chunks(FAKE_ARTIFACTS_DIR):
    a = ArtifactsHandler([], parent_dir=FAKE_ARTIFACTS_DIR)
    assert a.get_chunks('windows') == {
        'mochitest-1',
        'xpcshell-7',
        'cppunit',
    }
    assert a.get_chunks('linux') == {
        'mochitest-2',
        'xpcshell-3',
        'xpcshell-7',
        'firefox-ui-functional-remote',
    }
def test_get_chunks(FAKE_ARTIFACTS_DIR):
    a = ArtifactsHandler([], [], parent_dir=FAKE_ARTIFACTS_DIR)
    assert set(a.get_chunks()) == set([
        'mochitest-1',
        'mochitest-2',
        'xpcshell-3',
        'xpcshell-7',
        'cppunit',
        'firefox-ui-functional-remote',
    ])