1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# Copyright (C) 2012 Curtis Hovey <sinzui.is@verizon.net>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Test the ui functionality."""
from gi.repository import Gtk
from bzrlib import (
errors,
tests,
ui,
)
from bzrlib.plugins.gtk import (
push,
set_ui_factory,
)
from bzrlib.plugins.gtk.tests import MockMethod
from bzrlib.plugins.gtk.history import UrlHistory
from bzrlib.plugins.gtk.ui import ProgressPanel
class PushTestCase(tests.TestCaseWithMemoryTransport):
def make_push_branch(self):
tree = self.make_branch_and_memory_tree('test')
return tree.branch
def test_init(self):
set_ui_factory()
branch = self.make_push_branch()
dialog = push.PushDialog(
repository=None, revid=None, branch=branch, parent=None)
self.assertIs(None, dialog.props.parent)
self.assertIs(None, dialog.repository)
self.assertIs(None, dialog.revid)
self.assertIs(branch, dialog.branch)
# Layout rules to match HIG.
self.assertIsInstance(dialog._label_location, Gtk.Label)
self.assertIsInstance(dialog._combo, Gtk.ComboBox)
self.assertIsInstance(dialog._button_push, Gtk.Button)
self.assertIsInstance(dialog._hbox_location, Gtk.Box)
self.assertIsInstance(dialog._progress_widget, ProgressPanel)
self.assertIsInstance(dialog._push_message, Gtk.Label)
self.assertIsInstance(dialog._history, UrlHistory)
self.assertIs(
ui.ui_factory._progress_bar_widget, dialog._progress_widget)
self.assertEqual(
Gtk.Orientation.HORIZONTAL,
dialog._hbox_location.props.orientation)
self.assertEqual(0.0, dialog._push_message.props.xalign)
self.assertEqual(6, dialog.props.border_width)
self.assertEqual(6, dialog._hbox_location.props.spacing)
self.assertEqual(6, dialog.get_content_area().props.spacing)
# Show rules.
self.assertIs(True, dialog._combo.props.visible)
self.assertIs(False, dialog._progress_widget.props.visible)
self.assertIs(False, dialog._push_message.props.visible)
def test_build_history(self):
set_ui_factory()
branch = self.make_push_branch()
branch.set_push_location('lp:~user/fnord/trunk')
dialog = push.PushDialog(None, None, branch)
dialog._history.add_entry('lp:~user/fnord/test1')
dialog._history.add_entry('lp:~user/fnord/test2')
dialog._build_history()
self.assertEqual(
'lp:~user/fnord/trunk', dialog._combo.get_child().props.text)
self.assertIsInstance(dialog._combo_model, Gtk.ListStore)
self.assertIs(dialog._combo.get_model(), dialog._combo_model)
locations = [row[0] for row in dialog._combo_model]
self.assertEqual(
['lp:~user/fnord/test1', 'lp:~user/fnord/test2'], locations)
def test_on_close_clicked(self):
# The ui_factory's progress bar widget is set to None.
set_ui_factory()
branch = self.make_push_branch()
dialog = push.PushDialog(None, None, branch)
dialog._on_close_clicked(None)
self.assertIs(None, ui.ui_factory._progress_bar_widget)
def test_on_push_clicked_without_errors(self):
# Verify the dialog's and branch's final states after a push.
MockMethod.bind(self, push, 'do_push', "test success")
set_ui_factory()
branch = self.make_push_branch()
dialog = push.PushDialog(None, None, branch)
MockMethod.bind(self, dialog._progress_widget, 'tick')
dialog._combo.get_child().props.text = 'lp:~user/fnord/test'
dialog._on_push_clicked(None)
self.assertIs(True, dialog._progress_widget.tick.called)
self.assertIs(False, dialog._progress_widget.props.visible)
self.assertIs(True, push.do_push.called)
self.assertEqual(
(branch, 'lp:~user/fnord/test'), push.do_push.args)
self.assertEqual(
{'overwrite': False}, push.do_push.kwargs)
self.assertIs(True, dialog._push_message.props.visible)
self.assertEqual('test success', dialog._push_message.props.label)
self.assertEqual(
'lp:~user/fnord/test', dialog._history.get_entries()[-1])
self.assertEqual('lp:~user/fnord/test', branch.get_push_location())
def test_on_push_clicked_with_divered_branches(self):
# Verify that when DivergedBranches is raise, the user can choose
# to overwrite the branch.
error = errors.DivergedBranches(None, None)
MockMethod.bind(self, push, 'do_push', raise_error=error)
MockMethod.bind(self, push, 'question_dialog', Gtk.ResponseType.YES)
set_ui_factory()
branch = self.make_push_branch()
dialog = push.PushDialog(None, None, branch)
dialog._combo.get_child().props.text = 'lp:~user/fnord/test'
dialog._on_push_clicked(None)
self.assertIs(True, push.do_push.called)
self.assertEqual(2, push.do_push.call_count)
self.assertEqual(
(branch, 'lp:~user/fnord/test'), push.do_push.args)
self.assertEqual(
{'overwrite': True}, push.do_push.kwargs)
|