コード例 #1
0
def test_git_add_remote():
    g = git.GitRepo('.')
    with pytest.raises(RuntimeError):
        g.add_remote()

    g = git.GitRepo('.', 'https://example.com', remote_name='dude')
    with patch.object(g, 'git') as git_mock:
        g.add_remote()

    git_mock.assert_called_with('remote', 'add', 'dude', 'https://example.com')
コード例 #2
0
ファイル: test_git.py プロジェクト: YuriyCherniy/bedrock
def test_git_clone():
    g = git.GitRepo(".")
    with pytest.raises(RuntimeError):
        g.clone()

    g = git.GitRepo(".", "https://example.com")
    with patch.multiple(g, git=DEFAULT, path=DEFAULT) as git_mock:
        g.clone()

    git_mock["path"].mkdir.assert_called_with(parents=True, exist_ok=True)
    git_mock["git"].assert_called_with("clone", "--depth", "1", "--branch", "master", "https://example.com", ".")
コード例 #3
0
ファイル: views.py プロジェクト: yogiyadav08/bedrock
def get_l10n_repo_info():
    repo = git.GitRepo(settings.LOCALES_PATH, settings.LOCALES_REPO)
    fluent_repo = git.GitRepo(settings.FLUENT_REPO_PATH, settings.FLUENT_REPO_URL)
    return ({
        'latest_ref': repo.current_hash,
        'last_updated': repo.last_updated,
        'repo_url': repo.clean_remote_url,
    }, {
        'latest_ref': fluent_repo.current_hash,
        'last_updated': fluent_repo.last_updated,
        'repo_url': fluent_repo.clean_remote_url,
    })
コード例 #4
0
ファイル: test_git.py プロジェクト: zulqarnain4/bedrock
def test_git_clone():
    g = git.GitRepo('.')
    with pytest.raises(RuntimeError):
        g.clone()

    g = git.GitRepo('.', 'https://example.com')
    with patch.multiple(g, git=DEFAULT, path=DEFAULT) as git_mock:
        g.clone()

    git_mock['path'].mkdir.assert_called_with(parents=True, exist_ok=True)
    git_mock['git'].assert_called_with('clone', '--depth', '1', '--branch',
                                       'master', 'https://example.com', '.')
コード例 #5
0
def test_git_has_remote():
    g = git.GitRepo('.', 'https://example.com', remote_name='walter')
    with patch.object(g, 'git') as git_mock:
        git_mock.return_value = 'dude\nwalter'
        assert g.has_remote()
        g.remote_name = 'donnie'
        assert not g.has_remote()
コード例 #6
0
def test_git_db_latest_methods():
    g = git.GitRepo('.', 'https://example.com/repo.git', 'master', 'dude')
    g.set_db_latest('deadbeef')
    assert g.get_db_latest() == 'deadbeef'
    gobj = git.GitRepoState.objects.get(repo_id=g.db_latest_key)
    assert gobj.repo_name == 'dude'
    assert gobj.commit_url == 'https://example.com/repo/commit/deadbeef'
コード例 #7
0
ファイル: test_git.py プロジェクト: YuriyCherniy/bedrock
def test_git_update(rmtree_mock):
    g = git.GitRepo(".", "https://example.com")
    with patch.multiple(g, clone=DEFAULT, path=DEFAULT, diff=DEFAULT, pull=DEFAULT) as git_mock:
        git_mock["path"].is_dir.return_value = False
        g.update()
        assert git_mock["clone"].called
        git_mock["pull"].assert_not_called()

    rmtree_mock.reset_mock()
    with patch.multiple(g, clone=DEFAULT, path=DEFAULT, diff=DEFAULT, pull=DEFAULT) as git_mock:
        git_mock["path"].is_dir.return_value = True
        git_mock["path"].joinpath().is_dir.return_value = False
        g.update()
        rmtree_mock.assert_called_with(g.path_str, ignore_errors=True)
        assert git_mock["clone"].called
        git_mock["pull"].assert_not_called()

    rmtree_mock.reset_mock()
    with patch.multiple(g, clone=DEFAULT, path=DEFAULT, diff=DEFAULT, pull=DEFAULT) as git_mock:
        git_mock["path"].is_dir.return_value = True
        git_mock["path"].joinpath().is_dir.return_value = True
        val = g.update()
        rmtree_mock.assert_not_called()
        git_mock["clone"].assert_not_called()
        assert git_mock["pull"].called
        assert val == git_mock["pull"].return_value
コード例 #8
0
ファイル: test_git.py プロジェクト: mozilla/bedrock
def test_git_db_latest_methods():
    g = git.GitRepo(".", "https://example.com/repo.git", "master", "dude")
    g.set_db_latest("deadbeef")
    assert g.get_db_latest() == "deadbeef"
    gobj = git.GitRepoState.objects.get(repo_id=g.db_latest_key)
    assert gobj.repo_name == "dude"
    assert gobj.commit_url == "https://example.com/repo/commit/deadbeef"
コード例 #9
0
def test_git_db_latest():
    g = git.GitRepo('.', 'https://example.com/repo.git', 'testing', 'master')
    assert g.db_latest_key == '39329169f489eca9254339aec5826b86fc49437c6a2ca85328798ead5a906cc0'
    assert g.get_db_latest() is None
    g.set_db_latest('deadbeef')
    assert g.get_db_latest() == 'deadbeef'
    g.set_db_latest('deadbeef1234')
    assert g.get_db_latest() == 'deadbeef1234'
コード例 #10
0
ファイル: test_git.py プロジェクト: YuriyCherniy/bedrock
def test_git_db_latest_auto_name():
    # name should be the last bit of the path, and the repo URL can deal with a trailing slash
    g = git.GitRepo("hollywood-star-lanes/the-dude", "https://example.com/repo/", "master")
    g.set_db_latest("deadbeef")
    assert g.get_db_latest() == "deadbeef"
    gobj = git.GitRepoState.objects.get(repo_id=g.db_latest_key)
    assert gobj.repo_name == "the-dude"
    assert gobj.commit_url == "https://example.com/repo/commit/deadbeef"
コード例 #11
0
ファイル: test_git.py プロジェクト: mozilla/bedrock
def test_git_db_latest():
    g = git.GitRepo(".", "https://example.com/repo.git", "master")
    assert g.db_latest_key == "33ff0192f06306345030004c92533017b466e16489d4c762eab69ad8142ddae4"
    assert g.get_db_latest() is None
    g.set_db_latest("deadbeef")
    assert g.get_db_latest() == "deadbeef"
    g.set_db_latest("deadbeef1234")
    assert g.get_db_latest() == "deadbeef1234"
コード例 #12
0
ファイル: test_git.py プロジェクト: zulqarnain4/bedrock
def test_git_db_latest():
    g = git.GitRepo('.', 'https://example.com/repo.git', 'master')
    assert g.db_latest_key == '33ff0192f06306345030004c92533017b466e16489d4c762eab69ad8142ddae4'
    assert g.get_db_latest() is None
    g.set_db_latest('deadbeef')
    assert g.get_db_latest() == 'deadbeef'
    g.set_db_latest('deadbeef1234')
    assert g.get_db_latest() == 'deadbeef1234'
コード例 #13
0
def test_git_db_latest_auto_name():
    # name should be the last bit of the path, and the repo URL can deal with a trailing slash
    g = git.GitRepo('hollywood-star-lanes/the-dude',
                    'https://example.com/repo/', 'master')
    g.set_db_latest('deadbeef')
    assert g.get_db_latest() == 'deadbeef'
    gobj = git.GitRepoState.objects.get(repo_id=g.db_latest_key)
    assert gobj.repo_name == 'the-dude'
    assert gobj.commit_url == 'https://example.com/repo/commit/deadbeef'
コード例 #14
0
ファイル: test_git.py プロジェクト: zulqarnain4/bedrock
def test_git_diff():
    g = git.GitRepo('.', 'https://example.com')
    with patch.object(g, 'git') as git_mock:
        git_mock.return_value = GIT_DIFF_TEST_DATA
        modified, deleted = g.diff('abcd', 'ef12')
        git_mock.assert_called_with('diff', '--name-status', 'abcd', 'ef12')

    assert modified == {
        'media/css/mozorg/home/home.scss',
        'lib/l10n_utils/tests/test_template.py',
        'docs/mozilla-traffic-cop.rst',
        'lib/l10n_utils/management/commands/l10n_update.py',
        'media/css/mozorg/home/home-variant.scss',
        'media/css/pebbles/base/_elements.scss',
        'media/css/newsletter/newsletter-mozilla.scss',
        'media/css/pebbles/components/_buttons-download.scss',
        'media/css/mozorg/technology.less',
        'lib/l10n_utils/tests/test_commands.py',
        'media/css/pebbles/base/elements/_document.scss',
        'media/css/pebbles/base/elements/_typography.scss',
        'media/css/pebbles/base/elements/_links.scss',
        'lib/l10n_utils/tests/test_dotlang.py',
        'docs/javascript-libs.rst',
        'docker/run.sh',
        'media/css/pebbles/components/_masthead.scss',
        'media/css/pebbles/components/_footer.scss',
        'media/css/pebbles/components/_modal.scss',
        'media/css/pebbles/base/oldIE.scss',
        'etc/supervisor_available/cron_db.conf',
        'media/css/mozorg/leadership.scss',
        'media/css/pebbles/components/_buttons.scss',
        'media/css/pebbles/base/elements/_lists.scss',
        'etc/supervisor_available/cron_l10n.conf',
        'media/css/pebbles/base/elements/_reset.scss',
        'media/css/pebbles/base/elements/_tables.scss',
        'media/css/pebbles/components/_sections.scss',
        'media/css/firefox/firstrun/ravioli.less',
        'media/css/pebbles/elements/forms.less',
        'media/css/pebbles/base/elements/_forms.scss',
        'media/css/pebbles/components/_base-button.scss',
        'media/css/newsletter/newsletter-firefox.scss',
    }
    assert deleted == {
        'media/css/mozorg/leadership.less',
        'media/css/pebbles/base.less',
        'media/css/pebbles/reset.less',
        'media/css/newsletter/newsletter-mozilla.less',
        'media/css/pebbles/components/footer.less',
        'media/css/pebbles/components/modal.less',
        'media/css/mozorg/home/home.less',
        'etc/supervisor_available/cron.conf',
        'media/css/newsletter/newsletter-firefox.less',
        'media/css/pebbles/oldIE.less',
    }
コード例 #15
0
def test_git(co_mock, os_mock):
    os_mock.getcwd.return_value = 'olddir'
    co_mock.return_value = 'dude'
    g = git.GitRepo('new_repo')
    output = g.git('checkout', 'maude')
    co_mock.assert_called_with((git.GIT, 'checkout', 'maude'), stderr=git.STDOUT)
    os_mock.chdir.assert_has_calls([
        call(g.path_str),
        call('olddir'),
    ])
    assert output == 'dude'
コード例 #16
0
ファイル: test_git.py プロジェクト: mozilla/bedrock
def test_git(co_mock, os_mock):
    os_mock.getcwd.return_value = "olddir"
    co_mock.return_value = "dude"
    g = git.GitRepo("new_repo")
    output = g.git("checkout", "maude")
    co_mock.assert_called_with((git.GIT, "checkout", "maude"),
                               stderr=git.STDOUT)
    os_mock.chdir.assert_has_calls([
        call(g.path_str),
        call("olddir"),
    ])
    assert output == "dude"
コード例 #17
0
ファイル: views.py プロジェクト: YuriyCherniy/bedrock
def get_l10n_repo_info():
    fluent_repo = git.GitRepo(settings.FLUENT_REPO_PATH,
                              settings.FLUENT_REPO_URL)
    data = {
        "latest_ref": fluent_repo.current_hash,
        "last_updated": fluent_repo.last_updated,
        "repo_url": fluent_repo.clean_remote_url,
    }
    try:
        data["last_updated_timestamp"] = datetime.fromtimestamp(
            fluent_repo.current_commit_timestamp)
    except AttributeError:
        pass
    return data
コード例 #18
0
def test_git_remote_names():
    g = git.GitRepo('.')
    with patch.object(g, 'git') as git_mock:
        git_mock.return_value = 'dude\nwalter'
        assert g.remote_names == ['dude', 'walter']
コード例 #19
0
def test_git_full_branch_name():
    g = git.GitRepo('.', branch_name='dude', remote_name='the')
    assert g.full_branch_name == 'the/dude'
コード例 #20
0
ファイル: test_git.py プロジェクト: mozilla/bedrock
def test_git_current_hash():
    g = git.GitRepo(".")
    with patch.object(g, "git") as git_mock:
        g.current_hash

    git_mock.assert_called_with("rev-parse", "HEAD")
コード例 #21
0
ファイル: test_git.py プロジェクト: zulqarnain4/bedrock
def test_git_current_hash():
    g = git.GitRepo('.')
    with patch.object(g, 'git') as git_mock:
        g.current_hash

    git_mock.assert_called_with('rev-parse', 'HEAD')