Skip to content

Commit 8a7c386

Browse files
authored
feature: test code for multiple iOS simulators (#637)
* add test sample * add rake style * update parallel tests * remove unused require * arrange a bit
1 parent b7daaac commit 8a7c386

File tree

3 files changed

+89
-1
lines changed

3 files changed

+89
-1
lines changed

ios_tests/Rakefile

+37
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,40 @@ RuboCop::RakeTask.new(:rubocop) do |t|
5252
t.options = %w(-D)
5353
t.fail_on_error = false
5454
end
55+
56+
desc 'Run tests with parallel'
57+
task :run_parallel do
58+
require 'thread'
59+
require_relative 'parallel/test'
60+
def device1
61+
{
62+
automationName: 'xcuitest',
63+
platformName: 'ios',
64+
platformVersion: '11.0',
65+
deviceName: 'iPhone 6',
66+
app: "#{Dir.pwd}/../test_apps/UICatalog.app",
67+
wdaLocalPort: 8100
68+
}
69+
end
70+
71+
def device2
72+
{
73+
automationName: 'xcuitest',
74+
platformName: 'ios',
75+
platformVersion: '11.0',
76+
deviceName: 'iPhone 6s',
77+
app: "#{Dir.pwd}/../test_apps/UICatalog.app",
78+
wdaLocalPort: 8200
79+
}
80+
end
81+
82+
threads = []
83+
[device1, device2].each do |capability|
84+
threads << Thread.new do
85+
# RSpec::Core::RakeTask.new(:spec)
86+
TestParallelRun.new(capability).test_run
87+
end
88+
end
89+
90+
threads.each(&:join)
91+
end

ios_tests/parallel/test.rb

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
require_relative '../../lib/appium_lib'
2+
3+
def des_server_caps
4+
{
5+
debug: true,
6+
server_url: "#{ENV['appium_server'] ||= 'http://127.0.0.1:4723'}/wd/hub",
7+
wait: 25,
8+
wait_timeout: 20,
9+
wait_interval: 0.3
10+
}
11+
end
12+
13+
class TestParallelRun
14+
def initialize(capability)
15+
@capability = capability
16+
end
17+
18+
def setup
19+
@appium = Appium::Driver.new({ caps: @capability, appium_lib: des_server_caps }, false)
20+
@appium.start_driver
21+
22+
Appium.promote_appium_methods [self.class], @appium
23+
end
24+
25+
def teardown
26+
quit_driver
27+
puts "finish: #{@capability}"
28+
end
29+
30+
def test_run
31+
setup
32+
33+
# tap alert
34+
find_element(:name, 'Alerts').click
35+
wait_true do
36+
find_element(:name, 'Show OK-Cancel').click
37+
find_element(:name, 'UIActionSheet <title>').displayed?
38+
end
39+
alert action: 'accept'
40+
back
41+
42+
sleep 5
43+
44+
# TouchAction
45+
text_elem = text(app_strings['ButtonsExplain'])
46+
tap x: 0, y: 0, element: text_elem
47+
back
48+
49+
teardown
50+
end
51+
end

lib/appium_lib/common/patch.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def execute(command, opts = {}, command_hash = nil)
130130
Appium::Logger.ap_info command_hash
131131
end
132132

133-
if $driver.global_webdriver_http_sleep
133+
if !$driver.nil? && $driver.global_webdriver_http_sleep
134134
warn '[DEPRECATION] global_webdriver_http_sleep will be removed. Please arrange with timeout.'
135135

136136
delay = $driver.global_webdriver_http_sleep

0 commit comments

Comments
 (0)