示例#1
0
    def test_commit(self):
        bazaar = Bazaar()

        with patch.object(bazaar, 'execute') as execute:
            bazaar.commit('message')
            execute.assert_called_with(
                ['bzr', 'commit', '-m', 'message'.encode('utf8')])
示例#2
0
    def test_validate_ko_not_bazaar(self, workspace, mocker):
        bazaar = Bazaar()

        execute = mocker.patch('bumpr.vcs.execute')
        with pytest.raises(BumprError):
            bazaar.validate()
        assert execute.called is False
示例#3
0
    def test_validate_ko_not_bazaar(self, workspace):
        bazaar = Bazaar()

        with patch('bumpr.vcs.execute') as execute:
            with pytest.raises(BumprError):
                bazaar.validate()
            assert execute.called is False
示例#4
0
    def test_validate_ok(self, workspace, mocker):
        workspace.mkdir('.bzr')
        bazaar = Bazaar()

        execute = mocker.patch('bumpr.vcs.execute')
        execute.return_value = '? new.py'
        bazaar.validate()
        execute.assert_called_with('bzr status --short', verbose=False)
示例#5
0
    def test_validate_ko_not_bazaar(self):
        with workspace('bazaar') as wksp:
            bazaar = Bazaar()

            with patch('bumpr.vcs.execute') as execute:
                with self.assertRaises(BumprError):
                    bazaar.validate()
                self.assertFalse(execute.called)
示例#6
0
    def test_validate_ok(self, workspace):
        workspace.mkdir('.bzr')
        bazaar = Bazaar()

        with patch('bumpr.vcs.execute') as execute:
            execute.return_value = '? new.py'
            bazaar.validate()
            execute.assert_called_with('bzr status --short', verbose=False)
示例#7
0
文件: test_vcs.py 项目: eight04/bumpr
    def test_validate_ko_not_bazaar(self):
        with workspace('bazaar'):
            bazaar = Bazaar()

            with patch('bumpr.vcs.execute') as execute:
                with self.assertRaises(BumprError):
                    bazaar.validate()
                self.assertFalse(execute.called)
示例#8
0
    def test_validate_ok(self, workspace, mocker):
        workspace.mkdir(".bzr")
        bazaar = Bazaar()

        execute = mocker.patch("bumpr.vcs.execute")
        execute.return_value = "? new.py"
        bazaar.validate()
        execute.assert_called_with("bzr status --short", verbose=False)
示例#9
0
    def test_validate_ko_not_clean(self, workspace, mocker):
        workspace.mkdir('.bzr')
        bazaar = Bazaar()

        execute = mocker.patch('bumpr.vcs.execute')
        execute.return_value = '\n'.join((' M modified.py', '? new.py'))
        with pytest.raises(BumprError):
            bazaar.validate()
        execute.assert_called_with('bzr status --short', verbose=False)
示例#10
0
    def test_validate_ko_not_clean(self, workspace, mocker):
        workspace.mkdir(".bzr")
        bazaar = Bazaar()

        execute = mocker.patch("bumpr.vcs.execute")
        execute.return_value = "\n".join((" M modified.py", "? new.py"))
        with pytest.raises(BumprError):
            bazaar.validate()
        execute.assert_called_with("bzr status --short", verbose=False)
示例#11
0
    def test_validate_ok(self):
        with workspace('bazaar') as wksp:
            os.mkdir('.bzr')
            bazaar = Bazaar()

            with patch('bumpr.vcs.execute') as execute:
                execute.return_value = '? new.py'
                bazaar.validate()
                execute.assert_called_with('bzr status --short', verbose=False)
示例#12
0
    def test_validate_ko_not_clean(self, workspace):
        workspace.mkdir('.bzr')
        bazaar = Bazaar()

        with patch('bumpr.vcs.execute') as execute:
            execute.return_value = '\n'.join((' M modified.py', '? new.py'))
            with pytest.raises(BumprError):
                bazaar.validate()
            execute.assert_called_with('bzr status --short', verbose=False)
示例#13
0
    def test_validate_not_clean_dryrun(self, workspace, mocker):
        workspace.mkdir('.bzr')
        bazaar = Bazaar()

        execute = mocker.patch('bumpr.vcs.execute')
        execute.return_value = '\n'.join((' M modified.py', '? new.py'))

        bazaar.validate(dryrun=True)

        execute.assert_called_with('bzr status --short', verbose=False)
示例#14
0
    def test_validate_ko_not_clean(self):
        with workspace('bazaar') as wksp:
            os.mkdir('.bzr')
            bazaar = Bazaar()

            with patch('bumpr.vcs.execute') as execute:
                execute.return_value = '\n'.join(
                    (' M modified.py', '? new.py'))
                with self.assertRaises(BumprError):
                    bazaar.validate()
                execute.assert_called_with('bzr status --short', verbose=False)
示例#15
0
    def test_tag_annotate(self, mocker, caplog):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.tag('fake', annotation='some annotation')
        execute.assert_called_with(['bzr', 'tag', 'fake'])

        record = caplog.record_tuples[0]

        assert record[0] == 'bumpr.vcs'
        assert record[1] == logging.WARNING
示例#16
0
    def test_tag_annotate(self, mocker, caplog):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.tag('fake', annotation='some annotation')
        execute.assert_called_with(['bzr', 'tag', 'fake'])

        record = caplog.record_tuples[0]

        assert record[0] == 'bumpr.vcs'
        assert record[1] == logging.WARNING
示例#17
0
    def test_tag_annotate(self, mocker, caplog):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, "execute")
        bazaar.tag("fake", annotation="some annotation")
        execute.assert_called_with(["bzr", "tag", "fake"])

        record = caplog.record_tuples[0]

        assert record[0] == "bumpr.vcs"
        assert record[1] == logging.WARNING
示例#18
0
    def test_commit(self, mocker):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, "execute")
        bazaar.commit("message")
        execute.assert_called_with(["bzr", "commit", "-m", "message"])
示例#19
0
    def test_tag(self):
        bazaar = Bazaar()

        with patch.object(bazaar, 'execute') as execute:
            bazaar.tag('fake')
            execute.assert_called_with(['bzr', 'tag', 'fake'])
示例#20
0
    def test_push(self, mocker):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, "execute")
        bazaar.push()
        execute.assert_called_with(["bzr", "push"])
示例#21
0
    def test_push(self, mocker):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.push()
        execute.assert_called_with(['bzr', 'push'])
示例#22
0
    def test_commit(self):
        bazaar = Bazaar()

        with patch.object(bazaar, 'execute') as execute:
            bazaar.commit('message')
            execute.assert_called_with(['bzr', 'commit', '-m', 'message'])
示例#23
0
    def test_tag(self, mocker, caplog):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.tag('fake')
        execute.assert_called_with(['bzr', 'tag', 'fake'])
示例#24
0
    def test_commit(self, mocker):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.commit('message')
        execute.assert_called_with(['bzr', 'commit', '-m', 'message'])
示例#25
0
    def test_tag(self, mocker, caplog):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, "execute")
        bazaar.tag("fake")
        execute.assert_called_with(["bzr", "tag", "fake"])
示例#26
0
    def test_push(self, mocker):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.push()
        execute.assert_called_with(['bzr', 'push'])
示例#27
0
    def test_tag(self):
        bazaar = Bazaar()

        with patch.object(bazaar, 'execute') as execute:
            bazaar.tag('fake')
            execute.assert_called_with(['bzr', 'tag', 'fake'])
示例#28
0
    def test_commit(self, mocker):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.commit('message')
        execute.assert_called_with(['bzr', 'commit', '-m', 'message'])
示例#29
0
    def test_push(self):
        bazaar = Bazaar()

        with patch.object(bazaar, 'execute') as execute:
            bazaar.push()
            execute.assert_called_with(['bzr', 'push'])
示例#30
0
    def test_tag(self, mocker, caplog):
        bazaar = Bazaar()

        execute = mocker.patch.object(bazaar, 'execute')
        bazaar.tag('fake')
        execute.assert_called_with(['bzr', 'tag', 'fake'])