google-apis-testing_v1 0.36.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
@@ -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
|
@@ -2494,8 +2526,8 @@ module Google
|
|
2494
2526
|
# @return [Google::Apis::TestingV1::Account]
|
2495
2527
|
attr_accessor :account
|
2496
2528
|
|
2497
|
-
# APKs to install in addition to those being directly tested.
|
2498
|
-
# 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.
|
2499
2531
|
# Corresponds to the JSON property `additionalApks`
|
2500
2532
|
# @return [Array<Google::Apis::TestingV1::Apk>]
|
2501
2533
|
attr_accessor :additional_apks
|
@@ -2597,6 +2629,11 @@ module Google
|
|
2597
2629
|
attr_accessor :disable_video_recording
|
2598
2630
|
alias_method :disable_video_recording?, :disable_video_recording
|
2599
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
|
+
|
2600
2637
|
# A test of an iOS application that implements one or more game loop scenarios.
|
2601
2638
|
# This test type accepts an archived application (.ipa file) and a list of
|
2602
2639
|
# integer scenarios that will be executed on the app sequentially.
|
@@ -2641,6 +2678,7 @@ module Google
|
|
2641
2678
|
@android_test_loop = args[:android_test_loop] if args.key?(:android_test_loop)
|
2642
2679
|
@disable_performance_metrics = args[:disable_performance_metrics] if args.key?(:disable_performance_metrics)
|
2643
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)
|
2644
2682
|
@ios_test_loop = args[:ios_test_loop] if args.key?(:ios_test_loop)
|
2645
2683
|
@ios_test_setup = args[:ios_test_setup] if args.key?(:ios_test_setup)
|
2646
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
|
|
@@ -875,6 +881,17 @@ module Google
|
|
875
881
|
end
|
876
882
|
end
|
877
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
|
+
|
878
895
|
class IosRuntimeConfiguration
|
879
896
|
# @private
|
880
897
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1229,6 +1246,8 @@ module Google
|
|
1229
1246
|
|
1230
1247
|
property :disable_performance_metrics, as: 'disablePerformanceMetrics'
|
1231
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
|
+
|
1232
1251
|
property :ios_test_loop, as: 'iosTestLoop', class: Google::Apis::TestingV1::IosTestLoop, decorator: Google::Apis::TestingV1::IosTestLoop::Representation
|
1233
1252
|
|
1234
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
|