-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add test_start_activity * Add current_activity and wait_activity * Fix pytest 4.0.2 * Add test_start_activity_with_opts * Added options
- Loading branch information
1 parent
95ca3d0
commit 4874112
Showing
3 changed files
with
88 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#!/usr/bin/env python | ||
|
||
# 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. | ||
|
||
from test.unit.helper.test_helper import appium_command, android_w3c_driver | ||
|
||
import json | ||
import httpretty | ||
|
||
|
||
class TestWebDriverDeviceActivities(object): | ||
|
||
@httpretty.activate | ||
def test_start_activity(self): | ||
driver = android_w3c_driver() | ||
httpretty.register_uri( | ||
httpretty.POST, | ||
appium_command('/session/1234567890/appium/device/start_activity'), | ||
body='{"value": ""}' | ||
) | ||
driver.start_activity('com.example.myapp', '.ExampleActivity') | ||
|
||
d = json.loads(httpretty.last_request().body.decode('utf-8')) | ||
assert d['sessionId'] == '1234567890' | ||
assert d['appPackage'] == 'com.example.myapp' | ||
assert d['appActivity'] == '.ExampleActivity' | ||
|
||
@httpretty.activate | ||
def test_start_activity_with_opts(self): | ||
driver = android_w3c_driver() | ||
httpretty.register_uri( | ||
httpretty.POST, | ||
appium_command('/session/1234567890/appium/device/start_activity'), | ||
body='{"value": ""}' | ||
) | ||
driver.start_activity( | ||
app_package='com.example.myapp', | ||
app_activity='.ExampleActivity', | ||
app_wait_package='com.example.waitapp', | ||
intent_action='android.intent.action.MAIN', | ||
intent_category='android.intent.category.LAUNCHER', | ||
intent_flags='0x10200000', | ||
optional_intent_arguments='--es "activity" ".ExampleActivity"', | ||
dont_stop_app_on_reset=True | ||
) | ||
|
||
d = json.loads(httpretty.last_request().body.decode('utf-8')) | ||
assert d['sessionId'] == '1234567890' | ||
assert d['appPackage'] == 'com.example.myapp' | ||
assert d['appActivity'] == '.ExampleActivity' | ||
assert d['appWaitPackage'] == 'com.example.waitapp' | ||
assert d['intentAction'] == 'android.intent.action.MAIN' | ||
assert d['intentCategory'] == 'android.intent.category.LAUNCHER' | ||
assert d['intentFlags'] == '0x10200000' | ||
assert d['optionalIntentArguments'] == '--es "activity" ".ExampleActivity"' | ||
assert d['dontStopAppOnReset'] is True | ||
|
||
@httpretty.activate | ||
def test_current_activity(self): | ||
driver = android_w3c_driver() | ||
httpretty.register_uri( | ||
httpretty.GET, | ||
appium_command('/session/1234567890/appium/device/current_activity'), | ||
body='{"value": ".ExampleActivity"}' | ||
) | ||
assert driver.current_activity == '.ExampleActivity' | ||
|
||
@httpretty.activate | ||
def test_wait_activity(self): | ||
driver = android_w3c_driver() | ||
httpretty.register_uri( | ||
httpretty.GET, | ||
appium_command('/session/1234567890/appium/device/current_activity'), | ||
body='{"value": ".ExampleActivity"}' | ||
) | ||
assert driver.wait_activity('.ExampleActivity', 1) is True |