test_fill_form and test_add_new_event_with_default_values failed on mako image #120
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Ubuntu Calendar App |
Invalid
|
Undecided
|
Unassigned |
Bug Description
These two tests are failing since mako image #120 with the following error(s):
Traceback (most recent call last):
File "/home/
new_
File "/usr/lib/
return f(instance, *args, **kwargs)
File "/home/
self.
File "/home/
self.
File "/home/
self.
File "/home/
text_
File "/home/
self.
File "/usr/lib/
failure_msg))
AssertionError: After 10.0 seconds test on NewEventEntryFi
Traceback (most recent call last):
File "/home/
day_view = new_event_
File "/usr/lib/
return f(instance, *args, **kwargs)
File "/home/
self.
File "/usr/lib/
return f(instance, *args, **kwargs)
File "/home/
self.
File "/home/
self.
File "/home/
self.
File "/home/
text_
File "/home/
self.
File "/usr/lib/
failure_msg))
AssertionError: After 10.0 seconds test on NewEventEntryFi
The root cause seems to be identical in that the test is trying to fill out the new event form and does not scroll the view (or the application does not do that).
Related branches
- PS Jenkins bot: Needs Fixing (continuous-integration)
- Zoltan Balogh: Disapprove
-
Diff: 122 lines (+21/-55)1 file modifiedmodules/Ubuntu/Components/OrientationHelper.qml (+21/-55)
- PS Jenkins bot: Needs Fixing (continuous-integration)
- Tim Peeters: Approve
-
Diff: 68 lines (+14/-3)4 files modifiedcomponents.api (+1/-0)
modules/Ubuntu/Components/MainView.qml (+1/-2)
modules/Ubuntu/Components/OrientationHelper.qml (+11/-1)
modules/Ubuntu/Components/Popups/PopupBase.qml (+1/-0)
I can fix it with this:
=== modified file NewEvent.qml
acceptAction: Action {
--- NewEvent.qml 2014-06-26 22:48:45 +0000
+++ NewEvent.qml 2014-07-09 14:11:22 +0000
@@ -537,7 +537,7 @@
anchors {
left: parent.left
right: parent.right
- bottom: parent.bottom
+ bottom: keyboard.top
}
height: units.gu(6)
still investigating further, I thought the MainView should handle that already