fastlane-plugin-firebase_app_distribution 0.9.0.pre.1 → 0.9.0.pre.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8db732cbcfd1540ca1762091006f5699b0f95c7daadf8a61e8d23b829a4f7203
|
4
|
+
data.tar.gz: fcbf5d87251a00ed68b3185871cc4999813e84bcd57540d5627633075a1658af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca7ea18c1b4aeb7629e5fead3b71688a07cc856d21cfaa6eaac2439ff10b6d2109cc2f2bc22e376122448f652e7c2507619c06f815aabfc65a1e1c52f3db042f
|
7
|
+
data.tar.gz: 67411b623cfd368c0105409ba63b33d18d4e77ba78cd5248d8b39187774343e39237f780a4ddcee27ed446cdb588f273dc4f99caaf49c3f170b4b7c94e36a024
|
data/lib/fastlane/plugin/firebase_app_distribution/actions/firebase_app_distribution_action.rb
CHANGED
@@ -22,7 +22,7 @@ module Fastlane
|
|
22
22
|
DEFAULT_UPLOAD_TIMEOUT_SECONDS = 300
|
23
23
|
UPLOAD_MAX_POLLING_RETRIES = 60
|
24
24
|
UPLOAD_POLLING_INTERVAL_SECONDS = 5
|
25
|
-
TEST_MAX_POLLING_RETRIES =
|
25
|
+
TEST_MAX_POLLING_RETRIES = 40
|
26
26
|
TEST_POLLING_INTERVAL_SECONDS = 30
|
27
27
|
|
28
28
|
def self.run(params)
|
@@ -87,7 +87,7 @@ module Fastlane
|
|
87
87
|
test_devices =
|
88
88
|
get_value_from_value_or_file(params[:test_devices], params[:test_devices_file])
|
89
89
|
if present?(test_devices)
|
90
|
-
UI.message("🤖 Starting automated tests.")
|
90
|
+
UI.message("🤖 Starting automated tests. Note: This feature is in beta.")
|
91
91
|
release_test = test_release(alpha_client, release, test_devices, params[:test_username], params[:test_password], params[:test_username_resource], params[:test_password_resource])
|
92
92
|
unless params[:test_async]
|
93
93
|
poll_test_finished(alpha_client, release_test.name)
|
@@ -386,7 +386,7 @@ module Fastlane
|
|
386
386
|
|
387
387
|
def self.poll_test_finished(alpha_client, release_test_name)
|
388
388
|
TEST_MAX_POLLING_RETRIES.times do
|
389
|
-
UI.message("⏳
|
389
|
+
UI.message("⏳ The automated test results are pending.")
|
390
390
|
sleep(TEST_POLLING_INTERVAL_SECONDS)
|
391
391
|
release_test = alpha_client.get_project_app_release_test(release_test_name)
|
392
392
|
if release_test.device_executions.all? { |e| e.state == 'PASSED' }
|
@@ -406,7 +406,7 @@ module Fastlane
|
|
406
406
|
end
|
407
407
|
end
|
408
408
|
end
|
409
|
-
UI.test_failure!("
|
409
|
+
UI.test_failure!("It took longer than expected to process your test, please try again.")
|
410
410
|
end
|
411
411
|
|
412
412
|
def self.parse_test_device_string(td_string)
|
@@ -513,12 +513,12 @@ module Fastlane
|
|
513
513
|
# Release Testing
|
514
514
|
FastlaneCore::ConfigItem.new(key: :test_devices,
|
515
515
|
env_name: "FIREBASEAPPDISTRO_TEST_DEVICES",
|
516
|
-
description: "List of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices",
|
516
|
+
description: "List of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices. Note: This feature is in beta.",
|
517
517
|
optional: true,
|
518
518
|
type: String),
|
519
519
|
FastlaneCore::ConfigItem.new(key: :test_devices_file,
|
520
520
|
env_name: "FIREBASEAPPDISTRO_TEST_DEVICES_FILE",
|
521
|
-
description: "Path to file containing a list of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices",
|
521
|
+
description: "Path to file containing a list of devices to run automated tests on, in the format 'model=<model-id>,version=<os-version-id>,locale=<locale>,orientation=<orientation>;model=<model-id>,...'. Run 'gcloud firebase test android|ios models list' to see available devices. Note: This feature is in beta.",
|
522
522
|
optional: true,
|
523
523
|
type: String),
|
524
524
|
FastlaneCore::ConfigItem.new(key: :test_username,
|
@@ -530,15 +530,15 @@ module Fastlane
|
|
530
530
|
optional: true,
|
531
531
|
type: String),
|
532
532
|
FastlaneCore::ConfigItem.new(key: :test_username_resource,
|
533
|
-
description: "Resource name
|
533
|
+
description: "Resource name for the username field for automatic login",
|
534
534
|
optional: true,
|
535
535
|
type: String),
|
536
536
|
FastlaneCore::ConfigItem.new(key: :test_password_resource,
|
537
|
-
description: "Resource name
|
537
|
+
description: "Resource name for the password field for automatic login",
|
538
538
|
optional: true,
|
539
539
|
type: String),
|
540
540
|
FastlaneCore::ConfigItem.new(key: :test_async,
|
541
|
-
description: "
|
541
|
+
description: "Run tests asynchronously. Visit the Firebase console for the automatic test results.",
|
542
542
|
optional: false,
|
543
543
|
default_value: false,
|
544
544
|
type: Boolean),
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-firebase_app_distribution
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.0.pre.
|
4
|
+
version: 0.9.0.pre.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stefan Natchev
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-01-
|
13
|
+
date: 2024-01-31 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: google-apis-firebaseappdistribution_v1
|