fastlane-plugin-android_testlab_script_swit 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 544c96a23ea810aac737ecc922a626b5502e1932268c9efbb4aec58c12f40b9b
4
+ data.tar.gz: 52990223d6f31acf67041c4d44d4001d23b5d652b8ea0a2a03a560e990f04635
5
+ SHA512:
6
+ metadata.gz: 1aa78e6af867191f619ed47a4ad5c0f4797a5d4c5928aca118463edf43a16681282d9c83e322926e836c57b4935a1b9dde8de62ece5420849343795d3fa74513
7
+ data.tar.gz: ef6c7314c32232b8a5b0696c0d31e64afd63a96d4ebacdbd90e9b6550b12b9cb89e419633a3bb1e72f12e145b6f57d44a4b0cc40252618e5c02284bf6d6582bc
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 나비이쁜이 <munkijung1992@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # android_testlab_script_swit plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-android_testlab_script_swit)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-android_testlab_script_swit`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin android_testlab_script_swit
11
+ ```
12
+
13
+ ## About android_testlab_script_swit
14
+
15
+ short
16
+
17
+ **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
18
+
19
+ ## Example
20
+
21
+ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
+
23
+ **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
+
25
+ ## Run tests for this plugin
26
+
27
+ To run both the tests, and code style validation, run
28
+
29
+ ```
30
+ rake
31
+ ```
32
+
33
+ To automatically fix many of the styling issues, use
34
+ ```
35
+ rubocop -a
36
+ ```
37
+
38
+ ## Issues and Feedback
39
+
40
+ For any other issues and feedback about this plugin, please submit it to this repository.
41
+
42
+ ## Troubleshooting
43
+
44
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
45
+
46
+ ## Using _fastlane_ Plugins
47
+
48
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
49
+
50
+ ## About _fastlane_
51
+
52
+ _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
@@ -0,0 +1,255 @@
1
+ require 'fastlane/action'
2
+ require 'json'
3
+ require 'fileutils'
4
+
5
+ require_relative '../helper/firebase_testlab_with_script_android_helper'
6
+
7
+ module Fastlane
8
+ module Actions
9
+ class FirebaseTestlabWithScriptAndroidAction < Action
10
+
11
+ # actions run
12
+ def self.run(params)
13
+ UI.message("Start Action")
14
+
15
+ results_bucket = params[:firebase_test_lab_results_bucket] || "#{params[:project_id]}_test_results"
16
+ results_dir = params[:firebase_test_lab_results_dir] || "firebase_test_result_#{DateTime.now.strftime('%Y-%m-%d-%H:%M:%S')}"
17
+
18
+ # Set target project
19
+ Helper.config(params[:project_id])
20
+
21
+ # Activate service account
22
+ Helper.authenticate(params[:gcloud_service_key_file])
23
+
24
+ # RoboScriptOption Add
25
+ robo_script_option = params[:robo_script_path].nil? ? "" : "--robo-script #{params[:robo_script_path]} "
26
+
27
+ # Run Firebase Test Lab
28
+ Helper.run_tests(params[:gcloud_components_channel], "--type #{params[:type]} "\
29
+ "--app #{params[:app_apk]} "\
30
+ "#{"--test #{params[:app_test_apk]} " unless params[:app_test_apk].nil?}"\
31
+ "#{"--use-orchestrator " if params[:type] == "instrumentation" && params[:use_orchestrator]}"\
32
+ "#{params[:devices].map { |d| "--device model=#{d[:model]},version=#{d[:version]},locale=#{d[:locale]},orientation=#{d[:orientation]} " }.join}"\
33
+ "--timeout #{params[:timeout]} "\
34
+ "--results-bucket #{results_bucket} "\
35
+ "--results-dir #{results_dir} "\
36
+ "#{params[:extra_options]} "\
37
+ "#{robo_script_option}"\
38
+ "--format=json 1>#{Helper.if_need_dir(params[:console_log_file_name])}"
39
+ )
40
+
41
+ json = JSON.parse(File.read(params[:console_log_file_name]))
42
+ UI.message("Test status: #{json}")
43
+
44
+ # Fetch results
45
+ download_dir = params[:download_dir]
46
+ if download_dir
47
+ UI.message("Fetch results from Firebase Test Lab results bucket")
48
+ json.each do |status|
49
+ axis = status["axis_value"]
50
+ Helper.if_need_dir("#{download_dir}/#{axis}")
51
+ Helper.copy_from_gcs("#{results_bucket}/#{results_dir}/#{axis}", download_dir)
52
+ Helper.set_public("#{results_bucket}/#{results_dir}/#{axis}")
53
+ end
54
+ end
55
+
56
+ UI.message("Finish Action")
57
+ end
58
+
59
+ # Short Detils
60
+ def self.description
61
+ "Android Firebase TestLab with Robo Script Test"
62
+ end
63
+
64
+ # Authors
65
+ def self.authors
66
+ ["나비이쁜이"]
67
+ end
68
+
69
+ def self.return_value
70
+ ["Authenticates with Google Cloud.",
71
+ "Runs tests in Firebase Test Lab.",
72
+ "Fetches the results to a local directory."].join("\n")
73
+ end
74
+
75
+ # Long Detils
76
+ def self.details
77
+ "This plug-in uses Firebase TestLab. You can also include RoboScript files."
78
+ end
79
+
80
+ # Option val
81
+ def self.available_options
82
+ [
83
+ # project_id (true)
84
+ FastlaneCore::ConfigItem.new(key: :project_id,
85
+ env_name: "PROJECT_ID",
86
+ description: "Your Firebase project id",
87
+ is_string: true,
88
+ optional: false),
89
+
90
+ # gcloud_key_file (true)
91
+ FastlaneCore::ConfigItem.new(key: :gcloud_key_file,
92
+ env_name: "GCLOUD_SERVICE_KEY_FILE",
93
+ description: "File path containing the gcloud auth key. Default: Created from GCLOUD_SERVICE_KEY environment variable",
94
+ is_string: true,
95
+ optional: false),
96
+
97
+ # test type (true)
98
+ FastlaneCore::ConfigItem.new(key: :type,
99
+ env_name: "TYPE",
100
+ description: "Test type. Default: robo (robo/instrumentation)",
101
+ is_string: true,
102
+ optional: true,
103
+ default_value: "robo",
104
+ verify_block: proc do |value|
105
+ if value != "robo" && value != "instrumentation"
106
+ UI.user_error!("Unknown test type.")
107
+ end
108
+ end),
109
+
110
+ # device (true)
111
+ FastlaneCore::ConfigItem.new(key: :devices,
112
+ description: "Devices to test the app on",
113
+ type: Array,
114
+ default_value: [{
115
+ model: "Nexus6",
116
+ version: "21",
117
+ locale: "en_US",
118
+ orientation: "portrait"
119
+ }],
120
+ verify_block: proc do |value|
121
+ if value.empty?
122
+ UI.user_error!("Devices cannot be empty")
123
+ end
124
+ value.each do |current|
125
+ if current.class != Hash
126
+ UI.user_error!("Each device must be represented by a Hash object, " \
127
+ "#{current.class} found")
128
+ end
129
+ check_has_property(current, :model)
130
+ check_has_property(current, :version)
131
+ set_default_property(current, :locale, "en_US")
132
+ set_default_property(current, :orientation, "portrait")
133
+ end
134
+ end),
135
+
136
+ # timeout (ture)
137
+ FastlaneCore::ConfigItem.new(key: :timeout,
138
+ env_name: "TIMEOUT",
139
+ description: "The max time this test execution can run before it is cancelled. Default: 5m (this value must be greater than or equal to 1m)",
140
+ type: String,
141
+ optional: false,
142
+ default_value: "3m"),
143
+
144
+ # apk (true)
145
+ FastlaneCore::ConfigItem.new(key: :app_apk,
146
+ env_name: "APP_APK",
147
+ description: "The path for your android app apk",
148
+ type: String,
149
+ optional: false),
150
+
151
+ # test apk (false)
152
+ FastlaneCore::ConfigItem.new(key: :app_test_apk,
153
+ env_name: "APP_TEST_APK",
154
+ description: "The path for your android test apk. Default: empty string",
155
+ type: String,
156
+ optional: true,
157
+ default_value: nil),
158
+
159
+ # orchestrator (false)
160
+ FastlaneCore::ConfigItem.new(key: :use_orchestrator,
161
+ env_name: "USE_ORCHESTRATOR",
162
+ description: "If you use orchestrator when set instrumentation test. Default: false",
163
+ type: Boolean,
164
+ optional: true,
165
+ default_value: false),
166
+
167
+ # gcloud_components_channel (false)
168
+ FastlaneCore::ConfigItem.new(key: :gcloud_components_channel,
169
+ env_name: "gcloud_components_channel",
170
+ description: "If you use beta or alpha components. Default stable (alpha/beta)",
171
+ is_string: true,
172
+ optional: true,
173
+ default_value: "stable",
174
+ verify_block: proc do |value|
175
+ if value != "stable" && value != "alpha" && value != "beta"
176
+ UI.user_error!("Unknown gcloud component channel.")
177
+ end
178
+ end),
179
+
180
+ # console_log_file_name (false)
181
+ FastlaneCore::ConfigItem.new(key: :console_log_file_name,
182
+ env_name: "CONSOLE_LOG_FILE_NAME",
183
+ description: "The filename to save the output results. Default: ./console_output.log",
184
+ type: String,
185
+ optional: true,
186
+ default_value: "./console_output.log"),
187
+
188
+ # extra_options (false)
189
+ FastlaneCore::ConfigItem.new(key: :extra_options,
190
+ env_name: "EXTRA_OPTIONS",
191
+ description: "Extra options that you need to pass to the gcloud command. Default: empty string",
192
+ type: String,
193
+ optional: true,
194
+ default_value: ""),
195
+
196
+ # firebase_test_lab_results_bucket (false)
197
+ FastlaneCore::ConfigItem.new(key: :firebase_test_lab_results_bucket,
198
+ env_name: "FIREBASE_TEST_LAB_RESULTS_BUCKET",
199
+ description: "Name of Firebase Test Lab results bucket",
200
+ type: String,
201
+ optional: true,
202
+ default_value: nil),
203
+
204
+ # firebase_test_lab_results_dir (false)
205
+ FastlaneCore::ConfigItem.new(key: :firebase_test_lab_results_dir,
206
+ env_name: "FIREBASE_TEST_LAB_RESULTS_DIR",
207
+ description: "Name of Firebase Test Lab results directory",
208
+ type: String,
209
+ optional: true,
210
+ default_value: nil),
211
+
212
+ # download_dir (false)
213
+ FastlaneCore::ConfigItem.new(key: :download_dir,
214
+ env_name: "DOWNLOAD_DIR",
215
+ description: "Target directory to download screenshots from firebase",
216
+ type: String,
217
+ optional: true,
218
+ default_value: nil),
219
+
220
+ # robo_script_path (false)
221
+ FastlaneCore::ConfigItem.new(key: :robo_script_path,
222
+ env_name: "ROBO_SCRIPT_PATH",
223
+ description: "Path to Robo script JSON file",
224
+ is_string: true,
225
+ optional: true,
226
+ verify_block: proc do |value|
227
+ UI.user_error!("Couldn't find JSON file at path '#{value}'") unless File.exist?(value) end)
228
+ end
229
+
230
+ def self.check_has_property(hash_obj, property)
231
+ UI.user_error!("Each device must have #{property} property") unless hash_obj.key?(property)
232
+ end
233
+
234
+ def self.set_default_property(hash_obj, property, default)
235
+ unless hash_obj.key?(property)
236
+ hash_obj[property] = default
237
+ end
238
+ end
239
+
240
+ # android platform
241
+ def self.is_supported?(platform)
242
+ platform == :android
243
+ end
244
+
245
+ def self.output
246
+ [['console_output.log', 'A console log when running Firebase Test Lab with gcloud']]
247
+ end
248
+
249
+ def self.example_code
250
+
251
+ end
252
+
253
+ end
254
+ end
255
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane_core/ui/ui'
2
+
3
+ module Fastlane
4
+ UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
5
+
6
+ module Helper
7
+ class AndroidTestlabScriptSwitHelper
8
+ # class methods that you define here become available in your action
9
+ # as `Helper::AndroidTestlabScriptSwitHelper.your_method`
10
+ #
11
+ def self.show_message
12
+ UI.message("Hello from the android_testlab_script_swit plugin helper!")
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module AndroidTestlabScriptSwit
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/android_testlab_script_swit/version'
2
+
3
+ module Fastlane
4
+ module AndroidTestlabScriptSwit
5
+ # Return all .rb files inside the "actions" and "helper" directory
6
+ def self.all_classes
7
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
+ end
9
+ end
10
+ end
11
+
12
+ # By default we want to import all available actions and helpers
13
+ # A plugin can contain any number of actions and plugins
14
+ Fastlane::AndroidTestlabScriptSwit.all_classes.each do |current|
15
+ require current
16
+ end
metadata ADDED
@@ -0,0 +1,188 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-android_testlab_script_swit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - 나비이쁜이
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-08-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: fastlane
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 2.214.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.214.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec_junit_formatter
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '='
102
+ - !ruby/object:Gem::Version
103
+ version: 1.12.1
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 1.12.1
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop-performance
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rubocop-require_tools
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: simplecov
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ description:
154
+ email: munkijung1992@gmail.com
155
+ executables: []
156
+ extensions: []
157
+ extra_rdoc_files: []
158
+ files:
159
+ - LICENSE
160
+ - README.md
161
+ - lib/fastlane/plugin/android_testlab_script_swit.rb
162
+ - lib/fastlane/plugin/android_testlab_script_swit/actions/android_testlab_script_swit_action.rb
163
+ - lib/fastlane/plugin/android_testlab_script_swit/helper/android_testlab_script_swit_helper.rb
164
+ - lib/fastlane/plugin/android_testlab_script_swit/version.rb
165
+ homepage: https://github.com/munki1992/android_testlab_script_swit
166
+ licenses:
167
+ - MIT
168
+ metadata: {}
169
+ post_install_message:
170
+ rdoc_options: []
171
+ require_paths:
172
+ - lib
173
+ required_ruby_version: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ version: '2.6'
178
+ required_rubygems_version: !ruby/object:Gem::Requirement
179
+ requirements:
180
+ - - ">="
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ requirements: []
184
+ rubygems_version: 3.4.10
185
+ signing_key:
186
+ specification_version: 4
187
+ summary: short
188
+ test_files: []