Class: Screengrab::Options
- Inherits:
-
Object
- Object
- Screengrab::Options
- Defined in:
- screengrab/lib/screengrab/options.rb
Constant Summary collapse
- DEVICE_TYPES =
["phone", "sevenInch", "tenInch", "tv", "wear"].freeze
- DEFAULT_SKIP_OPEN_SUMMARY =
Temporarily make non-Mac environments default to skipping the open summary step until we make it cross-platform
!FastlaneCore::Helper.mac?
Class Method Summary collapse
Class Method Details
.available_options ⇒ Object
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 |
# File 'screengrab/lib/screengrab/options.rb', line 13 def self. @options ||= [ FastlaneCore::ConfigItem.new(key: :android_home, short_option: "-n", optional: true, code_gen_sensitive: true, default_value: ENV['ANDROID_HOME'] || ENV['ANDROID_SDK_ROOT'] || ENV['ANDROID_SDK'], default_value_dynamic: true, description: "Path to the root of your Android SDK installation, e.g. ~/tools/android-sdk-macosx"), FastlaneCore::ConfigItem.new(key: :build_tools_version, short_option: "-i", optional: true, description: "The Android build tools version to use, e.g. '23.0.2'"), FastlaneCore::ConfigItem.new(key: :locales, description: "A list of locales which should be used", short_option: "-q", type: Array, default_value: ['en-US']), FastlaneCore::ConfigItem.new(key: :clear_previous_screenshots, env_name: 'SCREENGRAB_CLEAR_PREVIOUS_SCREENSHOTS', description: "Enabling this option will automatically clear previously generated screenshots before running screengrab", default_value: false, is_string: false), FastlaneCore::ConfigItem.new(key: :output_directory, short_option: "-o", env_name: "SCREENGRAB_OUTPUT_DIRECTORY", description: "The directory where to store the screenshots", default_value: File.join("fastlane", "metadata", "android")), FastlaneCore::ConfigItem.new(key: :skip_open_summary, env_name: 'SCREENGRAB_SKIP_OPEN_SUMMARY', description: "Don't open the summary after running _screengrab_", default_value: DEFAULT_SKIP_OPEN_SUMMARY, default_value_dynamic: true, is_string: false), FastlaneCore::ConfigItem.new(key: :app_package_name, env_name: 'SCREENGRAB_APP_PACKAGE_NAME', short_option: "-a", description: "The package name of the app under test (e.g. com.yourcompany.yourapp)", code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:package_name), default_value_dynamic: true), FastlaneCore::ConfigItem.new(key: :tests_package_name, env_name: 'SCREENGRAB_TESTS_PACKAGE_NAME', optional: true, description: "The package name of the tests bundle (e.g. com.yourcompany.yourapp.test)"), FastlaneCore::ConfigItem.new(key: :use_tests_in_packages, env_name: 'SCREENGRAB_USE_TESTS_IN_PACKAGES', optional: true, short_option: "-p", type: Array, description: "Only run tests in these Java packages"), FastlaneCore::ConfigItem.new(key: :use_tests_in_classes, env_name: 'SCREENGRAB_USE_TESTS_IN_CLASSES', optional: true, short_option: "-l", type: Array, description: "Only run tests in these Java classes"), FastlaneCore::ConfigItem.new(key: :launch_arguments, env_name: 'SCREENGRAB_LAUNCH_ARGUMENTS', optional: true, short_option: "-e", type: Array, description: "Additional launch arguments"), FastlaneCore::ConfigItem.new(key: :test_instrumentation_runner, env_name: 'SCREENGRAB_TEST_INSTRUMENTATION_RUNNER', optional: true, default_value: 'android.support.test.runner.AndroidJUnitRunner', description: "The fully qualified class name of your test instrumentation runner"), FastlaneCore::ConfigItem.new(key: :ending_locale, env_name: 'SCREENGRAB_ENDING_LOCALE', optional: true, is_string: true, default_value: 'en-US', description: "Return the device to this locale after running tests"), FastlaneCore::ConfigItem.new(key: :app_apk_path, env_name: 'SCREENGRAB_APP_APK_PATH', optional: true, description: "The path to the APK for the app under test", short_option: "-k", code_gen_sensitive: true, default_value: Dir[File.join("app", "build", "outputs", "apk", "app-debug.apk")].last, default_value_dynamic: true, verify_block: proc do |value| UI.user_error!("Could not find APK file at path '#{value}'") unless File.exist?(value) end), FastlaneCore::ConfigItem.new(key: :tests_apk_path, env_name: 'SCREENGRAB_TESTS_APK_PATH', optional: true, description: "The path to the APK for the the tests bundle", short_option: "-b", code_gen_sensitive: true, default_value: Dir[File.join("app", "build", "outputs", "apk", "app-debug-androidTest-unaligned.apk")].last, default_value_dynamic: true, verify_block: proc do |value| UI.user_error!("Could not find APK file at path '#{value}'") unless File.exist?(value) end), FastlaneCore::ConfigItem.new(key: :specific_device, env_name: 'SCREENGRAB_SPECIFIC_DEVICE', optional: true, description: "Use the device or emulator with the given serial number or qualifier", short_option: "-s"), FastlaneCore::ConfigItem.new(key: :device_type, env_name: 'SCREENGRAB_DEVICE_TYPE', description: "Type of device used for screenshots. Matches Google Play Types (phone, sevenInch, tenInch, tv, wear)", short_option: "-d", default_value: "phone", verify_block: proc do |value| UI.user_error!("device_type must be one of: #{DEVICE_TYPES}") unless DEVICE_TYPES.include?(value) end), FastlaneCore::ConfigItem.new(key: :exit_on_test_failure, env_name: 'EXIT_ON_TEST_FAILURE', description: "Whether or not to exit Screengrab on test failure. Exiting on failure will not copy sceenshots to local machine nor open sceenshots summary", default_value: true, is_string: false), FastlaneCore::ConfigItem.new(key: :reinstall_app, env_name: 'SCREENGRAB_REINSTALL_APP', description: "Enabling this option will automatically uninstall the application before running it", default_value: false, is_string: false) ] end |