billabear 1.0.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 +7 -0
- data/Gemfile +9 -0
- data/README.md +1340 -0
- data/Rakefile +8 -0
- data/billabear.gemspec +38 -0
- data/docs/Address.md +13 -0
- data/docs/BillingAdmin.md +8 -0
- data/docs/CheckoutApi.md +61 -0
- data/docs/CheckoutBody.md +12 -0
- data/docs/CheckoutItems.md +11 -0
- data/docs/CheckoutSubscriptions.md +9 -0
- data/docs/Customer.md +18 -0
- data/docs/CustomersApi.md +904 -0
- data/docs/Error.md +8 -0
- data/docs/Feature.md +10 -0
- data/docs/FrontendToken.md +7 -0
- data/docs/InlineResponse200.md +9 -0
- data/docs/InlineResponse2001.md +9 -0
- data/docs/InlineResponse20010.md +9 -0
- data/docs/InlineResponse20011.md +7 -0
- data/docs/InlineResponse20012.md +8 -0
- data/docs/InlineResponse2002.md +9 -0
- data/docs/InlineResponse2003.md +9 -0
- data/docs/InlineResponse2004.md +9 -0
- data/docs/InlineResponse2005.md +9 -0
- data/docs/InlineResponse2006.md +9 -0
- data/docs/InlineResponse2007.md +9 -0
- data/docs/InlineResponse2007Data.md +14 -0
- data/docs/InlineResponse2007Receipts.md +9 -0
- data/docs/InlineResponse2008.md +9 -0
- data/docs/InlineResponse2009.md +9 -0
- data/docs/InlineResponse201.md +15 -0
- data/docs/InlineResponse201Lines.md +14 -0
- data/docs/InlineResponse400.md +7 -0
- data/docs/Invoice.md +21 -0
- data/docs/InvoiceLines.md +12 -0
- data/docs/InvoicesApi.md +169 -0
- data/docs/IssueRefundPayment.md +9 -0
- data/docs/Limit.md +8 -0
- data/docs/PaymentDetails.md +14 -0
- data/docs/PaymentDetailsApi.md +447 -0
- data/docs/PaymentsApi.md +399 -0
- data/docs/Price.md +14 -0
- data/docs/PricesApi.md +122 -0
- data/docs/Product.md +10 -0
- data/docs/ProductTaxType.md +9 -0
- data/docs/ProductsApi.md +228 -0
- data/docs/ReceiptApi.md +61 -0
- data/docs/Refund.md +16 -0
- data/docs/RefundsApi.md +181 -0
- data/docs/SeatsAddBody.md +7 -0
- data/docs/SeatsRemoveBody.md +7 -0
- data/docs/Subscription.md +18 -0
- data/docs/SubscriptionIdCancelBody.md +10 -0
- data/docs/SubscriptionIdExtendBody.md +7 -0
- data/docs/SubscriptionIdPlanBody.md +9 -0
- data/docs/SubscriptionIdPriceBody.md +8 -0
- data/docs/SubscriptionPlan.md +20 -0
- data/docs/SubscriptionStartBody.md +14 -0
- data/docs/SubscriptionTrialBody.md +10 -0
- data/docs/SubscriptionsApi.md +731 -0
- data/docs/VoucherCode.md +7 -0
- data/git_push.sh +55 -0
- data/lib/swagger_client/api/checkout_api.rb +78 -0
- data/lib/swagger_client/api/customers_api.rb +980 -0
- data/lib/swagger_client/api/invoices_api.rb +188 -0
- data/lib/swagger_client/api/payment_details_api.rb +494 -0
- data/lib/swagger_client/api/payments_api.rb +432 -0
- data/lib/swagger_client/api/prices_api.rb +146 -0
- data/lib/swagger_client/api/products_api.rb +249 -0
- data/lib/swagger_client/api/receipt_api.rb +76 -0
- data/lib/swagger_client/api/refunds_api.rb +200 -0
- data/lib/swagger_client/api/subscriptions_api.rb +812 -0
- data/lib/swagger_client/api_client.rb +388 -0
- data/lib/swagger_client/api_error.rb +57 -0
- data/lib/swagger_client/configuration.rb +205 -0
- data/lib/swagger_client/models/address.rb +265 -0
- data/lib/swagger_client/models/billing_admin.rb +215 -0
- data/lib/swagger_client/models/checkout_body.rb +265 -0
- data/lib/swagger_client/models/checkout_items.rb +242 -0
- data/lib/swagger_client/models/checkout_subscriptions.rb +224 -0
- data/lib/swagger_client/models/customer.rb +370 -0
- data/lib/swagger_client/models/error.rb +225 -0
- data/lib/swagger_client/models/feature.rb +240 -0
- data/lib/swagger_client/models/frontend_token.rb +211 -0
- data/lib/swagger_client/models/inline_response_200.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_1.rb +228 -0
- data/lib/swagger_client/models/inline_response_200_10.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_11.rb +206 -0
- data/lib/swagger_client/models/inline_response_200_12.rb +250 -0
- data/lib/swagger_client/models/inline_response_200_2.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_3.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_4.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_5.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_6.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_7.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_7_data.rb +307 -0
- data/lib/swagger_client/models/inline_response_200_7_receipts.rb +224 -0
- data/lib/swagger_client/models/inline_response_200_8.rb +226 -0
- data/lib/swagger_client/models/inline_response_200_9.rb +226 -0
- data/lib/swagger_client/models/inline_response_201.rb +285 -0
- data/lib/swagger_client/models/inline_response_201_lines.rb +269 -0
- data/lib/swagger_client/models/inline_response_400.rb +213 -0
- data/lib/swagger_client/models/invoice.rb +334 -0
- data/lib/swagger_client/models/invoice_lines.rb +251 -0
- data/lib/swagger_client/models/issue_refund_payment.rb +232 -0
- data/lib/swagger_client/models/limit.rb +215 -0
- data/lib/swagger_client/models/payment_details.rb +271 -0
- data/lib/swagger_client/models/price.rb +325 -0
- data/lib/swagger_client/models/product.rb +240 -0
- data/lib/swagger_client/models/product_tax_type.rb +229 -0
- data/lib/swagger_client/models/refund.rb +324 -0
- data/lib/swagger_client/models/seats_add_body.rb +211 -0
- data/lib/swagger_client/models/seats_remove_body.rb +211 -0
- data/lib/swagger_client/models/subscription.rb +305 -0
- data/lib/swagger_client/models/subscription_id_cancel_body.rb +294 -0
- data/lib/swagger_client/models/subscription_id_extend_body.rb +211 -0
- data/lib/swagger_client/models/subscription_id_plan_body.rb +270 -0
- data/lib/swagger_client/models/subscription_id_price_body.rb +259 -0
- data/lib/swagger_client/models/subscription_plan.rb +330 -0
- data/lib/swagger_client/models/subscription_start_body.rb +314 -0
- data/lib/swagger_client/models/subscription_trial_body.rb +242 -0
- data/lib/swagger_client/models/voucher_code.rb +211 -0
- data/lib/swagger_client/version.rb +14 -0
- data/lib/swagger_client.rb +95 -0
- data/spec/api/checkout_api_spec.rb +46 -0
- data/spec/api/customers_api_spec.rb +241 -0
- data/spec/api/invoices_api_spec.rb +70 -0
- data/spec/api/payment_details_api_spec.rb +134 -0
- data/spec/api/payments_api_spec.rb +124 -0
- data/spec/api/prices_api_spec.rb +61 -0
- data/spec/api/products_api_spec.rb +84 -0
- data/spec/api/receipt_api_spec.rb +46 -0
- data/spec/api/refunds_api_spec.rb +75 -0
- data/spec/api/subscriptions_api_spec.rb +200 -0
- data/spec/api_client_spec.rb +225 -0
- data/spec/base_object_spec.rb +109 -0
- data/spec/configuration_spec.rb +41 -0
- data/spec/models/address_spec.rb +76 -0
- data/spec/models/billing_admin_spec.rb +46 -0
- data/spec/models/checkout_body_spec.rb +70 -0
- data/spec/models/checkout_items_spec.rb +64 -0
- data/spec/models/checkout_subscriptions_spec.rb +52 -0
- data/spec/models/customer_spec.rb +114 -0
- data/spec/models/error_spec.rb +46 -0
- data/spec/models/feature_spec.rb +58 -0
- data/spec/models/frontend_token_spec.rb +40 -0
- data/spec/models/inline_response_200_10_spec.rb +52 -0
- data/spec/models/inline_response_200_11_spec.rb +40 -0
- data/spec/models/inline_response_200_12_spec.rb +50 -0
- data/spec/models/inline_response_200_1_spec.rb +52 -0
- data/spec/models/inline_response_200_2_spec.rb +52 -0
- data/spec/models/inline_response_200_3_spec.rb +52 -0
- data/spec/models/inline_response_200_4_spec.rb +52 -0
- data/spec/models/inline_response_200_5_spec.rb +52 -0
- data/spec/models/inline_response_200_6_spec.rb +52 -0
- data/spec/models/inline_response_200_7_data_spec.rb +86 -0
- data/spec/models/inline_response_200_7_receipts_spec.rb +52 -0
- data/spec/models/inline_response_200_7_spec.rb +52 -0
- data/spec/models/inline_response_200_8_spec.rb +52 -0
- data/spec/models/inline_response_200_9_spec.rb +52 -0
- data/spec/models/inline_response_200_spec.rb +52 -0
- data/spec/models/inline_response_201_lines_spec.rb +82 -0
- data/spec/models/inline_response_201_spec.rb +88 -0
- data/spec/models/inline_response_400_spec.rb +40 -0
- data/spec/models/invoice_lines_spec.rb +70 -0
- data/spec/models/invoice_spec.rb +124 -0
- data/spec/models/issue_refund_payment_spec.rb +52 -0
- data/spec/models/limit_spec.rb +46 -0
- data/spec/models/payment_details_spec.rb +82 -0
- data/spec/models/price_spec.rb +86 -0
- data/spec/models/product_spec.rb +58 -0
- data/spec/models/product_tax_type_spec.rb +52 -0
- data/spec/models/refund_spec.rb +98 -0
- data/spec/models/seats_add_body_spec.rb +40 -0
- data/spec/models/seats_remove_body_spec.rb +40 -0
- data/spec/models/subscription_id_cancel_body_spec.rb +66 -0
- data/spec/models/subscription_id_extend_body_spec.rb +40 -0
- data/spec/models/subscription_id_plan_body_spec.rb +56 -0
- data/spec/models/subscription_id_price_body_spec.rb +50 -0
- data/spec/models/subscription_plan_spec.rb +118 -0
- data/spec/models/subscription_spec.rb +106 -0
- data/spec/models/subscription_start_body_spec.rb +86 -0
- data/spec/models/subscription_trial_body_spec.rb +58 -0
- data/spec/models/voucher_code_spec.rb +40 -0
- data/spec/spec_helper.rb +110 -0
- metadata +349 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#BillaBear
|
|
3
|
+
|
|
4
|
+
#The REST API provided by BillaBear
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.0.0
|
|
7
|
+
Contact: support@billabear.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 3.0.56
|
|
10
|
+
=end
|
|
11
|
+
|
|
12
|
+
require 'spec_helper'
|
|
13
|
+
require 'json'
|
|
14
|
+
|
|
15
|
+
# Unit tests for SwaggerClient::ProductsApi
|
|
16
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
17
|
+
# Please update as you see appropriate
|
|
18
|
+
describe 'ProductsApi' do
|
|
19
|
+
before do
|
|
20
|
+
# run before each test
|
|
21
|
+
@instance = SwaggerClient::ProductsApi.new
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
after do
|
|
25
|
+
# run after each test
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
describe 'test an instance of ProductsApi' do
|
|
29
|
+
it 'should create an instance of ProductsApi' do
|
|
30
|
+
expect(@instance).to be_instance_of(SwaggerClient::ProductsApi)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# unit tests for create_product
|
|
35
|
+
# Create
|
|
36
|
+
# Create a product
|
|
37
|
+
# @param body
|
|
38
|
+
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @return [String]
|
|
40
|
+
describe 'create_product 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 list_product
|
|
47
|
+
# List
|
|
48
|
+
# List all products
|
|
49
|
+
# @param [Hash] opts the optional parameters
|
|
50
|
+
# @option opts [Integer] :limit How many items to return at one time (max 100)
|
|
51
|
+
# @option opts [String] :last_key The key to be used in pagination to say what the last key of the previous page was
|
|
52
|
+
# @option opts [String] :name The name to search for
|
|
53
|
+
# @return [InlineResponse2008]
|
|
54
|
+
describe 'list_product test' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# unit tests for show_product_by_id
|
|
61
|
+
# Detail
|
|
62
|
+
# Info for a specific product
|
|
63
|
+
# @param product_id The id of the product to retrieve
|
|
64
|
+
# @param [Hash] opts the optional parameters
|
|
65
|
+
# @return [Product]
|
|
66
|
+
describe 'show_product_by_id test' do
|
|
67
|
+
it 'should work' do
|
|
68
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# unit tests for update_product
|
|
73
|
+
# Update
|
|
74
|
+
# Update a product
|
|
75
|
+
# @param product_id The id of the product to retrieve
|
|
76
|
+
# @param [Hash] opts the optional parameters
|
|
77
|
+
# @return [Product]
|
|
78
|
+
describe 'update_product test' do
|
|
79
|
+
it 'should work' do
|
|
80
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
81
|
+
end
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#BillaBear
|
|
3
|
+
|
|
4
|
+
#The REST API provided by BillaBear
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.0.0
|
|
7
|
+
Contact: support@billabear.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 3.0.56
|
|
10
|
+
=end
|
|
11
|
+
|
|
12
|
+
require 'spec_helper'
|
|
13
|
+
require 'json'
|
|
14
|
+
|
|
15
|
+
# Unit tests for SwaggerClient::ReceiptApi
|
|
16
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
17
|
+
# Please update as you see appropriate
|
|
18
|
+
describe 'ReceiptApi' do
|
|
19
|
+
before do
|
|
20
|
+
# run before each test
|
|
21
|
+
@instance = SwaggerClient::ReceiptApi.new
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
after do
|
|
25
|
+
# run after each test
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
describe 'test an instance of ReceiptApi' do
|
|
29
|
+
it 'should create an instance of ReceiptApi' do
|
|
30
|
+
expect(@instance).to be_instance_of(SwaggerClient::ReceiptApi)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# unit tests for download_receipt
|
|
35
|
+
# Download Receipt
|
|
36
|
+
# Returns the pdf blob for the Receipt
|
|
37
|
+
# @param receipt The id of the receipt
|
|
38
|
+
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @return [String]
|
|
40
|
+
describe 'download_receipt 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
|
+
end
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#BillaBear
|
|
3
|
+
|
|
4
|
+
#The REST API provided by BillaBear
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.0.0
|
|
7
|
+
Contact: support@billabear.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 3.0.56
|
|
10
|
+
=end
|
|
11
|
+
|
|
12
|
+
require 'spec_helper'
|
|
13
|
+
require 'json'
|
|
14
|
+
|
|
15
|
+
# Unit tests for SwaggerClient::RefundsApi
|
|
16
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
17
|
+
# Please update as you see appropriate
|
|
18
|
+
describe 'RefundsApi' do
|
|
19
|
+
before do
|
|
20
|
+
# run before each test
|
|
21
|
+
@instance = SwaggerClient::RefundsApi.new
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
after do
|
|
25
|
+
# run after each test
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
describe 'test an instance of RefundsApi' do
|
|
29
|
+
it 'should create an instance of RefundsApi' do
|
|
30
|
+
expect(@instance).to be_instance_of(SwaggerClient::RefundsApi)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# unit tests for get_refunds_for_customer
|
|
35
|
+
# List Customer Refunds
|
|
36
|
+
# List Customer Refund
|
|
37
|
+
# @param customer_id The id of the customer to retrieve
|
|
38
|
+
# @param [Hash] opts the optional parameters
|
|
39
|
+
# @option opts [Integer] :limit How many items to return at one time (max 100)
|
|
40
|
+
# @option opts [String] :last_key The key to be used in pagination to say what the last key of the previous page was
|
|
41
|
+
# @option opts [String] :name The name to search for
|
|
42
|
+
# @return [InlineResponse2002]
|
|
43
|
+
describe 'get_refunds_for_customer test' do
|
|
44
|
+
it 'should work' do
|
|
45
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# unit tests for list_refund
|
|
50
|
+
# List
|
|
51
|
+
# List all refund
|
|
52
|
+
# @param [Hash] opts the optional parameters
|
|
53
|
+
# @option opts [Integer] :limit How many items to return at one time (max 100)
|
|
54
|
+
# @option opts [String] :last_key The key to be used in pagination to say what the last key of the previous page was
|
|
55
|
+
# @option opts [String] :name The name to search for
|
|
56
|
+
# @return [InlineResponse2002]
|
|
57
|
+
describe 'list_refund test' do
|
|
58
|
+
it 'should work' do
|
|
59
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# unit tests for show_refund_by_id
|
|
64
|
+
# Detail
|
|
65
|
+
# Info for a specific Refund
|
|
66
|
+
# @param refund_id The id of the refund
|
|
67
|
+
# @param [Hash] opts the optional parameters
|
|
68
|
+
# @return [Refund]
|
|
69
|
+
describe 'show_refund_by_id test' do
|
|
70
|
+
it 'should work' do
|
|
71
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
end
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#BillaBear
|
|
3
|
+
|
|
4
|
+
#The REST API provided by BillaBear
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.0.0
|
|
7
|
+
Contact: support@billabear.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 3.0.56
|
|
10
|
+
=end
|
|
11
|
+
|
|
12
|
+
require 'spec_helper'
|
|
13
|
+
require 'json'
|
|
14
|
+
|
|
15
|
+
# Unit tests for SwaggerClient::SubscriptionsApi
|
|
16
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
17
|
+
# Please update as you see appropriate
|
|
18
|
+
describe 'SubscriptionsApi' do
|
|
19
|
+
before do
|
|
20
|
+
# run before each test
|
|
21
|
+
@instance = SwaggerClient::SubscriptionsApi.new
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
after do
|
|
25
|
+
# run after each test
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
describe 'test an instance of SubscriptionsApi' do
|
|
29
|
+
it 'should create an instance of SubscriptionsApi' do
|
|
30
|
+
expect(@instance).to be_instance_of(SwaggerClient::SubscriptionsApi)
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
# unit tests for add_seats_subscriptions
|
|
35
|
+
# Add Seats
|
|
36
|
+
# Adds seats to a per seat subscription<br><br><strong>Since 1.1.4</strong>
|
|
37
|
+
# @param body
|
|
38
|
+
# @param subscription_id The id of the subscription to retrieve
|
|
39
|
+
# @param [Hash] opts the optional parameters
|
|
40
|
+
# @return [InlineResponse20011]
|
|
41
|
+
describe 'add_seats_subscriptions test' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# unit tests for cancel_subscription
|
|
48
|
+
# Cancel Subscription
|
|
49
|
+
# Info for a specific subscription
|
|
50
|
+
# @param body
|
|
51
|
+
# @param subscription_id The id of the subscription to retrieve
|
|
52
|
+
# @param [Hash] opts the optional parameters
|
|
53
|
+
# @return [String]
|
|
54
|
+
describe 'cancel_subscription test' do
|
|
55
|
+
it 'should work' do
|
|
56
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# unit tests for change_subscription_price
|
|
61
|
+
# Change Price
|
|
62
|
+
# Changes the price being used for a price. Useful for changing pricing schedule or just price.
|
|
63
|
+
# @param body
|
|
64
|
+
# @param subscription_id The id of the subscription to retrieve
|
|
65
|
+
# @param [Hash] opts the optional parameters
|
|
66
|
+
# @return [InlineResponse20011]
|
|
67
|
+
describe 'change_subscription_price test' do
|
|
68
|
+
it 'should work' do
|
|
69
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
70
|
+
end
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
# unit tests for create_subscription
|
|
74
|
+
# Create Subscription
|
|
75
|
+
# Create subscription for a customer
|
|
76
|
+
# @param body
|
|
77
|
+
# @param customer_id The id of the customer to retrieve
|
|
78
|
+
# @param [Hash] opts the optional parameters
|
|
79
|
+
# @return [Subscription]
|
|
80
|
+
describe 'create_subscription test' do
|
|
81
|
+
it 'should work' do
|
|
82
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# unit tests for customer_change_subscription_plan
|
|
87
|
+
# Change Subscription Plan
|
|
88
|
+
# Change the subscription plan for a customer
|
|
89
|
+
# @param body
|
|
90
|
+
# @param subscription_id The id of the subscription to retrieve
|
|
91
|
+
# @param [Hash] opts the optional parameters
|
|
92
|
+
# @return [Subscription]
|
|
93
|
+
describe 'customer_change_subscription_plan test' do
|
|
94
|
+
it 'should work' do
|
|
95
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
# unit tests for extend_trial
|
|
100
|
+
# Extend Trial Subscription
|
|
101
|
+
# Extend a trial subscription so it's converted from a trial to a normal subscription.
|
|
102
|
+
# @param body
|
|
103
|
+
# @param subscription_id The id of the subscription to retrieve
|
|
104
|
+
# @param [Hash] opts the optional parameters
|
|
105
|
+
# @return [Subscription]
|
|
106
|
+
describe 'extend_trial test' do
|
|
107
|
+
it 'should work' do
|
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
# unit tests for get_active_for_customer
|
|
113
|
+
# List Customer Active Subscriptions
|
|
114
|
+
# List all Active customer subscriptions
|
|
115
|
+
# @param customer_id The id of the customer to retrieve
|
|
116
|
+
# @param [Hash] opts the optional parameters
|
|
117
|
+
# @return [InlineResponse2006]
|
|
118
|
+
describe 'get_active_for_customer test' do
|
|
119
|
+
it 'should work' do
|
|
120
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
# unit tests for get_for_customer
|
|
125
|
+
# List Customer Subscriptions
|
|
126
|
+
# List all customer subscriptions<br><br><strong>Since 1.1</strong>
|
|
127
|
+
# @param customer_id The id of the customer to retrieve
|
|
128
|
+
# @param [Hash] opts the optional parameters
|
|
129
|
+
# @return [InlineResponse2006]
|
|
130
|
+
describe 'get_for_customer test' do
|
|
131
|
+
it 'should work' do
|
|
132
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
|
|
136
|
+
# unit tests for list_subscription_plans
|
|
137
|
+
# List Subscription Plans
|
|
138
|
+
# List all subscriptions plans
|
|
139
|
+
# @param [Hash] opts the optional parameters
|
|
140
|
+
# @option opts [Integer] :limit How many items to return at one time (max 100)
|
|
141
|
+
# @option opts [String] :last_key The key to be used in pagination to say what the last key of the previous page was
|
|
142
|
+
# @return [InlineResponse20010]
|
|
143
|
+
describe 'list_subscription_plans test' do
|
|
144
|
+
it 'should work' do
|
|
145
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
146
|
+
end
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
# unit tests for list_subscriptions
|
|
150
|
+
# List
|
|
151
|
+
# List all subscriptions
|
|
152
|
+
# @param [Hash] opts the optional parameters
|
|
153
|
+
# @option opts [Integer] :limit How many items to return at one time (max 100)
|
|
154
|
+
# @option opts [String] :last_key The key to be used in pagination to say what the last key of the previous page was
|
|
155
|
+
# @return [InlineResponse2006]
|
|
156
|
+
describe 'list_subscriptions test' do
|
|
157
|
+
it 'should work' do
|
|
158
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
159
|
+
end
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# unit tests for remove_seats_subscriptions
|
|
163
|
+
# Remove Seats
|
|
164
|
+
# Remove seats to a per seat subscription<br><br><strong>Since 1.1.4</strong>
|
|
165
|
+
# @param body
|
|
166
|
+
# @param subscription_id The id of the subscription to retrieve
|
|
167
|
+
# @param [Hash] opts the optional parameters
|
|
168
|
+
# @return [InlineResponse20011]
|
|
169
|
+
describe 'remove_seats_subscriptions test' do
|
|
170
|
+
it 'should work' do
|
|
171
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
172
|
+
end
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
# unit tests for show_subscription_by_id
|
|
176
|
+
# Detail
|
|
177
|
+
# Info for a specific subscription
|
|
178
|
+
# @param subscription_id The id of the subscription to retrieve
|
|
179
|
+
# @param [Hash] opts the optional parameters
|
|
180
|
+
# @return [Subscription]
|
|
181
|
+
describe 'show_subscription_by_id test' do
|
|
182
|
+
it 'should work' do
|
|
183
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
184
|
+
end
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
# unit tests for start_trial
|
|
188
|
+
# Start Trial Subscription For Customer
|
|
189
|
+
# Start subscription for a customer
|
|
190
|
+
# @param body
|
|
191
|
+
# @param customer_id The id of the customer to retrieve
|
|
192
|
+
# @param [Hash] opts the optional parameters
|
|
193
|
+
# @return [Subscription]
|
|
194
|
+
describe 'start_trial test' do
|
|
195
|
+
it 'should work' do
|
|
196
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
197
|
+
end
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
end
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#BillaBear
|
|
3
|
+
|
|
4
|
+
#The REST API provided by BillaBear
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 1.0.0
|
|
7
|
+
Contact: support@billabear.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 3.0.56
|
|
10
|
+
=end
|
|
11
|
+
|
|
12
|
+
require 'spec_helper'
|
|
13
|
+
|
|
14
|
+
describe SwaggerClient::ApiClient do
|
|
15
|
+
context 'initialization' do
|
|
16
|
+
context 'URL stuff' do
|
|
17
|
+
context 'host' do
|
|
18
|
+
it 'removes http from host' do
|
|
19
|
+
SwaggerClient.configure { |c| c.host = 'http://example.com' }
|
|
20
|
+
expect(SwaggerClient::Configuration.default.host).to eq('example.com')
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
it 'removes https from host' do
|
|
24
|
+
SwaggerClient.configure { |c| c.host = 'https://wookiee.com' }
|
|
25
|
+
expect(SwaggerClient::ApiClient.default.config.host).to eq('wookiee.com')
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
it 'removes trailing path from host' do
|
|
29
|
+
SwaggerClient.configure { |c| c.host = 'hobo.com/v4' }
|
|
30
|
+
expect(SwaggerClient::Configuration.default.host).to eq('hobo.com')
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
context 'base_path' do
|
|
35
|
+
it "prepends a slash to base_path" do
|
|
36
|
+
SwaggerClient.configure { |c| c.base_path = 'v4/dog' }
|
|
37
|
+
expect(SwaggerClient::Configuration.default.base_path).to eq('/v4/dog')
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
it "doesn't prepend a slash if one is already there" do
|
|
41
|
+
SwaggerClient.configure { |c| c.base_path = '/v4/dog' }
|
|
42
|
+
expect(SwaggerClient::Configuration.default.base_path).to eq('/v4/dog')
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
it "ends up as a blank string if nil" do
|
|
46
|
+
SwaggerClient.configure { |c| c.base_path = nil }
|
|
47
|
+
expect(SwaggerClient::Configuration.default.base_path).to eq('')
|
|
48
|
+
end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe 'params_encoding in #build_request' do
|
|
54
|
+
let(:config) { SwaggerClient::Configuration.new }
|
|
55
|
+
let(:api_client) { SwaggerClient::ApiClient.new(config) }
|
|
56
|
+
|
|
57
|
+
it 'defaults to nil' do
|
|
58
|
+
expect(SwaggerClient::Configuration.default.params_encoding).to eq(nil)
|
|
59
|
+
expect(config.params_encoding).to eq(nil)
|
|
60
|
+
|
|
61
|
+
request = api_client.build_request(:get, '/test')
|
|
62
|
+
expect(request.options[:params_encoding]).to eq(nil)
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
it 'can be customized' do
|
|
66
|
+
config.params_encoding = :multi
|
|
67
|
+
request = api_client.build_request(:get, '/test')
|
|
68
|
+
expect(request.options[:params_encoding]).to eq(:multi)
|
|
69
|
+
end
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
describe 'timeout in #build_request' do
|
|
73
|
+
let(:config) { SwaggerClient::Configuration.new }
|
|
74
|
+
let(:api_client) { SwaggerClient::ApiClient.new(config) }
|
|
75
|
+
|
|
76
|
+
it 'defaults to 0' do
|
|
77
|
+
expect(SwaggerClient::Configuration.default.timeout).to eq(0)
|
|
78
|
+
expect(config.timeout).to eq(0)
|
|
79
|
+
|
|
80
|
+
request = api_client.build_request(:get, '/test')
|
|
81
|
+
expect(request.options[:timeout]).to eq(0)
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
it 'can be customized' do
|
|
85
|
+
config.timeout = 100
|
|
86
|
+
request = api_client.build_request(:get, '/test')
|
|
87
|
+
expect(request.options[:timeout]).to eq(100)
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
describe '#deserialize' do
|
|
92
|
+
it "handles Array<Integer>" do
|
|
93
|
+
api_client = SwaggerClient::ApiClient.new
|
|
94
|
+
headers = { 'Content-Type' => 'application/json' }
|
|
95
|
+
response = double('response', headers: headers, body: '[12, 34]')
|
|
96
|
+
data = api_client.deserialize(response, 'Array<Integer>')
|
|
97
|
+
expect(data).to be_instance_of(Array)
|
|
98
|
+
expect(data).to eq([12, 34])
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
it 'handles Array<Array<Integer>>' do
|
|
102
|
+
api_client = SwaggerClient::ApiClient.new
|
|
103
|
+
headers = { 'Content-Type' => 'application/json' }
|
|
104
|
+
response = double('response', headers: headers, body: '[[12, 34], [56]]')
|
|
105
|
+
data = api_client.deserialize(response, 'Array<Array<Integer>>')
|
|
106
|
+
expect(data).to be_instance_of(Array)
|
|
107
|
+
expect(data).to eq([[12, 34], [56]])
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
it 'handles Hash<String, String>' do
|
|
111
|
+
api_client = SwaggerClient::ApiClient.new
|
|
112
|
+
headers = { 'Content-Type' => 'application/json' }
|
|
113
|
+
response = double('response', headers: headers, body: '{"message": "Hello"}')
|
|
114
|
+
data = api_client.deserialize(response, 'Hash<String, String>')
|
|
115
|
+
expect(data).to be_instance_of(Hash)
|
|
116
|
+
expect(data).to eq(:message => 'Hello')
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
describe "#object_to_hash" do
|
|
121
|
+
it 'ignores nils and includes empty arrays' do
|
|
122
|
+
# uncomment below to test object_to_hash for model
|
|
123
|
+
# api_client = SwaggerClient::ApiClient.new
|
|
124
|
+
# _model = SwaggerClient::ModelName.new
|
|
125
|
+
# update the model attribute below
|
|
126
|
+
# _model.id = 1
|
|
127
|
+
# update the expected value (hash) below
|
|
128
|
+
# expected = {id: 1, name: '', tags: []}
|
|
129
|
+
# expect(api_client.object_to_hash(_model)).to eq(expected)
|
|
130
|
+
end
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
describe '#build_collection_param' do
|
|
134
|
+
let(:param) { ['aa', 'bb', 'cc'] }
|
|
135
|
+
let(:api_client) { SwaggerClient::ApiClient.new }
|
|
136
|
+
|
|
137
|
+
it 'works for csv' do
|
|
138
|
+
expect(api_client.build_collection_param(param, :csv)).to eq('aa,bb,cc')
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
it 'works for ssv' do
|
|
142
|
+
expect(api_client.build_collection_param(param, :ssv)).to eq('aa bb cc')
|
|
143
|
+
end
|
|
144
|
+
|
|
145
|
+
it 'works for tsv' do
|
|
146
|
+
expect(api_client.build_collection_param(param, :tsv)).to eq("aa\tbb\tcc")
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
it 'works for pipes' do
|
|
150
|
+
expect(api_client.build_collection_param(param, :pipes)).to eq('aa|bb|cc')
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
it 'works for multi' do
|
|
154
|
+
expect(api_client.build_collection_param(param, :multi)).to eq(['aa', 'bb', 'cc'])
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
it 'fails for invalid collection format' do
|
|
158
|
+
expect(proc { api_client.build_collection_param(param, :INVALID) }).to raise_error(RuntimeError, 'unknown collection format: :INVALID')
|
|
159
|
+
end
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
describe '#json_mime?' do
|
|
163
|
+
let(:api_client) { SwaggerClient::ApiClient.new }
|
|
164
|
+
|
|
165
|
+
it 'works' do
|
|
166
|
+
expect(api_client.json_mime?(nil)).to eq false
|
|
167
|
+
expect(api_client.json_mime?('')).to eq false
|
|
168
|
+
|
|
169
|
+
expect(api_client.json_mime?('application/json')).to eq true
|
|
170
|
+
expect(api_client.json_mime?('application/json; charset=UTF8')).to eq true
|
|
171
|
+
expect(api_client.json_mime?('APPLICATION/JSON')).to eq true
|
|
172
|
+
|
|
173
|
+
expect(api_client.json_mime?('application/xml')).to eq false
|
|
174
|
+
expect(api_client.json_mime?('text/plain')).to eq false
|
|
175
|
+
expect(api_client.json_mime?('application/jsonp')).to eq false
|
|
176
|
+
end
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
describe '#select_header_accept' do
|
|
180
|
+
let(:api_client) { SwaggerClient::ApiClient.new }
|
|
181
|
+
|
|
182
|
+
it 'works' do
|
|
183
|
+
expect(api_client.select_header_accept(nil)).to be_nil
|
|
184
|
+
expect(api_client.select_header_accept([])).to be_nil
|
|
185
|
+
|
|
186
|
+
expect(api_client.select_header_accept(['application/json'])).to eq('application/json')
|
|
187
|
+
expect(api_client.select_header_accept(['application/xml', 'application/json; charset=UTF8'])).to eq('application/json; charset=UTF8')
|
|
188
|
+
expect(api_client.select_header_accept(['APPLICATION/JSON', 'text/html'])).to eq('APPLICATION/JSON')
|
|
189
|
+
|
|
190
|
+
expect(api_client.select_header_accept(['application/xml'])).to eq('application/xml')
|
|
191
|
+
expect(api_client.select_header_accept(['text/html', 'application/xml'])).to eq('text/html,application/xml')
|
|
192
|
+
end
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
describe '#select_header_content_type' do
|
|
196
|
+
let(:api_client) { SwaggerClient::ApiClient.new }
|
|
197
|
+
|
|
198
|
+
it 'works' do
|
|
199
|
+
expect(api_client.select_header_content_type(nil)).to eq('application/json')
|
|
200
|
+
expect(api_client.select_header_content_type([])).to eq('application/json')
|
|
201
|
+
|
|
202
|
+
expect(api_client.select_header_content_type(['application/json'])).to eq('application/json')
|
|
203
|
+
expect(api_client.select_header_content_type(['application/xml', 'application/json; charset=UTF8'])).to eq('application/json; charset=UTF8')
|
|
204
|
+
expect(api_client.select_header_content_type(['APPLICATION/JSON', 'text/html'])).to eq('APPLICATION/JSON')
|
|
205
|
+
expect(api_client.select_header_content_type(['application/xml'])).to eq('application/xml')
|
|
206
|
+
expect(api_client.select_header_content_type(['text/plain', 'application/xml'])).to eq('text/plain')
|
|
207
|
+
end
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
describe '#sanitize_filename' do
|
|
211
|
+
let(:api_client) { SwaggerClient::ApiClient.new }
|
|
212
|
+
|
|
213
|
+
it 'works' do
|
|
214
|
+
expect(api_client.sanitize_filename('sun')).to eq('sun')
|
|
215
|
+
expect(api_client.sanitize_filename('sun.gif')).to eq('sun.gif')
|
|
216
|
+
expect(api_client.sanitize_filename('../sun.gif')).to eq('sun.gif')
|
|
217
|
+
expect(api_client.sanitize_filename('/var/tmp/sun.gif')).to eq('sun.gif')
|
|
218
|
+
expect(api_client.sanitize_filename('./sun.gif')).to eq('sun.gif')
|
|
219
|
+
expect(api_client.sanitize_filename('..\sun.gif')).to eq('sun.gif')
|
|
220
|
+
expect(api_client.sanitize_filename('\var\tmp\sun.gif')).to eq('sun.gif')
|
|
221
|
+
expect(api_client.sanitize_filename('c:\var\tmp\sun.gif')).to eq('sun.gif')
|
|
222
|
+
expect(api_client.sanitize_filename('.\sun.gif')).to eq('sun.gif')
|
|
223
|
+
end
|
|
224
|
+
end
|
|
225
|
+
end
|