google-apis-testing_v1 0.35.0 → 0.37.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 366e264387e55516cec777373b06ff4b3fe089667950d85ba867987ac4d6fb58
|
4
|
+
data.tar.gz: f635d7d9527eeb5dc8d29ca2e75f6b5faf4d3b576049d4af2acaa232eadcc05a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73e9cbf50273e1f3aae68efd29cf46d53dd1139a7a891215bef2dec54662ab18e986bfdc6a895573921ead208809fad2c1674e02bc75e96d908a6160a68a7b0b
|
7
|
+
data.tar.gz: 357158d04b62e1e752faad2c188ef0570e45904fada0118184dc96488c220490f8d44d2cd0a49c761bfb0637dff467d5596354152c6fefe32902cb81d9d55dbe
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-testing_v1
|
2
2
|
|
3
|
+
### v0.37.0 (2023-08-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230822
|
6
|
+
|
7
|
+
### v0.36.0 (2023-06-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230526
|
10
|
+
|
3
11
|
### v0.35.0 (2023-05-28)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230523
|
@@ -1391,6 +1391,38 @@ module Google
|
|
1391
1391
|
end
|
1392
1392
|
end
|
1393
1393
|
|
1394
|
+
# A test that explores an iOS application on an iOS device.
|
1395
|
+
class IosRoboTest
|
1396
|
+
include Google::Apis::Core::Hashable
|
1397
|
+
|
1398
|
+
# The bundle ID for the app-under-test. This is determined by examining the
|
1399
|
+
# application's "Info.plist" file.
|
1400
|
+
# Corresponds to the JSON property `appBundleId`
|
1401
|
+
# @return [String]
|
1402
|
+
attr_accessor :app_bundle_id
|
1403
|
+
|
1404
|
+
# A reference to a file, used for user inputs.
|
1405
|
+
# Corresponds to the JSON property `appIpa`
|
1406
|
+
# @return [Google::Apis::TestingV1::FileReference]
|
1407
|
+
attr_accessor :app_ipa
|
1408
|
+
|
1409
|
+
# A reference to a file, used for user inputs.
|
1410
|
+
# Corresponds to the JSON property `roboScript`
|
1411
|
+
# @return [Google::Apis::TestingV1::FileReference]
|
1412
|
+
attr_accessor :robo_script
|
1413
|
+
|
1414
|
+
def initialize(**args)
|
1415
|
+
update!(**args)
|
1416
|
+
end
|
1417
|
+
|
1418
|
+
# Update properties of this object
|
1419
|
+
def update!(**args)
|
1420
|
+
@app_bundle_id = args[:app_bundle_id] if args.key?(:app_bundle_id)
|
1421
|
+
@app_ipa = args[:app_ipa] if args.key?(:app_ipa)
|
1422
|
+
@robo_script = args[:robo_script] if args.key?(:robo_script)
|
1423
|
+
end
|
1424
|
+
end
|
1425
|
+
|
1394
1426
|
# iOS configuration that can be selected at the time a test is run.
|
1395
1427
|
class IosRuntimeConfiguration
|
1396
1428
|
include Google::Apis::Core::Hashable
|
@@ -1742,6 +1774,19 @@ module Google
|
|
1742
1774
|
end
|
1743
1775
|
end
|
1744
1776
|
|
1777
|
+
# Skips the starting activity
|
1778
|
+
class NoActivityIntent
|
1779
|
+
include Google::Apis::Core::Hashable
|
1780
|
+
|
1781
|
+
def initialize(**args)
|
1782
|
+
update!(**args)
|
1783
|
+
end
|
1784
|
+
|
1785
|
+
# Update properties of this object
|
1786
|
+
def update!(**args)
|
1787
|
+
end
|
1788
|
+
end
|
1789
|
+
|
1745
1790
|
# An opaque binary blob file to install on the device before the test starts.
|
1746
1791
|
class ObbFile
|
1747
1792
|
include Google::Apis::Core::Hashable
|
@@ -1998,6 +2043,11 @@ module Google
|
|
1998
2043
|
# @return [Google::Apis::TestingV1::LauncherActivityIntent]
|
1999
2044
|
attr_accessor :launcher_activity
|
2000
2045
|
|
2046
|
+
# Skips the starting activity
|
2047
|
+
# Corresponds to the JSON property `noActivity`
|
2048
|
+
# @return [Google::Apis::TestingV1::NoActivityIntent]
|
2049
|
+
attr_accessor :no_activity
|
2050
|
+
|
2001
2051
|
# A starting intent specified by an action, uri, and categories.
|
2002
2052
|
# Corresponds to the JSON property `startActivity`
|
2003
2053
|
# @return [Google::Apis::TestingV1::StartActivityIntent]
|
@@ -2015,6 +2065,7 @@ module Google
|
|
2015
2065
|
# Update properties of this object
|
2016
2066
|
def update!(**args)
|
2017
2067
|
@launcher_activity = args[:launcher_activity] if args.key?(:launcher_activity)
|
2068
|
+
@no_activity = args[:no_activity] if args.key?(:no_activity)
|
2018
2069
|
@start_activity = args[:start_activity] if args.key?(:start_activity)
|
2019
2070
|
@timeout = args[:timeout] if args.key?(:timeout)
|
2020
2071
|
end
|
@@ -2475,8 +2526,8 @@ module Google
|
|
2475
2526
|
# @return [Google::Apis::TestingV1::Account]
|
2476
2527
|
attr_accessor :account
|
2477
2528
|
|
2478
|
-
# APKs to install in addition to those being directly tested.
|
2479
|
-
# at 100.
|
2529
|
+
# APKs to install in addition to those being directly tested. These will be
|
2530
|
+
# installed after the app under test. Currently capped at 100.
|
2480
2531
|
# Corresponds to the JSON property `additionalApks`
|
2481
2532
|
# @return [Array<Google::Apis::TestingV1::Apk>]
|
2482
2533
|
attr_accessor :additional_apks
|
@@ -2578,6 +2629,11 @@ module Google
|
|
2578
2629
|
attr_accessor :disable_video_recording
|
2579
2630
|
alias_method :disable_video_recording?, :disable_video_recording
|
2580
2631
|
|
2632
|
+
# A test that explores an iOS application on an iOS device.
|
2633
|
+
# Corresponds to the JSON property `iosRoboTest`
|
2634
|
+
# @return [Google::Apis::TestingV1::IosRoboTest]
|
2635
|
+
attr_accessor :ios_robo_test
|
2636
|
+
|
2581
2637
|
# A test of an iOS application that implements one or more game loop scenarios.
|
2582
2638
|
# This test type accepts an archived application (.ipa file) and a list of
|
2583
2639
|
# integer scenarios that will be executed on the app sequentially.
|
@@ -2622,6 +2678,7 @@ module Google
|
|
2622
2678
|
@android_test_loop = args[:android_test_loop] if args.key?(:android_test_loop)
|
2623
2679
|
@disable_performance_metrics = args[:disable_performance_metrics] if args.key?(:disable_performance_metrics)
|
2624
2680
|
@disable_video_recording = args[:disable_video_recording] if args.key?(:disable_video_recording)
|
2681
|
+
@ios_robo_test = args[:ios_robo_test] if args.key?(:ios_robo_test)
|
2625
2682
|
@ios_test_loop = args[:ios_test_loop] if args.key?(:ios_test_loop)
|
2626
2683
|
@ios_test_setup = args[:ios_test_setup] if args.key?(:ios_test_setup)
|
2627
2684
|
@ios_xc_test = args[:ios_xc_test] if args.key?(:ios_xc_test)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TestingV1
|
18
18
|
# Version of the google-apis-testing_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230822"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -238,6 +238,12 @@ module Google
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
239
239
|
end
|
240
240
|
|
241
|
+
class IosRoboTest
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
241
247
|
class IosRuntimeConfiguration
|
242
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
249
|
|
@@ -304,6 +310,12 @@ module Google
|
|
304
310
|
include Google::Apis::Core::JsonObjectSupport
|
305
311
|
end
|
306
312
|
|
313
|
+
class NoActivityIntent
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
307
319
|
class ObbFile
|
308
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
321
|
|
@@ -869,6 +881,17 @@ module Google
|
|
869
881
|
end
|
870
882
|
end
|
871
883
|
|
884
|
+
class IosRoboTest
|
885
|
+
# @private
|
886
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
887
|
+
property :app_bundle_id, as: 'appBundleId'
|
888
|
+
property :app_ipa, as: 'appIpa', class: Google::Apis::TestingV1::FileReference, decorator: Google::Apis::TestingV1::FileReference::Representation
|
889
|
+
|
890
|
+
property :robo_script, as: 'roboScript', class: Google::Apis::TestingV1::FileReference, decorator: Google::Apis::TestingV1::FileReference::Representation
|
891
|
+
|
892
|
+
end
|
893
|
+
end
|
894
|
+
|
872
895
|
class IosRuntimeConfiguration
|
873
896
|
# @private
|
874
897
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -977,6 +1000,12 @@ module Google
|
|
977
1000
|
end
|
978
1001
|
end
|
979
1002
|
|
1003
|
+
class NoActivityIntent
|
1004
|
+
# @private
|
1005
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1006
|
+
end
|
1007
|
+
end
|
1008
|
+
|
980
1009
|
class ObbFile
|
981
1010
|
# @private
|
982
1011
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1055,6 +1084,8 @@ module Google
|
|
1055
1084
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1056
1085
|
property :launcher_activity, as: 'launcherActivity', class: Google::Apis::TestingV1::LauncherActivityIntent, decorator: Google::Apis::TestingV1::LauncherActivityIntent::Representation
|
1057
1086
|
|
1087
|
+
property :no_activity, as: 'noActivity', class: Google::Apis::TestingV1::NoActivityIntent, decorator: Google::Apis::TestingV1::NoActivityIntent::Representation
|
1088
|
+
|
1058
1089
|
property :start_activity, as: 'startActivity', class: Google::Apis::TestingV1::StartActivityIntent, decorator: Google::Apis::TestingV1::StartActivityIntent::Representation
|
1059
1090
|
|
1060
1091
|
property :timeout, as: 'timeout'
|
@@ -1215,6 +1246,8 @@ module Google
|
|
1215
1246
|
|
1216
1247
|
property :disable_performance_metrics, as: 'disablePerformanceMetrics'
|
1217
1248
|
property :disable_video_recording, as: 'disableVideoRecording'
|
1249
|
+
property :ios_robo_test, as: 'iosRoboTest', class: Google::Apis::TestingV1::IosRoboTest, decorator: Google::Apis::TestingV1::IosRoboTest::Representation
|
1250
|
+
|
1218
1251
|
property :ios_test_loop, as: 'iosTestLoop', class: Google::Apis::TestingV1::IosTestLoop, decorator: Google::Apis::TestingV1::IosTestLoop::Representation
|
1219
1252
|
|
1220
1253
|
property :ios_test_setup, as: 'iosTestSetup', class: Google::Apis::TestingV1::IosTestSetup, decorator: Google::Apis::TestingV1::IosTestSetup::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-testing_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.37.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-testing_v1/v0.37.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-testing_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.4.
|
78
|
+
rubygems_version: 3.4.19
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Testing API V1
|