forked from appium/python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappium_tests.py
More file actions
246 lines (190 loc) · 9.45 KB
/
appium_tests.py
File metadata and controls
246 lines (190 loc) · 9.45 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
from zipfile import ZipFile
import json
import os
import random
from time import sleep
from dateutil.parser import parse
from selenium.common.exceptions import NoSuchElementException
from appium import webdriver
import desired_capabilities
# the emulator is sometimes slow and needs time to think
SLEEPY_TIME = 1
class AppiumTests(unittest.TestCase):
def setUp(self):
desired_caps = desired_capabilities.get_desired_capabilities('ApiDemos-debug.apk')
self.driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
def tearDown(self):
self.driver.quit()
# remove zipped file from `test_pull_folder`
if hasattr(self, 'zipfilename') and os.path.isfile(self.zipfilename):
os.remove(self.zipfilename)
def test_app_strings(self):
strings = self.driver.app_strings()
self.assertEqual(u'You can\'t wipe my data, you are a monkey!', strings[u'monkey_wipe_data'])
def test_app_strings_with_language(self):
strings = self.driver.app_strings('en')
self.assertEqual(u'You can\'t wipe my data, you are a monkey!', strings[u'monkey_wipe_data'])
def test_app_strings_with_language_and_file(self):
strings = self.driver.app_strings('en', 'some_file')
self.assertEqual(u'You can\'t wipe my data, you are a monkey!', strings[u'monkey_wipe_data'])
def test_press_keycode(self):
# not sure how to test this.
self.driver.press_keycode(176)
def test_long_press_keycode(self):
# not sure how to test this.
self.driver.long_press_keycode(176)
def test_current_activity(self):
activity = self.driver.current_activity
self.assertEqual('.ApiDemos', activity)
def test_current_package(self):
package = self.driver.current_package
self.assertEqual('com.example.android.apis', package)
def test_pull_file(self):
data = self.driver.pull_file('data/local/tmp/strings.json')
strings = json.loads(data.decode('base64', 'strict'))
self.assertEqual('You can\'t wipe my data, you are a monkey!', strings[u'monkey_wipe_data'])
def test_push_file(self):
path = 'data/local/tmp/test_push_file.txt'
data = 'This is the contents of the file to push to the device.'
self.driver.push_file(path, data.encode('base64'))
data_ret = self.driver.pull_file('data/local/tmp/test_push_file.txt').decode('base64')
self.assertEqual(data, data_ret)
def test_pull_folder(self):
string_data = 'random string data %d' % random.randint(0, 1000)
path = '/data/local/tmp'
self.driver.push_file(path + '/1.txt', string_data.encode('base64'))
self.driver.push_file(path + '/2.txt', string_data.encode('base64'))
folder = self.driver.pull_folder(path)
# python doesn't have any functionality for unzipping streams
# save temporary file, which will be deleted in `tearDown`
self.zipfilename = 'folder_%d.zip' % random.randint(0, 1000000)
file = open(self.zipfilename, "w")
file.write(folder.decode('base64', 'strict'))
file.close()
with ZipFile(self.zipfilename, 'r') as myzip:
# should find these. otherwise it will raise a `KeyError`
myzip.read('1.txt')
myzip.read('2.txt')
def test_background_app(self):
self.driver.background_app(1)
sleep(5)
el = self.driver.find_element_by_name('Animation')
self.assertIsNotNone(el)
def test_is_app_installed(self):
self.assertFalse(self.driver.is_app_installed('sdfsdf'))
self.assertTrue(self.driver.is_app_installed('com.example.android.apis'))
def test_install_app(self):
self.skipTest('This causes the server to crash. no idea why')
self.assertFalse(self.driver.is_app_installed('io.selendroid.testapp'))
self.driver.install_app('/Users/isaac/code/python-client/test/apps/selendroid-test-app.apk')
self.assertTrue(self.driver.is_app_installed('io.selendroid.testapp'))
def test_remove_app(self):
self.assertTrue(self.driver.is_app_installed('com.example.android.apis'))
self.driver.remove_app('com.example.android.apis')
self.assertFalse(self.driver.is_app_installed('com.example.android.apis'))
def test_close__and_launch_app(self):
el = self.driver.find_element_by_name('Animation')
self.assertIsNotNone(el)
self.driver.close_app()
self.driver.launch_app()
el = self.driver.find_element_by_name('Animation')
self.assertIsNotNone(el)
def test_end_test_coverage(self):
self.skipTest('Not sure how to set this up to run')
self.driver.end_test_coverage(intent='android.intent.action.MAIN', path='')
sleep(5)
def test_reset(self):
el = self.driver.find_element_by_name('App')
el.click()
self.driver.reset()
sleep(5)
el = self.driver.find_element_by_name('App')
self.assertIsNotNone(el)
def test_open_notifications(self):
self.driver.find_element_by_android_uiautomator('new UiSelector().text("App")').click()
self.driver.find_element_by_android_uiautomator('new UiSelector().text("Notification")').click()
self.driver.find_element_by_android_uiautomator('new UiSelector().text("Status Bar")').click()
self.driver.find_element_by_android_uiautomator('new UiSelector().text(":-|")').click()
self.driver.open_notifications()
sleep(1)
self.assertRaises(NoSuchElementException, \
self.driver.find_element_by_android_uiautomator, 'new UiSelector().text(":-|")')
els = self.driver.find_elements_by_class_name('android.widget.TextView')
# sometimes numbers shift
title = False
body = False
for el in els:
text = el.text
if text == 'Mood ring':
title = True
elif text == 'I am ok':
body = True
self.assertTrue(title)
self.assertTrue(body)
self.driver.keyevent(4)
sleep(1)
self.driver.find_element_by_android_uiautomator('new UiSelector().text(":-|")')
def test_set_text(self):
self.driver.find_element_by_android_uiautomator('new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text("Views").instance(0));').click()
self.driver.find_element_by_name('Controls').click()
self.driver.find_element_by_name('1. Light Theme').click()
el = self.driver.find_element_by_class_name('android.widget.EditText')
el.send_keys('original text')
el.set_text('new text')
self.assertEqual('new text', el.text)
def test_send_keys(self):
self.driver.find_element_by_android_uiautomator('new UiScrollable(new UiSelector().scrollable(true).instance(0)).scrollIntoView(new UiSelector().text("Views").instance(0));').click()
self.driver.find_element_by_name('Controls').click()
self.driver.find_element_by_name('1. Light Theme').click()
el = self.driver.find_element_by_class_name('android.widget.EditText')
el.send_keys('original text')
el.send_keys(' and new text')
self.assertEqual('original text and new text', el.text)
def test_start_activity_this_app(self):
self.driver.start_activity("com.example.android.apis", ".ApiDemos")
self._assert_activity_contains('Demos')
self.driver.start_activity("com.example.android.apis", ".accessibility.AccessibilityNodeProviderActivity")
self._assert_activity_contains('Node')
def test_start_activity_other_app(self):
self.driver.start_activity("com.example.android.apis", ".ApiDemos")
self._assert_activity_contains('Demos')
self.driver.start_activity("com.android.contacts", ".ContactsListActivity")
self._assert_activity_contains('Contact')
def _assert_activity_contains(self, activity):
current = self.driver.current_activity
self.assertTrue(activity in current)
def test_get_settings(self):
settings = self.driver.get_settings()
self.assertIsNotNone(settings)
def test_update_settings(self):
self.driver.update_settings({"cyberdelia": "open"})
settings = self.driver.get_settings()
self.assertEqual(settings["cyberdelia"], "open")
def test_toggle_location_services(self):
self.driver.toggle_location_services()
def test_element_location_in_view(self):
el = self.driver.find_element_by_name('Content')
loc = el.location_in_view
self.assertIsNotNone(loc['x'])
self.assertIsNotNone(loc['y'])
def test_device_time(self):
date_time = self.driver.device_time
# convert to date ought to work
parse(date_time)
if __name__ == "__main__":
suite = unittest.TestLoader().loadTestsFromTestCase(AppiumTests)
unittest.TextTestRunner(verbosity=2).run(suite)