Class: Fastlane::Actions::AutomatedTestEmulatorRunAction
- Inherits:
-
Action
- Object
- Action
- Fastlane::Actions::AutomatedTestEmulatorRunAction
- Defined in:
- lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb
Class Method Summary collapse
- .authors ⇒ Object
- .available_options ⇒ Object
- .description ⇒ Object
- .is_supported?(platform) ⇒ Boolean
- .run(params) ⇒ Object
- .wait_for_emulator_boot_by_adb(adb_controller, avd_schemes, timeout) ⇒ Object
- .wait_for_emulator_boot_by_params(params, adb_controller, avd_controllers, avd_schemes, timeout) ⇒ Object
Class Method Details
.authors ⇒ Object
524 525 526 |
# File 'lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb', line 524 def self. ["F1sherKK"] end |
.available_options ⇒ Object
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 |
# File 'lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb', line 387 def self. [ #paths FastlaneCore::ConfigItem.new(key: :AVD_path, env_name: "AVD_PATH", description: "The path to your android AVD directory (root). ANDROID_SDK_HOME by default", default_value: (ENV['ANDROID_SDK_HOME'].nil? or ENV['ANDROID_SDK_HOME'].eql?("")) ? "~/.android/avd" : ENV['ANDROID_SDK_HOME'], is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :AVD_setup_path, env_name: "AVD_SETUP_PATH", description: "Location to AVD_setup.json file which contains info about how many AVD should be launched and their configs", is_string: true, optional: false), FastlaneCore::ConfigItem.new(key: :SDK_path, env_name: "SDK_PATH", description: "The path to your android sdk directory (root). ANDROID_SDK_ROOT by default", default_value: ENV['ANDROID_SDK_ROOT'] || ENV['ANDROID_HOME'], is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :install_missing_image, env_name: "AVD_INSTALL_MISSING_IMAGE", description: "Enable to allow plugin to attempt to install any missing system images configured in the json setup", default_value: false, is_string: false, optional: true), #launch config params FastlaneCore::ConfigItem.new(key: :AVD_param_launch_timeout, env_name: "AVD_PARAM_LAUNCH_TIMEOUT", description: "Timeout in seconds. Even though ADB might find all devices you still might want to wait for animations to finish and system to boot. Default 60 seconds", default_value: 60, is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :AVD_adb_launch_timeout, env_name: "AVD_ADB_LAUNCH_TIMEOUT", description: "Timeout in seconds. Wait until ADB finds all devices specified in config and sets their value to 'device'. Default 240 seconds", default_value: 240, is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :AVD_recreate_new, env_name: "AVD_RECREATE_NEW", description: "Allow to decide if AVDs from AVD_setup.json (in case they already exist) should be deleted and created from scratch", default_value: true, is_string: false, optional: true), FastlaneCore::ConfigItem.new(key: :AVD_clean_after, env_name: "AVD_CLEAN_AFTER", description: "Allow to decide if AVDs should be deleted from PC after test session ends", default_value: true, is_string: false, optional: true), FastlaneCore::ConfigItem.new(key: :ADB_restart, env_name: "ADB_RESTART", description: "Allows to switch adb restarting on/off", default_value: true, is_string: false, optional: true), FastlaneCore::ConfigItem.new(key: :AVD_wait_for_bootcomplete, env_name: "AVD_BOOTCOMPLETE_WAIT", description: "Allows to switch wait for 'dev.bootcomplete' AVD launch param on/off", default_value: true, is_string: false, optional: true), FastlaneCore::ConfigItem.new(key: :AVD_wait_for_boot_completed, env_name: "AVD_BOOT_COMPLETED_WAIT", description: "Allows to switch wait for 'sys.boot_completed' AVD launch param on/off", default_value: true, is_string: false, optional: true), FastlaneCore::ConfigItem.new(key: :AVD_wait_for_bootanim, env_name: "ABD_BOOTANIM_WAIT", description: "Allows to switch wait for 'init.svc.bootanim' AVD launch param on/off", default_value: true, is_string: false, optional: true), #launch commands FastlaneCore::ConfigItem.new(key: :shell_task, env_name: "SHELL_TASK", description: "The shell command you want to execute", conflicting_options: [:gradle_task, :lane], is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :gradle_task, env_name: "GRADLE_TASK", description: "The gradle task you want to execute", conflicting_options: [:shell_command, :lane], is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :gradle_flags, env_name: "GRADLE_FLAGS", description: "All parameter flags you want to pass to the gradle command, e.g. `--exitcode --xml file.xml`", conflicting_options: [:shell_command, :lane], optional: true, is_string: true), FastlaneCore::ConfigItem.new(key: :lane, env_name: "LANE", description: "The lane you want to execute", conflicting_options: [:shell_command, :gradle_task], is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :lane_platform, env_name: "LANE_PLATFORM", description: "The platform of the lane you want to execute", conflicting_options: [:shell_command, :gradle_task], default_value: 'android', is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :lane_options, env_name: "LANE_OPTIONS", description: "The options of the lane you want to execute", conflicting_options: [:shell_command, :gradle_task], is_string: false, optional: true), #mode FastlaneCore::ConfigItem.new(key: :verbose, env_name: "AVD_VERBOSE", description: "Allows to turn on/off mode verbose which displays output of AVDs", default_value: false, is_string: false, optional: true), FastlaneCore::ConfigItem.new(key: :logcat, env_name: "ADB_LOGCAT", description: "Allows to turn logcat on/off so you can debug crashes and such", default_value: false, is_string: false, optional: true), ] end |
.description ⇒ Object
520 521 522 |
# File 'lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb', line 520 def self.description "Starts AVD, based on AVD_setup.json file, before test launch and kills it after testing is done." end |
.is_supported?(platform) ⇒ Boolean
528 529 530 |
# File 'lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb', line 528 def self.is_supported?(platform) platform == :android end |
.run(params) ⇒ Object
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 |
# File 'lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb', line 8 def self.run(params) UI.("The automated_test_emulator_run plugin is working!") # Parse JSON with AVD launch confing to array of AVD_scheme objects avd_schemes = Provider::AvdSchemeProvider.get_avd_schemes(params) # ADB, AVD helper classes adb_controller = Factory::AdbControllerFactory.get_adb_controller(params) avd_controllers = [] # Create AVD_Controller class for each AVD_scheme for i in 0...avd_schemes.length avd_controller = Factory::AvdControllerFactory.get_avd_controller(params, avd_schemes[i]) avd_controllers << avd_controller if params[:verbose] # Checking for output files if File.exist?(avd_controller.output_file.path) UI.([ "Successfully created tmp output file for AVD:", avd_schemes[i].avd_name + ".", "File: " + avd_controller.output_file.path].join(" ").green) else UI.([ "Unable to create output file for AVD:", avd_schemes[i].avd_name + ".", "Output will be delegated to null and lost. Check your save/read permissions."].join(" ").red) end end end # Reseting wait states all_avd_launched = false adb_launch_complete = false param_launch_complete = false while(!all_avd_launched) # Preparation UI.("Configuring environment in order to launch emulators: ".yellow) UI.("Getting avaliable AVDs".yellow) devices = Action.sh(adb_controller.command_get_avds) for i in 0...avd_schemes.length unless devices.match(avd_schemes[i].avd_name).nil? UI.(["AVD with name '", avd_schemes[i].avd_name, "' currently exists."].join("").yellow) if params[:AVD_recreate_new] # Delete existing AVDs UI.("AVD_create_new parameter set to true.".yellow) UI.(["Deleting existing AVD with name:", avd_schemes[i].avd_name].join(" ").yellow) Action.sh(avd_controllers[i].command_delete_avd) # Re-create AVD UI.(["Re-creating new AVD."].join(" ").yellow) Action.sh(avd_controllers[i].command_create_avd) else # Use existing AVD UI.("AVD_recreate_new parameter set to false.".yellow) UI.("Using existing AVD for tests.".yellow) end else # Create AVD UI.(["AVD with name '", avd_schemes[i].avd_name, "' does not exist. Creating new AVD."].join("").yellow) Action.sh(avd_controllers[i].command_create_avd, error_callback: lambda { |result| if params[:install_missing_image] && result.include?("Error: Package path is not valid.") UI.("System image not found: attempting to install #{avd_schemes[i].create_avd_package}".yellow) Action.sh(avd_controllers[i].command_install_image) UI.success("System image successfully installed! creating new AVD #{avd_schemes[i].avd_name}") Action.sh(avd_controllers[i].command_create_avd) else UI.user_error!(result) end }) end end # Restart ADB if params[:ADB_restart] UI.("Restarting adb".yellow) Action.sh(adb_controller.command_stop) Action.sh(adb_controller.command_start) else UI.("ADB won't be restarted. 'ADB_restart' set to false.".yellow) end # Applying custom configs (it's not done directly after create because 'cat' operation seems to fail overwrite) for i in 0...avd_schemes.length UI.(["Attemting to apply custom config to ", avd_schemes[i].avd_name].join("").yellow) if avd_controllers[i].command_apply_config_avd.eql? "" UI.(["No config file found for AVD '", avd_schemes[i].avd_name, "'. AVD won't have config.ini applied."].join("").yellow) else UI.(["Config file found! Applying custom config to: ", avd_schemes[i].avd_name].join("").yellow) Action.sh(avd_controllers[i].command_apply_config_avd) end end # Launching AVDs UI.("Launching all AVDs.".yellow) for i in 0...avd_controllers.length sleep(3) Process.fork do Action.sh(avd_controllers[i].command_start_avd) end end # Wait for AVDs finish booting UI.("Waiting for AVDs to finish booting.".yellow) UI.("Performing wait for ADB boot".yellow) adb_launch_complete = wait_for_emulator_boot_by_adb(adb_controller, avd_schemes, "#{params[:AVD_adb_launch_timeout]}") # Wait for AVD params finish booting if adb_launch_complete UI.("Wait for ADB boot completed with success".yellow) if (params[:AVD_wait_for_bootcomplete] || params[:AVD_wait_for_boot_completed] || params[:AVD_wait_for_bootanim]) = "Performing wait for params: " if params[:AVD_wait_for_bootcomplete] += "'dev.bootcomplete', " end if params[:AVD_wait_for_boot_completed] += "'sys.boot_completed', " end if params[:AVD_wait_for_bootanim] += "'init.svc.bootanim', " end = [0...-2] + "." UI.(.yellow) param_launch_complete = wait_for_emulator_boot_by_params(params, adb_controller, avd_controllers, avd_schemes, "#{params[:AVD_param_launch_timeout]}") else UI.("Wait for AVD launch params was turned off. Skipping...".yellow) param_launch_complete = true end else UI.("Wait for ADB boot failed".yellow) end all_avd_launched = adb_launch_complete && param_launch_complete # Deciding if AVD launch should be restarted devices_output = Action.sh(adb_controller.command_get_devices) devices = "" devices_output.each_line do |line| if line.include?("emulator-") devices += line.sub(/\t/, " ") end end if all_avd_launched UI.("AVDs Booted!".green) if params[:logcat] for i in 0...avd_schemes.length device = ["emulator-", avd_schemes[i].launch_avd_port].join('') cmd = [adb_controller.adb_path, '-s', device, 'logcat -c'].join(' ') Action.sh(cmd) unless devices.match(device).nil? end end else for i in 0...avd_schemes.length if params[:verbose] # Display AVD output if (File.exist?(avd_controllers[i].output_file.path)) UI.(["Displaying log for AVD:", avd_schemes[i].avd_name].join(" ").red) UI.(avd_controllers[i].output_file.read.blue) end end # Killing devices unless devices.match(["emulator-", avd_schemes[i].launch_avd_port].join("")).nil? Action.sh(avd_controllers[i].command_kill_device) end end end end # Launching tests shell_task = "#{params[:shell_task]}" unless params[:shell_task].nil? gradle_task = "#{params[:gradle_task]}" unless params[:gradle_task].nil? lane_task = params[:lane] unless params[:lane].nil? UI.("Starting tests".green) begin unless lane_task.nil? UI.("Using lane task.".green) Fastlane::LaneManager.cruise_lane(params[:lane_platform], lane_task, params[:lane_options]) end unless shell_task.nil? UI.("Using shell task.".green) Action.sh(shell_task) end unless gradle_task.nil? gradle = Helper::GradleHelper.new(gradle_path: Dir["./gradlew"].last) UI.("Using gradle task.".green) gradle.trigger(task: params[:gradle_task], flags: params[:gradle_flags], serial: nil) end ensure # Clean up for i in 0...avd_schemes.length # Kill all emulators device = ["emulator-", avd_schemes[i].launch_avd_port].join("") unless devices.match(device).nil? if params[:logcat] file = [device, '.log'].join('') cmd = [adb_controller.adb_path, '-s', device, 'logcat -d >', file].join(' ') Action.sh(cmd) end Action.sh(avd_controllers[i].command_kill_device) end if params[:verbose] # Display AVD output if (File.exist?(avd_controllers[i].output_file.path)) UI.("Displaying log from AVD to console:".green) UI.(avd_controllers[i].output_file.read.blue) UI.("Removing temp file.".green) avd_controllers[i].output_file.close avd_controllers[i].output_file.unlink end end # Delete AVDs if params[:AVD_clean_after] UI.("AVD_clean_after param set to true. Deleting AVDs.".green) Action.sh(avd_controllers[i].command_delete_avd) else UI.("AVD_clean_after param set to false. Created AVDs won't be deleted.".green) end end end end |
.wait_for_emulator_boot_by_adb(adb_controller, avd_schemes, timeout) ⇒ Object
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 |
# File 'lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb', line 247 def self.wait_for_emulator_boot_by_adb(adb_controller, avd_schemes, timeout) timeoutInSeconds= timeout.to_i interval = 1000 * 10 startTime = Time.now lastCheckTime = Time.now launch_status_hash = Hash.new device_visibility_hash = Hash.new for i in 0...avd_schemes.length device_name = ["emulator-", avd_schemes[i].launch_avd_port].join("") launch_status_hash.store(device_name, false) device_visibility_hash.store(device_name, false) end launch_status = false loop do currentTime = Time.now if ((currentTime - lastCheckTime) * 1000) > interval lastCheckTime = currentTime devices_output = Action.sh(adb_controller.command_get_devices) devices = "" devices_output.each_line do |line| if line.include?("emulator-") devices += line.sub(/\t/, " ") end end # Check if device is visible all_devices_visible = true device_visibility_hash.each do |name, is_visible| unless (devices.match(name).nil? || is_visible) device_visibility_hash[name] = true end all_devices_visible = false unless is_visible end # Check if device is booted all_devices_booted = true launch_status_hash.each do |name, is_booted| unless (devices.match(name + " device").nil? || is_booted) launch_status_hash[name] = true end all_devices_booted = false unless launch_status_hash[name] end # Quit if timeout reached if ((currentTime - startTime) >= timeoutInSeconds) UI.(["AVD ADB loading took more than ", timeout, ". Attempting to re-launch."].join("").red) launch_status = false break end # Quit if all devices booted if (all_devices_booted && all_devices_visible) launch_status = true break end end end return launch_status end |
.wait_for_emulator_boot_by_params(params, adb_controller, avd_controllers, avd_schemes, timeout) ⇒ Object
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
# File 'lib/fastlane/plugin/automated_test_emulator_run/actions/automated_test_emulator_run_action.rb', line 310 def self.wait_for_emulator_boot_by_params(params, adb_controller, avd_controllers, avd_schemes, timeout) timeout_in_seconds= timeout.to_i interval = 1000 * 10 all_params_launched = false start_time = last_scan_ended = Time.now device_boot_statuses = Hash.new loop do current_time = Time.now # Performing single scan over each device if (((current_time - last_scan_ended) * 1000) >= interval || start_time == last_scan_ended) for i in 0...avd_schemes.length avd_schema = avd_schemes[i] avd_controller = avd_controllers[i] avd_param_boot_hash = Hash.new avd_param_status_hash = Hash.new avd_booted = false # Retreiving device parameters according to config if params[:AVD_wait_for_bootcomplete] dev_bootcomplete, _stdeerr, _status = Open3.capture3([avd_controller.command_get_property, "dev.bootcomplete"].join(" ")) avd_param_boot_hash.store("dev.bootcomplete", dev_bootcomplete.strip.eql?("1")) avd_param_status_hash.store("dev.bootcomplete", dev_bootcomplete) end if params[:AVD_wait_for_boot_completed] sys_boot_completed, _stdeerr, _status = Open3.capture3([avd_controller.command_get_property, "sys.boot_completed"].join(" ")) avd_param_boot_hash.store("sys.boot_completed", sys_boot_completed.strip.eql?("1")) avd_param_status_hash.store("sys.boot_completed", sys_boot_completed) end if params[:AVD_wait_for_bootanim] bootanim, _stdeerr, _status = Open3.capture3([avd_controller.command_get_property, "init.svc.bootanim"].join(" ")) avd_param_boot_hash.store("init.svc.bootanim", bootanim.strip.eql?("stopped")) avd_param_status_hash.store("init.svc.bootanim", bootanim) end # Checking for param statuses avd_param_boot_hash.each do |name, is_booted| if !is_booted break end avd_booted = true end device_boot_statuses.store(avd_schema.avd_name, avd_booted) # Plotting current wait results device_log = "Device 'emulator-" + avd_schemes[i].launch_avd_port.to_s + "' launch status:" UI.(device_log.magenta) avd_param_boot_hash.each do |name, is_booted| device_log = "'" + name + "' - '" + avd_param_status_hash[name].strip + "' (launched: " + is_booted.to_s + ")" UI.(device_log.magenta) end end last_scan_ended = Time.now end # Checking if wait doesn't last too long if (current_time - start_time) >= timeout_in_seconds UI.(["AVD param loading took more than ", timeout, ". Attempting to re-launch."].join("").red) all_params_launched = false break end # Finishing wait with success if all params are loaded for every device if device_boot_statuses.all? { |name, is_booted| is_booted } all_params_launched = true sleep(10) end if all_params_launched break end end return all_params_launched end |