Class: ParallelCalabash::IosRunner
- Inherits:
-
Object
- Object
- ParallelCalabash::IosRunner
- Includes:
- Runner
- Defined in:
- lib/parallel_calabash/runner.rb
Instance Method Summary collapse
- #base_command ⇒ Object
- #command_for_test(process_number, test_files, app_path, cucumber_options, simulator) ⇒ Object
- #copy_app_set_port(app_path, device) ⇒ Object
- #create_simulator(device_name, ssh, simulator) ⇒ Object
-
#initialize(device_helper, silence, skip_ios_ping_check) ⇒ IosRunner
constructor
A new instance of IosRunner.
- #prepare_for_parallel_execution ⇒ Object
- #run_tests(test_files, process_number, options) ⇒ Object
- #stop_and_remove(device_name, ssh) ⇒ Object
-
#version(simulator) ⇒ Object
def udid(name) name = name.gsub(/(W)/, ‘\\\1’) line = %x( instruments -s devices ).split(“n”).grep(/#name/) fail “Found #lineline.size matches for #name, expected 1” unless line.size == 1 line.first.match(//).captures.first.to_s end.
Methods included from Runner
#execute_command_for_process, #show_output
Constructor Details
#initialize(device_helper, silence, skip_ios_ping_check) ⇒ IosRunner
Returns a new instance of IosRunner.
80 81 82 83 84 |
# File 'lib/parallel_calabash/runner.rb', line 80 def initialize(device_helper, silence, skip_ios_ping_check) @device_helper = device_helper @silence = silence @skip_ios_ping_check = skip_ios_ping_check end |
Instance Method Details
#base_command ⇒ Object
86 87 88 |
# File 'lib/parallel_calabash/runner.rb', line 86 def base_command 'bundle exec cucumber' end |
#command_for_test(process_number, test_files, app_path, cucumber_options, simulator) ⇒ Object
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 |
# File 'lib/parallel_calabash/runner.rb', line 106 def command_for_test(process_number, test_files, app_path, , simulator) device = @device_helper.device_for_process process_number separator = (WINDOWS ? ' & ' : ';') remote = device[:USER] ? "ssh #{device[:USER]}@localhost" : 'bash -c' if device[:CALABASH_SERVER_PORT] user_app = copy_app_set_port(app_path, device) else user_app = app_path end device_name = device[:DEVICE_NAME] || "PCal-#{device[:USER]}" device_simulator = device[:SIMULATOR] || simulator # Device target changed in XCode 7, losing ' Simulator' for some reason. maybe_simulator = @device_helper.xcode7? ? '' : ' Simulator' device_target = device[:DEVICE_TARGET] || "#{device_name} (#{version(device_simulator)}#{maybe_simulator})" device_info = device[:DEVICE_TARGET] || (device[:USER] ? create_simulator(device_name, remote, simulator) : '') device_endpoint = device[:DEVICE_ENDPOINT] || "http://localhost:#{device[:CALABASH_SERVER_PORT]}" $stdout.print "#{process_number}>> Device: #{device_info} = #{device_name} = #{device_target}\n" $stdout.flush unless @skip_ios_ping_check hostname = device_endpoint.match("http://(.*):").captures.first pingable = system "ping -c 1 -o #{hostname}" fail "Cannot ping device_endpoint host: #{hostname}" unless pingable end cmd = [base_command, "APP_BUNDLE_PATH=#{user_app}", , *test_files].compact*' ' env = { AUTOTEST: '1', DEVICE_ENDPOINT: device_endpoint, DEVICE_TARGET: device_target, DEVICE_INFO: device_info, TEST_USER: device[:USER] || %x( whoami ).strip, # 'DEBUG_UNIX_CALLS' => '1', TEST_PROCESS_NUMBER: (process_number+1).to_s, SCREENSHOT_PATH: "PCal_#{process_number+1}_" } env['BUNDLE_ID'] = ENV['BUNDLE_ID'] if ENV['BUNDLE_ID'] exports = env.map { |k, v| WINDOWS ? "(SET \"#{k}=#{v}\")" : "#{k}='#{v}';export #{k}" }.join(separator) cmd = [ exports, "#{device[:INIT] || ' : '}", "cd #{File.absolute_path('.')}", "umask 002", cmd].join(separator) if device[:USER] "#{remote} bash -lc \"#{cmd}\" 2>&1" else "bash -c \"#{cmd}\" 2>&1" end end |
#copy_app_set_port(app_path, device) ⇒ Object
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/parallel_calabash/runner.rb', line 205 def copy_app_set_port(app_path, device) user_path = File.dirname(app_path) + '/' + device[:USER] FileUtils.rmtree(user_path) FileUtils.mkdir_p(user_path) user_app = user_path + '/' + File.basename(app_path) FileUtils.copy_entry(app_path, user_app) # Set plist. system("/usr/libexec/PlistBuddy -c 'Delete CalabashServerPort integer #{device[:CALABASH_SERVER_PORT]}' #{user_app}/Info.plist") unless system("/usr/libexec/PlistBuddy -c 'Add CalabashServerPort integer #{device[:CALABASH_SERVER_PORT]}' #{user_app}/Info.plist") raise "Unable to set CalabashServerPort in #{user_app}/Info.plist" end puts "User app: #{user_app}" user_app end |
#create_simulator(device_name, ssh, simulator) ⇒ Object
184 185 186 187 188 189 190 191 192 193 |
# File 'lib/parallel_calabash/runner.rb', line 184 def create_simulator(device_name, ssh, simulator) stop_and_remove(device_name, ssh) puts "Double check..." stop_and_remove(device_name, ssh) puts "OK if none" device_info = %x( #{ssh} "xcrun simctl create #{device_name} #{simulator}" ).strip fail "Failed to create #{device_name} for #{ssh}" unless device_info device_info end |
#prepare_for_parallel_execution ⇒ Object
169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
# File 'lib/parallel_calabash/runner.rb', line 169 def prepare_for_parallel_execution # copy-chown all the files, and set everything group-writable. Find.find('.') do |path| if File.file?(path) && !File.stat(path).owned? temp = "#{path}......" FileUtils.copy(path, temp) FileUtils.move(temp, path) puts "Chowned/copied.... #{path}" end end FileUtils.chmod_R('g+w', 'build/reports') if File.exists? 'build/reports' FileUtils.chmod('g+w', Dir['*']) FileUtils.chmod('g+w', '.') end |
#run_tests(test_files, process_number, options) ⇒ Object
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/parallel_calabash/runner.rb', line 90 def run_tests(test_files, process_number, ) test = command_for_test( process_number, test_files, [:app_path], "#{[:cucumber_options]} #{[:cucumber_reports]}", [:simulator] || '0-0') $stdout.print "#{process_number}>> Command: #{test}\n" $stdout.flush o = execute_command_for_process(process_number, test) device = @device_helper.device_for_process process_number log = "/tmp/PCal-#{device[:USER]}.process_number" puts "Writing log #{log}" open(log, 'w') { |file| file.print o[:stdout] } o end |
#stop_and_remove(device_name, ssh) ⇒ Object
195 196 197 198 199 200 201 202 203 |
# File 'lib/parallel_calabash/runner.rb', line 195 def stop_and_remove(device_name, ssh) devices = %x( #{ssh} "xcrun simctl list devices" | grep #{device_name} ) puts "Devices: #{devices}" devices.each_line do |device| _name, id, state = device.match(/^\s*([^(]*?)\s*\((\S+)\)\s+\((\S+)\)/).captures puts 'Shutdown: ' + %x( #{ssh} "xcrun simctl shutdown #{id}" ) if state =~ /booted/ puts 'Delete: ' + %x( #{ssh} "xcrun simctl delete #{id}" ) end end |
#version(simulator) ⇒ Object
def udid(name)
name = name.gsub(/(\W)/, '\\\\\\1')
line = %x( instruments -s devices ).split("\n").grep(/#{name}/)
fail "Found #{line.size} matches for #{name}, expected 1" unless line.size == 1
line.first.match(/\[(\S+)\]/).captures.first.to_s
end
165 166 167 |
# File 'lib/parallel_calabash/runner.rb', line 165 def version(simulator) simulator.match('\d+-\d+$').to_s.gsub('-', '.') end |