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 | #test_main.py
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
"""Tests for the Hello World"""
import os
from autopilot.matchers import Eventually
from testtools.matchers import Equals
import deletemeeeeee
class MainViewTestCase(deletemeeeeee.ClickAppTestCase):
"""Generic tests for the Hello World"""
def test_initial_label(self):
label = self.main_view.select_single(objectName='label')
self.assertThat(label.text, Equals('Hello..'))
def test_click_button_should_update_label(self):
button = self.main_view.select_single(objectName='button')
self.pointing_device.click_object(button)
label = self.main_view.select_single(objectName='label')
self.assertThat(label.text, Eventually(Equals('..world!')))
----------------------------------------------------------------------
#__init__.py
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
"""Ubuntu Touch App autopilot tests."""
import os
import subprocess
from autopilot import input, platform
from autopilot.matchers import Eventually
from testtools.matchers import Equals
from ubuntuuitoolkit import base, emulators
def _get_module_include_path():
return os.path.join(get_path_to_source_root(), 'modules')
def get_path_to_source_root():
return os.path.abspath(
os.path.join(
os.path.dirname(__file__), '..', '..', '..', '..'))
class ClickAppTestCase(base.UbuntuUIToolkitAppTestCase):
"""Common test case that provides several useful methods for the tests."""
package_id = '' # TODO
app_name = 'deletemeeeeee'
def setUp(self):
super(ClickAppTestCase, self).setUp()
self.pointing_device = input.Pointer(self.input_device_class.create())
self.launch_application()
self.assertThat(self.main_view.visible, Eventually(Equals(True)))
def launch_application(self):
if platform.model() == 'Desktop':
self._launch_application_from_desktop()
else:
self._launch_application_from_phablet()
def _launch_application_from_desktop(self):
app_qml_source_location = self._get_app_qml_source_path()
if os.path.exists(app_qml_source_location):
self.app = self.launch_test_application(
base.get_qmlscene_launch_command(),
'-I' + _get_module_include_path(),
app_qml_source_location,
app_type='qt',
emulator_base=emulators.UbuntuUIToolkitEmulatorBase)
else:
raise NotImplementedError(
"On desktop we can't install click packages yet, so we can "
"only run from source.")
def _get_app_qml_source_path(self):
qml_file_name = 'main.qml'
return os.path.join(self._get_path_to_app_source(), qml_file_name)
def _get_path_to_app_source(self):
return os.path.join(get_path_to_source_root(), self.app_name)
def _launch_application_from_phablet(self):
# On phablet, we only run the tests against the installed click
# package.
self.app = self.launch_click_package(self.pacakge_id, self.app_name)
@property
def main_view(self):
return self.app.select_single(emulators.MainView)
|