From 2271760388d9bb2d0b3a19562c47d5620e1574df Mon Sep 17 00:00:00 2001 From: tabatask Date: Thu, 13 Jun 2019 20:00:26 +0900 Subject: [PATCH] add unit test for open_notifications --- .../webdriver/device/notifications_test.py | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 test/unit/webdriver/device/notifications_test.py diff --git a/test/unit/webdriver/device/notifications_test.py b/test/unit/webdriver/device/notifications_test.py new file mode 100644 index 00000000..27edf680 --- /dev/null +++ b/test/unit/webdriver/device/notifications_test.py @@ -0,0 +1,35 @@ +#!/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 ( + android_w3c_driver, + appium_command, + get_httpretty_request_body +) + +import httpretty + +from appium.webdriver.webdriver import WebDriver + + +class TestWebDriverNotifications(object): + + @httpretty.activate + def test_open_notifications(self): + driver = android_w3c_driver() + httpretty.register_uri( + httpretty.POST, + appium_command('/session/1234567890/appium/device/open_notifications') + ) + assert isinstance(driver.open_notifications(), WebDriver)