SematextCloud 0.1.4 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +3 -1
- data/Gemfile.lock +70 -0
- data/README.md +76 -65
- data/SematextCloud.gemspec +0 -6
- data/docs/AlertNotification.md +12 -0
- data/docs/AlertNotificationRequest.md +7 -7
- data/docs/AlertNotificationsApi.md +33 -37
- data/docs/AlertRule.md +51 -51
- data/docs/AlertRuleResponse.md +9 -0
- data/docs/AlertRuleResponseEntry.md +6 -0
- data/docs/AlertRuleScheduleTimeRangeDto.md +5 -5
- data/docs/AlertRuleScheduleWeekdayDto.md +8 -8
- data/docs/AlertRulesResponse.md +9 -0
- data/docs/AlertRulesResponseEntry.md +6 -0
- data/docs/AlertsApi.md +60 -66
- data/docs/App.md +35 -30
- data/docs/AppDescription.md +4 -4
- data/docs/AppMetadata.md +8 -8
- data/docs/AppResponse.md +9 -0
- data/docs/AppResponseEntry.md +6 -0
- data/docs/AppTypesResponse.md +9 -0
- data/docs/AppTypesResponseEntry.md +6 -0
- data/docs/AppsApi.md +135 -90
- data/docs/AppsResponse.md +9 -0
- data/docs/AppsResponseEntry.md +6 -0
- data/docs/AwsSettingsControllerApi.md +19 -22
- data/docs/BasicAuthMethodDto.md +5 -5
- data/docs/BasicOrganizationDto.md +7 -7
- data/docs/BillingApi.md +47 -54
- data/docs/BillingInfo.md +6 -6
- data/docs/ChargesDetailsResponseDto.md +12 -0
- data/docs/CloudWatchSettings.md +7 -7
- data/docs/CloudWatchSettingsResponse.md +9 -0
- data/docs/CloudWatchSettingsResponseEntry.md +6 -0
- data/docs/CreateAppInfo.md +8 -8
- data/docs/CreateTokenDto.md +8 -0
- data/docs/DailyDto.md +9 -0
- data/docs/DataSeriesFilter.md +5 -5
- data/docs/DataSeriesRequest.md +9 -9
- data/docs/DayUsageData.md +26 -0
- data/docs/Dimension.md +7 -0
- data/docs/Error.md +5 -5
- data/docs/EventDto.md +8 -0
- data/docs/FilterValue.md +9 -9
- data/docs/GenericApiResponse.md +7 -7
- data/docs/GenericMapBasedApiResponse.md +9 -0
- data/docs/Invitation.md +13 -13
- data/docs/Invoice.md +11 -0
- data/docs/InvoiceResponse.md +9 -0
- data/docs/InvoiceResponseEntry.md +6 -0
- data/docs/LimitChangeEventDTO.md +8 -0
- data/docs/LogsAppApi.md +16 -18
- data/docs/LogsUsageApiControllerApi.md +60 -0
- data/docs/MailReportResponse.md +9 -0
- data/docs/MailReportResponseResponseEntry.md +6 -0
- data/docs/MetricsApi.md +20 -20
- data/docs/MinPeriodFeePeriod.md +16 -0
- data/docs/MonitoringAppApi.md +16 -18
- data/docs/NotificationIntegration.md +13 -13
- data/docs/NotificationsResponse.md +9 -0
- data/docs/NotificationsResponseEntry.md +8 -0
- data/docs/Plan.md +16 -16
- data/docs/PlansResponse.md +9 -0
- data/docs/PlansResponseEntry.md +6 -0
- data/docs/ReportInfo.md +11 -11
- data/docs/ResetPasswordApi.md +16 -18
- data/docs/SavedQueriesApi.md +19 -19
- data/docs/SavedQuery.md +15 -15
- data/docs/ServiceIntegration.md +15 -15
- data/docs/Subscription.md +20 -0
- data/docs/SubscriptionDashboardDto.md +16 -0
- data/docs/SubscriptionDto.md +17 -0
- data/docs/SubscriptionResponse.md +9 -0
- data/docs/SubscriptionResponseEntry.md +6 -0
- data/docs/SubscriptionsApi.md +455 -36
- data/docs/SubscriptionsResponse.md +9 -0
- data/docs/SubscriptionsResponseEntry.md +6 -0
- data/docs/TagApiControllerApi.md +63 -72
- data/docs/TagNamesResponse.md +6 -0
- data/docs/TokenDto.md +12 -0
- data/docs/TokenResponse.md +9 -0
- data/docs/TokenResponseEntry.md +6 -0
- data/docs/TokensApiControllerApi.md +274 -0
- data/docs/TokensResponse.md +9 -0
- data/docs/TokensResponseEntry.md +6 -0
- data/docs/UpdateAppInfo.md +12 -12
- data/docs/UpdatePlanResponse.md +9 -0
- data/docs/UpdatePlanResponseDto.md +7 -0
- data/docs/UpdatePlanResponseEntry.md +6 -0
- data/docs/UpdateSubscriptionDto.md +6 -0
- data/docs/UpdateTokenDto.md +7 -0
- data/docs/UsageDto.md +16 -0
- data/docs/UsageMultiResponse.md +9 -0
- data/docs/UsageMultiResponseEntry.md +6 -0
- data/docs/UsageResponse.md +9 -0
- data/docs/UsageResponseEntry.md +6 -0
- data/docs/UserInfo.md +4 -4
- data/docs/UserPermissions.md +6 -6
- data/docs/UserRole.md +6 -6
- data/lib/SematextCloud/api/subscriptions_api.rb +463 -17
- data/lib/SematextCloud/api/tokens_api_controller_api.rb +313 -0
- data/lib/SematextCloud/models/create_token_dto.rb +201 -0
- data/lib/SematextCloud/models/subscription_dashboard_dto.rb +319 -0
- data/lib/SematextCloud/models/subscription_dto.rb +328 -0
- data/lib/SematextCloud/models/update_subscription_dto.rb +183 -0
- data/lib/SematextCloud/models/update_token_dto.rb +192 -0
- data/lib/SematextCloud/version.rb +1 -1
- data/lib/stcloud/api/alert_notifications_api.rb +142 -0
- data/lib/stcloud/api/alerts_api.rb +292 -0
- data/lib/stcloud/api/apps_api.rb +452 -0
- data/lib/stcloud/api/aws_settings_controller_api.rb +84 -0
- data/lib/stcloud/api/billing_api.rb +202 -0
- data/lib/stcloud/api/logs_app_api.rb +76 -0
- data/lib/stcloud/api/logs_usage_api_controller_api.rb +86 -0
- data/lib/stcloud/api/monitoring_app_api.rb +76 -0
- data/lib/stcloud/api/reset_password_api.rb +76 -0
- data/lib/stcloud/api/subscriptions_api.rb +610 -0
- data/lib/stcloud/api/tag_api_controller_api.rb +250 -0
- data/lib/stcloud/api/tokens_api_controller_api.rb +324 -0
- data/lib/stcloud/api_client.rb +388 -0
- data/lib/stcloud/api_error.rb +57 -0
- data/lib/stcloud/configuration.rb +205 -0
- data/lib/stcloud/models/alert_notification.rb +260 -0
- data/lib/stcloud/models/alert_notification_request.rb +235 -0
- data/lib/stcloud/models/alert_rule.rb +675 -0
- data/lib/stcloud/models/alert_rule_response.rb +235 -0
- data/lib/stcloud/models/alert_rule_response_entry.rb +206 -0
- data/lib/stcloud/models/alert_rule_schedule_time_range_dto.rb +215 -0
- data/lib/stcloud/models/alert_rule_schedule_weekday_dto.rb +244 -0
- data/lib/stcloud/models/alert_rules_response.rb +235 -0
- data/lib/stcloud/models/alert_rules_response_entry.rb +208 -0
- data/lib/stcloud/models/app.rb +489 -0
- data/lib/stcloud/models/app_description.rb +206 -0
- data/lib/stcloud/models/app_metadata.rb +291 -0
- data/lib/stcloud/models/app_response.rb +235 -0
- data/lib/stcloud/models/app_response_entry.rb +206 -0
- data/lib/stcloud/models/app_types_response.rb +235 -0
- data/lib/stcloud/models/app_types_response_entry.rb +208 -0
- data/lib/stcloud/models/apps_response.rb +235 -0
- data/lib/stcloud/models/apps_response_entry.rb +208 -0
- data/lib/stcloud/models/basic_auth_method_dto.rb +249 -0
- data/lib/stcloud/models/basic_organization_dto.rb +269 -0
- data/lib/stcloud/models/billing_info.rb +224 -0
- data/lib/stcloud/models/charges_details_response_dto.rb +298 -0
- data/lib/stcloud/models/cloud_watch_settings.rb +279 -0
- data/lib/stcloud/models/cloud_watch_settings_response.rb +235 -0
- data/lib/stcloud/models/cloud_watch_settings_response_entry.rb +206 -0
- data/lib/stcloud/models/create_app_info.rb +242 -0
- data/lib/stcloud/models/create_token_dto.rb +224 -0
- data/lib/stcloud/models/daily_dto.rb +233 -0
- data/lib/stcloud/models/day_usage_data.rb +411 -0
- data/lib/stcloud/models/dimension.rb +227 -0
- data/lib/stcloud/models/error.rb +215 -0
- data/lib/stcloud/models/event_dto.rb +258 -0
- data/lib/stcloud/models/filter_value.rb +253 -0
- data/lib/stcloud/models/generic_api_response.rb +236 -0
- data/lib/stcloud/models/generic_map_based_api_response.rb +236 -0
- data/lib/stcloud/models/invitation.rb +348 -0
- data/lib/stcloud/models/invoice.rb +253 -0
- data/lib/stcloud/models/invoice_response.rb +235 -0
- data/lib/stcloud/models/invoice_response_entry.rb +206 -0
- data/lib/stcloud/models/limit_change_event_dto.rb +224 -0
- data/lib/stcloud/models/mail_report_response.rb +235 -0
- data/lib/stcloud/models/mail_report_response_response_entry.rb +206 -0
- data/lib/stcloud/models/min_period_fee_period.rb +296 -0
- data/lib/stcloud/models/notification_integration.rb +347 -0
- data/lib/stcloud/models/notifications_response.rb +235 -0
- data/lib/stcloud/models/notifications_response_entry.rb +226 -0
- data/lib/stcloud/models/plan.rb +360 -0
- data/lib/stcloud/models/plans_response.rb +235 -0
- data/lib/stcloud/models/plans_response_entry.rb +208 -0
- data/lib/stcloud/models/report_info.rb +270 -0
- data/lib/stcloud/models/service_integration.rb +305 -0
- data/lib/stcloud/models/subscription.rb +378 -0
- data/lib/stcloud/models/subscription_dashboard_dto.rb +342 -0
- data/lib/stcloud/models/subscription_dto.rb +351 -0
- data/lib/stcloud/models/subscription_response.rb +235 -0
- data/lib/stcloud/models/subscription_response_entry.rb +206 -0
- data/lib/stcloud/models/subscriptions_response.rb +235 -0
- data/lib/stcloud/models/subscriptions_response_entry.rb +208 -0
- data/lib/stcloud/models/tag_names_response.rb +213 -0
- data/lib/stcloud/models/token_dto.rb +260 -0
- data/lib/stcloud/models/token_response.rb +235 -0
- data/lib/stcloud/models/token_response_entry.rb +206 -0
- data/lib/stcloud/models/tokens_response.rb +235 -0
- data/lib/stcloud/models/tokens_response_entry.rb +208 -0
- data/lib/stcloud/models/update_app_info.rb +312 -0
- data/lib/stcloud/models/update_plan_response.rb +235 -0
- data/lib/stcloud/models/update_plan_response_dto.rb +217 -0
- data/lib/stcloud/models/update_plan_response_entry.rb +206 -0
- data/lib/stcloud/models/update_subscription_dto.rb +206 -0
- data/lib/stcloud/models/update_token_dto.rb +215 -0
- data/lib/stcloud/models/usage_dto.rb +302 -0
- data/lib/stcloud/models/usage_multi_response.rb +235 -0
- data/lib/stcloud/models/usage_multi_response_entry.rb +206 -0
- data/lib/stcloud/models/usage_response.rb +235 -0
- data/lib/stcloud/models/usage_response_entry.rb +206 -0
- data/lib/stcloud/models/user_info.rb +206 -0
- data/lib/stcloud/models/user_permissions.rb +224 -0
- data/lib/stcloud/models/user_role.rb +270 -0
- data/lib/stcloud/version.rb +14 -0
- data/lib/stcloud.rb +128 -0
- data/spec/api/alert_notifications_api_spec.rb +12 -13
- data/spec/api/alerts_api_spec.rb +10 -11
- data/spec/api/apps_api_spec.rb +31 -21
- data/spec/api/aws_settings_controller_api_spec.rb +9 -10
- data/spec/api/billing_api_spec.rb +12 -13
- data/spec/api/logs_app_api_spec.rb +6 -7
- data/spec/api/logs_usage_api_controller_api_spec.rb +47 -0
- data/spec/api/monitoring_app_api_spec.rb +6 -7
- data/spec/api/reset_password_api_spec.rb +6 -7
- data/spec/api/subscriptions_api_spec.rb +106 -14
- data/spec/api/tag_api_controller_api_spec.rb +11 -12
- data/spec/api/tokens_api_controller_api_spec.rb +94 -0
- data/spec/api_client_spec.rb +30 -31
- data/spec/base_object_spec.rb +109 -0
- data/spec/configuration_spec.rb +7 -8
- data/spec/models/alert_notification_request_spec.rb +1 -2
- data/spec/models/alert_notification_spec.rb +76 -0
- data/spec/models/alert_rule_response_entry_spec.rb +40 -0
- data/spec/models/alert_rule_response_spec.rb +58 -0
- data/spec/models/alert_rule_schedule_time_range_dto_spec.rb +1 -2
- data/spec/models/alert_rule_schedule_weekday_dto_spec.rb +1 -2
- data/spec/models/alert_rule_spec.rb +1 -2
- data/spec/models/alert_rules_response_entry_spec.rb +40 -0
- data/spec/models/alert_rules_response_spec.rb +58 -0
- data/spec/models/app_description_spec.rb +1 -2
- data/spec/models/app_metadata_spec.rb +1 -2
- data/spec/models/app_response_entry_spec.rb +40 -0
- data/spec/models/app_response_spec.rb +58 -0
- data/spec/models/app_spec.rb +31 -2
- data/spec/models/app_types_response_entry_spec.rb +40 -0
- data/spec/models/app_types_response_spec.rb +58 -0
- data/spec/models/apps_response_entry_spec.rb +40 -0
- data/spec/models/apps_response_spec.rb +58 -0
- data/spec/models/basic_auth_method_dto_spec.rb +1 -2
- data/spec/models/basic_organization_dto_spec.rb +1 -2
- data/spec/models/billing_info_spec.rb +1 -2
- data/spec/models/charges_details_response_dto_spec.rb +80 -0
- data/spec/models/cloud_watch_settings_response_entry_spec.rb +40 -0
- data/spec/models/cloud_watch_settings_response_spec.rb +58 -0
- data/spec/models/cloud_watch_settings_spec.rb +1 -2
- data/spec/models/create_app_info_spec.rb +1 -2
- data/spec/models/create_token_dto_spec.rb +52 -0
- data/spec/models/daily_dto_spec.rb +58 -0
- data/spec/models/day_usage_data_spec.rb +158 -0
- data/spec/models/dimension_spec.rb +46 -0
- data/spec/models/error_spec.rb +1 -2
- data/spec/models/event_dto_spec.rb +56 -0
- data/spec/models/filter_value_spec.rb +1 -2
- data/spec/models/generic_api_response_spec.rb +1 -2
- data/spec/models/generic_map_based_api_response_spec.rb +58 -0
- data/spec/models/invitation_spec.rb +1 -2
- data/spec/models/invoice_response_entry_spec.rb +40 -0
- data/spec/models/invoice_response_spec.rb +58 -0
- data/spec/models/invoice_spec.rb +70 -0
- data/spec/models/limit_change_event_dto_spec.rb +52 -0
- data/spec/models/mail_report_response_response_entry_spec.rb +40 -0
- data/spec/models/mail_report_response_spec.rb +58 -0
- data/spec/models/min_period_fee_period_spec.rb +100 -0
- data/spec/models/notification_integration_spec.rb +1 -2
- data/spec/models/notifications_response_entry_spec.rb +52 -0
- data/spec/models/notifications_response_spec.rb +58 -0
- data/spec/models/plan_spec.rb +2 -3
- data/spec/models/plans_response_entry_spec.rb +40 -0
- data/spec/models/plans_response_spec.rb +58 -0
- data/spec/models/report_info_spec.rb +1 -2
- data/spec/models/service_integration_spec.rb +1 -2
- data/spec/models/subscription_dashboard_dto_spec.rb +108 -0
- data/spec/models/subscription_dto_spec.rb +114 -0
- data/spec/models/subscription_response_entry_spec.rb +40 -0
- data/spec/models/subscription_response_spec.rb +58 -0
- data/spec/models/subscription_spec.rb +132 -0
- data/spec/models/subscriptions_response_entry_spec.rb +40 -0
- data/spec/models/subscriptions_response_spec.rb +58 -0
- data/spec/models/tag_names_response_spec.rb +40 -0
- data/spec/models/token_dto_spec.rb +76 -0
- data/spec/models/token_response_entry_spec.rb +40 -0
- data/spec/models/token_response_spec.rb +58 -0
- data/spec/models/tokens_response_entry_spec.rb +40 -0
- data/spec/models/tokens_response_spec.rb +58 -0
- data/spec/models/update_app_info_spec.rb +1 -2
- data/spec/models/update_plan_response_dto_spec.rb +46 -0
- data/spec/models/update_plan_response_entry_spec.rb +40 -0
- data/spec/models/update_plan_response_spec.rb +58 -0
- data/spec/models/update_subscription_dto_spec.rb +40 -0
- data/spec/models/update_token_dto_spec.rb +46 -0
- data/spec/models/usage_dto_spec.rb +100 -0
- data/spec/models/usage_multi_response_entry_spec.rb +40 -0
- data/spec/models/usage_multi_response_spec.rb +58 -0
- data/spec/models/usage_response_entry_spec.rb +40 -0
- data/spec/models/usage_response_spec.rb +58 -0
- data/spec/models/user_info_spec.rb +1 -2
- data/spec/models/user_permissions_spec.rb +1 -2
- data/spec/models/user_role_spec.rb +1 -2
- data/spec/spec_helper.rb +2 -3
- metadata +300 -148
@@ -6,20 +6,19 @@
|
|
6
6
|
OpenAPI spec version: v3
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version:
|
10
|
-
|
9
|
+
Swagger Codegen version: 3.0.25
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
14
13
|
require 'json'
|
15
14
|
|
16
|
-
# Unit tests for
|
15
|
+
# Unit tests for stcloud::ResetPasswordApi
|
17
16
|
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
17
|
# Please update as you see appropriate
|
19
18
|
describe 'ResetPasswordApi' do
|
20
19
|
before do
|
21
20
|
# run before each test
|
22
|
-
@instance =
|
21
|
+
@instance = stcloud::ResetPasswordApi.new
|
23
22
|
end
|
24
23
|
|
25
24
|
after do
|
@@ -28,15 +27,15 @@ describe 'ResetPasswordApi' do
|
|
28
27
|
|
29
28
|
describe 'test an instance of ResetPasswordApi' do
|
30
29
|
it 'should create an instance of ResetPasswordApi' do
|
31
|
-
expect(@instance).to be_instance_of(
|
30
|
+
expect(@instance).to be_instance_of(stcloud::ResetPasswordApi)
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
35
34
|
# unit tests for reset_password_using_post
|
36
35
|
# Reset Password
|
37
|
-
# @param
|
36
|
+
# @param body dto
|
38
37
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @return [
|
38
|
+
# @return [GenericMapBasedApiResponse]
|
40
39
|
describe 'reset_password_using_post test' do
|
41
40
|
it 'should work' do
|
42
41
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -6,20 +6,19 @@
|
|
6
6
|
OpenAPI spec version: v3
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version:
|
10
|
-
|
9
|
+
Swagger Codegen version: 3.0.25
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
14
13
|
require 'json'
|
15
14
|
|
16
|
-
# Unit tests for
|
15
|
+
# Unit tests for stcloud::SubscriptionsApi
|
17
16
|
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
17
|
# Please update as you see appropriate
|
19
18
|
describe 'SubscriptionsApi' do
|
20
19
|
before do
|
21
20
|
# run before each test
|
22
|
-
@instance =
|
21
|
+
@instance = stcloud::SubscriptionsApi.new
|
23
22
|
end
|
24
23
|
|
25
24
|
after do
|
@@ -28,28 +27,121 @@ describe 'SubscriptionsApi' do
|
|
28
27
|
|
29
28
|
describe 'test an instance of SubscriptionsApi' do
|
30
29
|
it 'should create an instance of SubscriptionsApi' do
|
31
|
-
expect(@instance).to be_instance_of(
|
30
|
+
expect(@instance).to be_instance_of(stcloud::SubscriptionsApi)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
# unit tests for create_for_app_using_post1
|
35
|
+
# Create App subscription
|
36
|
+
# @param body subscription
|
37
|
+
# @param app_id appId
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @return [SubscriptionResponse]
|
40
|
+
describe 'create_for_app_using_post1 test' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for create_for_dash_using_post1
|
47
|
+
# Create dashboard subscription
|
48
|
+
# @param body subscription
|
49
|
+
# @param dash_id dashId
|
50
|
+
# @param [Hash] opts the optional parameters
|
51
|
+
# @return [SubscriptionResponse]
|
52
|
+
describe 'create_for_dash_using_post1 test' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# unit tests for delete_using_delete3
|
59
|
+
# Delete subscription
|
60
|
+
# @param updateable_subscription_id updateableSubscriptionId
|
61
|
+
# @param [Hash] opts the optional parameters
|
62
|
+
# @return [GenericMapBasedApiResponse]
|
63
|
+
describe 'delete_using_delete3 test' do
|
64
|
+
it 'should work' do
|
65
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
32
66
|
end
|
33
67
|
end
|
34
68
|
|
35
|
-
# unit tests for
|
36
|
-
# Get subscriptions for an
|
69
|
+
# unit tests for list_using_get3
|
70
|
+
# Get subscriptions for an App
|
37
71
|
# @param app_id appId
|
38
72
|
# @param [Hash] opts the optional parameters
|
39
|
-
# @return [
|
40
|
-
describe '
|
73
|
+
# @return [SubscriptionsResponse]
|
74
|
+
describe 'list_using_get3 test' do
|
75
|
+
it 'should work' do
|
76
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
# unit tests for list_using_get5
|
81
|
+
# Get current account's subscriptions
|
82
|
+
# @param [Hash] opts the optional parameters
|
83
|
+
# @return [SubscriptionsResponse]
|
84
|
+
describe 'list_using_get5 test' do
|
41
85
|
it 'should work' do
|
42
86
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
87
|
end
|
44
88
|
end
|
45
89
|
|
46
|
-
# unit tests for
|
47
|
-
#
|
90
|
+
# unit tests for send_app_report_using_post
|
91
|
+
# Email an App report
|
92
|
+
# @param body emailDto
|
48
93
|
# @param app_id appId
|
49
|
-
# @param email_dto emailDto
|
50
94
|
# @param [Hash] opts the optional parameters
|
51
|
-
# @return [
|
52
|
-
describe '
|
95
|
+
# @return [MailReportResponse]
|
96
|
+
describe 'send_app_report_using_post test' do
|
97
|
+
it 'should work' do
|
98
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
# unit tests for send_dash_report_using_post
|
103
|
+
# Email a dashboard report
|
104
|
+
# @param body emailDto
|
105
|
+
# @param dash_id dashId
|
106
|
+
# @param [Hash] opts the optional parameters
|
107
|
+
# @return [MailReportResponse]
|
108
|
+
describe 'send_dash_report_using_post test' do
|
109
|
+
it 'should work' do
|
110
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
# unit tests for toggle_enabled_using_put1
|
115
|
+
# Toggle subscription status
|
116
|
+
# @param body dto
|
117
|
+
# @param updateable_subscription_id updateableSubscriptionId
|
118
|
+
# @param [Hash] opts the optional parameters
|
119
|
+
# @return [SubscriptionResponse]
|
120
|
+
describe 'toggle_enabled_using_put1 test' do
|
121
|
+
it 'should work' do
|
122
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# unit tests for update_for_app_using_put1
|
127
|
+
# Update App subscription
|
128
|
+
# @param body subscription
|
129
|
+
# @param app_id appId
|
130
|
+
# @param [Hash] opts the optional parameters
|
131
|
+
# @return [SubscriptionResponse]
|
132
|
+
describe 'update_for_app_using_put1 test' do
|
133
|
+
it 'should work' do
|
134
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
# unit tests for update_for_dash_using_put1
|
139
|
+
# Update dashboard subscription
|
140
|
+
# @param body subscription
|
141
|
+
# @param dash_id dashId
|
142
|
+
# @param [Hash] opts the optional parameters
|
143
|
+
# @return [SubscriptionResponse]
|
144
|
+
describe 'update_for_dash_using_put1 test' do
|
53
145
|
it 'should work' do
|
54
146
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
147
|
end
|
@@ -6,20 +6,19 @@
|
|
6
6
|
OpenAPI spec version: v3
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version:
|
10
|
-
|
9
|
+
Swagger Codegen version: 3.0.25
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
14
13
|
require 'json'
|
15
14
|
|
16
|
-
# Unit tests for
|
15
|
+
# Unit tests for stcloud::TagApiControllerApi
|
17
16
|
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
17
|
# Please update as you see appropriate
|
19
18
|
describe 'TagApiControllerApi' do
|
20
19
|
before do
|
21
20
|
# run before each test
|
22
|
-
@instance =
|
21
|
+
@instance = stcloud::TagApiControllerApi.new
|
23
22
|
end
|
24
23
|
|
25
24
|
after do
|
@@ -28,7 +27,7 @@ describe 'TagApiControllerApi' do
|
|
28
27
|
|
29
28
|
describe 'test an instance of TagApiControllerApi' do
|
30
29
|
it 'should create an instance of TagApiControllerApi' do
|
31
|
-
expect(@instance).to be_instance_of(
|
30
|
+
expect(@instance).to be_instance_of(stcloud::TagApiControllerApi)
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
@@ -42,14 +41,14 @@ describe 'TagApiControllerApi' do
|
|
42
41
|
# @option opts [BOOLEAN] :logs logs
|
43
42
|
# @option opts [BOOLEAN] :events events
|
44
43
|
# @option opts [BOOLEAN] :rum rum
|
45
|
-
# @return [
|
44
|
+
# @return [TagNamesResponse]
|
46
45
|
describe 'get_tag_names_using_get test' do
|
47
46
|
it 'should work' do
|
48
47
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
48
|
end
|
50
49
|
end
|
51
50
|
|
52
|
-
# unit tests for
|
51
|
+
# unit tests for get_using_get2
|
53
52
|
# Gets values for specified tags for the given application identifiers appearing in the given time frame.
|
54
53
|
# @param app_ids appIds
|
55
54
|
# @param tag tag
|
@@ -60,14 +59,14 @@ describe 'TagApiControllerApi' do
|
|
60
59
|
# @option opts [BOOLEAN] :logs logs
|
61
60
|
# @option opts [BOOLEAN] :events events
|
62
61
|
# @option opts [BOOLEAN] :rum rum
|
63
|
-
# @return [
|
64
|
-
describe '
|
62
|
+
# @return [Hash<String, Dimension>]
|
63
|
+
describe 'get_using_get2 test' do
|
65
64
|
it 'should work' do
|
66
65
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
66
|
end
|
68
67
|
end
|
69
68
|
|
70
|
-
# unit tests for
|
69
|
+
# unit tests for get_using_get3
|
71
70
|
# Gets values for specified tags for the given application identifiers appearing in the given time frame.
|
72
71
|
# @param app_ids appIds
|
73
72
|
# @param tag tag
|
@@ -78,8 +77,8 @@ describe 'TagApiControllerApi' do
|
|
78
77
|
# @option opts [BOOLEAN] :logs logs
|
79
78
|
# @option opts [BOOLEAN] :events events
|
80
79
|
# @option opts [BOOLEAN] :rum rum
|
81
|
-
# @return [
|
82
|
-
describe '
|
80
|
+
# @return [Hash<String, Dimension>]
|
81
|
+
describe 'get_using_get3 test' do
|
83
82
|
it 'should work' do
|
84
83
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
84
|
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
=begin
|
2
|
+
#Sematext Cloud API
|
3
|
+
|
4
|
+
#API Explorer provides access and documentation for Sematext REST API. The REST API requires the API Key to be sent as part of `Authorization` header. E.g.: `Authorization : apiKey e5f18450-205a-48eb-8589-7d49edaea813`.
|
5
|
+
|
6
|
+
OpenAPI spec version: v3
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 3.0.25
|
10
|
+
=end
|
11
|
+
|
12
|
+
require 'spec_helper'
|
13
|
+
require 'json'
|
14
|
+
|
15
|
+
# Unit tests for stcloud::TokensApiControllerApi
|
16
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
17
|
+
# Please update as you see appropriate
|
18
|
+
describe 'TokensApiControllerApi' do
|
19
|
+
before do
|
20
|
+
# run before each test
|
21
|
+
@instance = stcloud::TokensApiControllerApi.new
|
22
|
+
end
|
23
|
+
|
24
|
+
after do
|
25
|
+
# run after each test
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test an instance of TokensApiControllerApi' do
|
29
|
+
it 'should create an instance of TokensApiControllerApi' do
|
30
|
+
expect(@instance).to be_instance_of(stcloud::TokensApiControllerApi)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
# unit tests for create_app_token1
|
35
|
+
# Create new app token
|
36
|
+
# @param body dto
|
37
|
+
# @param app_id appId
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @return [TokenResponse]
|
40
|
+
describe 'create_app_token1 test' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# unit tests for delete_app_token
|
47
|
+
# Delete app token
|
48
|
+
# @param app_id appId
|
49
|
+
# @param token_id tokenId
|
50
|
+
# @param [Hash] opts the optional parameters
|
51
|
+
# @return [GenericMapBasedApiResponse]
|
52
|
+
describe 'delete_app_token test' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# unit tests for get_app_tokens1
|
59
|
+
# Get app available tokens
|
60
|
+
# @param app_id appId
|
61
|
+
# @param [Hash] opts the optional parameters
|
62
|
+
# @return [TokensResponse]
|
63
|
+
describe 'get_app_tokens1 test' do
|
64
|
+
it 'should work' do
|
65
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
# unit tests for regenerate_app_token
|
70
|
+
# Regenerate app token)
|
71
|
+
# @param app_id appId
|
72
|
+
# @param token_id tokenId
|
73
|
+
# @param [Hash] opts the optional parameters
|
74
|
+
# @return [TokenResponse]
|
75
|
+
describe 'regenerate_app_token test' do
|
76
|
+
it 'should work' do
|
77
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# unit tests for update_app_token
|
82
|
+
# Update app token (enable/disable or name)
|
83
|
+
# @param body dto
|
84
|
+
# @param app_id appId
|
85
|
+
# @param token_id tokenId
|
86
|
+
# @param [Hash] opts the optional parameters
|
87
|
+
# @return [TokenResponse]
|
88
|
+
describe 'update_app_token test' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
end
|
data/spec/api_client_spec.rb
CHANGED
@@ -6,57 +6,56 @@
|
|
6
6
|
OpenAPI spec version: v3
|
7
7
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version:
|
10
|
-
|
9
|
+
Swagger Codegen version: 3.0.25
|
11
10
|
=end
|
12
11
|
|
13
12
|
require 'spec_helper'
|
14
13
|
|
15
|
-
describe
|
14
|
+
describe stcloud::ApiClient do
|
16
15
|
context 'initialization' do
|
17
16
|
context 'URL stuff' do
|
18
17
|
context 'host' do
|
19
18
|
it 'removes http from host' do
|
20
|
-
|
21
|
-
expect(
|
19
|
+
stcloud.configure { |c| c.host = 'http://example.com' }
|
20
|
+
expect(stcloud::Configuration.default.host).to eq('example.com')
|
22
21
|
end
|
23
22
|
|
24
23
|
it 'removes https from host' do
|
25
|
-
|
26
|
-
expect(
|
24
|
+
stcloud.configure { |c| c.host = 'https://wookiee.com' }
|
25
|
+
expect(stcloud::ApiClient.default.config.host).to eq('wookiee.com')
|
27
26
|
end
|
28
27
|
|
29
28
|
it 'removes trailing path from host' do
|
30
|
-
|
31
|
-
expect(
|
29
|
+
stcloud.configure { |c| c.host = 'hobo.com/v4' }
|
30
|
+
expect(stcloud::Configuration.default.host).to eq('hobo.com')
|
32
31
|
end
|
33
32
|
end
|
34
33
|
|
35
34
|
context 'base_path' do
|
36
35
|
it "prepends a slash to base_path" do
|
37
|
-
|
38
|
-
expect(
|
36
|
+
stcloud.configure { |c| c.base_path = 'v4/dog' }
|
37
|
+
expect(stcloud::Configuration.default.base_path).to eq('/v4/dog')
|
39
38
|
end
|
40
39
|
|
41
40
|
it "doesn't prepend a slash if one is already there" do
|
42
|
-
|
43
|
-
expect(
|
41
|
+
stcloud.configure { |c| c.base_path = '/v4/dog' }
|
42
|
+
expect(stcloud::Configuration.default.base_path).to eq('/v4/dog')
|
44
43
|
end
|
45
44
|
|
46
45
|
it "ends up as a blank string if nil" do
|
47
|
-
|
48
|
-
expect(
|
46
|
+
stcloud.configure { |c| c.base_path = nil }
|
47
|
+
expect(stcloud::Configuration.default.base_path).to eq('')
|
49
48
|
end
|
50
49
|
end
|
51
50
|
end
|
52
51
|
end
|
53
52
|
|
54
53
|
describe 'params_encoding in #build_request' do
|
55
|
-
let(:config) {
|
56
|
-
let(:api_client) {
|
54
|
+
let(:config) { stcloud::Configuration.new }
|
55
|
+
let(:api_client) { stcloud::ApiClient.new(config) }
|
57
56
|
|
58
57
|
it 'defaults to nil' do
|
59
|
-
expect(
|
58
|
+
expect(stcloud::Configuration.default.params_encoding).to eq(nil)
|
60
59
|
expect(config.params_encoding).to eq(nil)
|
61
60
|
|
62
61
|
request = api_client.build_request(:get, '/test')
|
@@ -71,11 +70,11 @@ describe SematextCloud::ApiClient do
|
|
71
70
|
end
|
72
71
|
|
73
72
|
describe 'timeout in #build_request' do
|
74
|
-
let(:config) {
|
75
|
-
let(:api_client) {
|
73
|
+
let(:config) { stcloud::Configuration.new }
|
74
|
+
let(:api_client) { stcloud::ApiClient.new(config) }
|
76
75
|
|
77
76
|
it 'defaults to 0' do
|
78
|
-
expect(
|
77
|
+
expect(stcloud::Configuration.default.timeout).to eq(0)
|
79
78
|
expect(config.timeout).to eq(0)
|
80
79
|
|
81
80
|
request = api_client.build_request(:get, '/test')
|
@@ -91,7 +90,7 @@ describe SematextCloud::ApiClient do
|
|
91
90
|
|
92
91
|
describe '#deserialize' do
|
93
92
|
it "handles Array<Integer>" do
|
94
|
-
api_client =
|
93
|
+
api_client = stcloud::ApiClient.new
|
95
94
|
headers = { 'Content-Type' => 'application/json' }
|
96
95
|
response = double('response', headers: headers, body: '[12, 34]')
|
97
96
|
data = api_client.deserialize(response, 'Array<Integer>')
|
@@ -100,7 +99,7 @@ describe SematextCloud::ApiClient do
|
|
100
99
|
end
|
101
100
|
|
102
101
|
it 'handles Array<Array<Integer>>' do
|
103
|
-
api_client =
|
102
|
+
api_client = stcloud::ApiClient.new
|
104
103
|
headers = { 'Content-Type' => 'application/json' }
|
105
104
|
response = double('response', headers: headers, body: '[[12, 34], [56]]')
|
106
105
|
data = api_client.deserialize(response, 'Array<Array<Integer>>')
|
@@ -109,7 +108,7 @@ describe SematextCloud::ApiClient do
|
|
109
108
|
end
|
110
109
|
|
111
110
|
it 'handles Hash<String, String>' do
|
112
|
-
api_client =
|
111
|
+
api_client = stcloud::ApiClient.new
|
113
112
|
headers = { 'Content-Type' => 'application/json' }
|
114
113
|
response = double('response', headers: headers, body: '{"message": "Hello"}')
|
115
114
|
data = api_client.deserialize(response, 'Hash<String, String>')
|
@@ -121,8 +120,8 @@ describe SematextCloud::ApiClient do
|
|
121
120
|
describe "#object_to_hash" do
|
122
121
|
it 'ignores nils and includes empty arrays' do
|
123
122
|
# uncomment below to test object_to_hash for model
|
124
|
-
# api_client =
|
125
|
-
# _model =
|
123
|
+
# api_client = stcloud::ApiClient.new
|
124
|
+
# _model = stcloud::ModelName.new
|
126
125
|
# update the model attribute below
|
127
126
|
# _model.id = 1
|
128
127
|
# update the expected value (hash) below
|
@@ -133,7 +132,7 @@ describe SematextCloud::ApiClient do
|
|
133
132
|
|
134
133
|
describe '#build_collection_param' do
|
135
134
|
let(:param) { ['aa', 'bb', 'cc'] }
|
136
|
-
let(:api_client) {
|
135
|
+
let(:api_client) { stcloud::ApiClient.new }
|
137
136
|
|
138
137
|
it 'works for csv' do
|
139
138
|
expect(api_client.build_collection_param(param, :csv)).to eq('aa,bb,cc')
|
@@ -161,7 +160,7 @@ describe SematextCloud::ApiClient do
|
|
161
160
|
end
|
162
161
|
|
163
162
|
describe '#json_mime?' do
|
164
|
-
let(:api_client) {
|
163
|
+
let(:api_client) { stcloud::ApiClient.new }
|
165
164
|
|
166
165
|
it 'works' do
|
167
166
|
expect(api_client.json_mime?(nil)).to eq false
|
@@ -178,7 +177,7 @@ describe SematextCloud::ApiClient do
|
|
178
177
|
end
|
179
178
|
|
180
179
|
describe '#select_header_accept' do
|
181
|
-
let(:api_client) {
|
180
|
+
let(:api_client) { stcloud::ApiClient.new }
|
182
181
|
|
183
182
|
it 'works' do
|
184
183
|
expect(api_client.select_header_accept(nil)).to be_nil
|
@@ -194,7 +193,7 @@ describe SematextCloud::ApiClient do
|
|
194
193
|
end
|
195
194
|
|
196
195
|
describe '#select_header_content_type' do
|
197
|
-
let(:api_client) {
|
196
|
+
let(:api_client) { stcloud::ApiClient.new }
|
198
197
|
|
199
198
|
it 'works' do
|
200
199
|
expect(api_client.select_header_content_type(nil)).to eq('application/json')
|
@@ -209,7 +208,7 @@ describe SematextCloud::ApiClient do
|
|
209
208
|
end
|
210
209
|
|
211
210
|
describe '#sanitize_filename' do
|
212
|
-
let(:api_client) {
|
211
|
+
let(:api_client) { stcloud::ApiClient.new }
|
213
212
|
|
214
213
|
it 'works' do
|
215
214
|
expect(api_client.sanitize_filename('sun')).to eq('sun')
|
@@ -0,0 +1,109 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
class ArrayMapObject < Petstore::Category
|
4
|
+
attr_accessor :int_arr, :pet_arr, :int_map, :pet_map, :int_arr_map, :pet_arr_map, :boolean_true_arr, :boolean_false_arr
|
5
|
+
|
6
|
+
def self.attribute_map
|
7
|
+
{
|
8
|
+
:int_arr => :int_arr,
|
9
|
+
:pet_arr => :pet_arr,
|
10
|
+
:int_map => :int_map,
|
11
|
+
:pet_map => :pet_map,
|
12
|
+
:int_arr_map => :int_arr_map,
|
13
|
+
:pet_arr_map => :pet_arr_map,
|
14
|
+
:boolean_true_arr => :boolean_true_arr,
|
15
|
+
:boolean_false_arr => :boolean_false_arr,
|
16
|
+
}
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.swagger_types
|
20
|
+
{
|
21
|
+
:int_arr => :'Array<Integer>',
|
22
|
+
:pet_arr => :'Array<Pet>',
|
23
|
+
:int_map => :'Hash<String, Integer>',
|
24
|
+
:pet_map => :'Hash<String, Pet>',
|
25
|
+
:int_arr_map => :'Hash<String, Array<Integer>>',
|
26
|
+
:pet_arr_map => :'Hash<String, Array<Pet>>',
|
27
|
+
:boolean_true_arr => :'Array<BOOLEAN>',
|
28
|
+
:boolean_false_arr => :'Array<BOOLEAN>',
|
29
|
+
}
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe 'BaseObject' do
|
34
|
+
describe 'boolean values' do
|
35
|
+
let(:obj) { Petstore::Cat.new({declawed: false}) }
|
36
|
+
|
37
|
+
it 'should have values set' do
|
38
|
+
expect(obj.declawed).not_to be_nil
|
39
|
+
expect(obj.declawed).to eq(false)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe 'array and map properties' do
|
44
|
+
let(:obj) { ArrayMapObject.new }
|
45
|
+
|
46
|
+
let(:data) do
|
47
|
+
{int_arr: [123, 456],
|
48
|
+
pet_arr: [{name: 'Kitty'}],
|
49
|
+
int_map: {'int' => 123},
|
50
|
+
pet_map: {'pet' => {name: 'Kitty'}},
|
51
|
+
int_arr_map: {'int_arr' => [123, 456]},
|
52
|
+
pet_arr_map: {'pet_arr' => [{name: 'Kitty'}]},
|
53
|
+
boolean_true_arr: [true, "true", "TruE", 1, "y", "yes", "1", "t", "T"],
|
54
|
+
boolean_false_arr: [false, "", 0, "0", "f", nil, "null"],
|
55
|
+
}
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'works for #build_from_hash' do
|
59
|
+
obj.build_from_hash(data)
|
60
|
+
|
61
|
+
expect(obj.int_arr).to match_array([123, 456])
|
62
|
+
|
63
|
+
expect(obj.pet_arr).to be_instance_of(Array)
|
64
|
+
expect(obj.pet_arr).to be_instance_of(1)
|
65
|
+
|
66
|
+
pet = obj.pet_arr.first
|
67
|
+
expect(pet).to be_instance_of(Petstore::Pet)
|
68
|
+
expect(pet.name).to eq('Kitty')
|
69
|
+
|
70
|
+
expect(obj.int_map).to be_instance_of(Hash)
|
71
|
+
expect(obj.int_map).to eq({'int' => 123})
|
72
|
+
|
73
|
+
expect(obj.pet_map).to be_instance_of(Hash)
|
74
|
+
pet = obj.pet_map['pet']
|
75
|
+
expect(pet).to be_instance_of(Petstore::Pet)
|
76
|
+
expect(pet.name).to eq('Kitty')
|
77
|
+
|
78
|
+
expect(obj.int_arr_map).to be_instance_of(Hash)
|
79
|
+
arr = obj.int_arr_map['int_arr']
|
80
|
+
expect(arr).to match_array([123, 456])
|
81
|
+
|
82
|
+
expect(obj.pet_arr_map).to be_instance_of(Hash)
|
83
|
+
arr = obj.pet_arr_map['pet_arr']
|
84
|
+
expect(arr).to be_instance_of(Array)
|
85
|
+
expect(arr.size).to eq(1)
|
86
|
+
pet = arr.first
|
87
|
+
expect(pet).to be_instance_of(Petstore::Pet)
|
88
|
+
expect(pet.name).to eq('Kitty')
|
89
|
+
|
90
|
+
expect(obj.boolean_true_arr).to be_instance_of(Array)
|
91
|
+
obj.boolean_true_arr.each do |b|
|
92
|
+
expect(b).to eq(true)
|
93
|
+
end
|
94
|
+
|
95
|
+
expect(obj.boolean_false_arr).to be_instance_of(Array)
|
96
|
+
obj.boolean_false_arr.each do |b|
|
97
|
+
expect(b).to eq(false)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'works for #to_hash' do
|
102
|
+
obj.build_from_hash(data)
|
103
|
+
expect_data = data.dup
|
104
|
+
expect_data[:boolean_true_arr].map! {true}
|
105
|
+
expect_data[:boolean_false_arr].map! {false}
|
106
|
+
expect(obj.to_hash).to eq(expect_data)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|