當前位置: 首頁>>代碼示例>>Python>>正文


Python client.Zuora類代碼示例

本文整理匯總了Python中client.Zuora的典型用法代碼示例。如果您正苦於以下問題:Python Zuora類的具體用法?Python Zuora怎麽用?Python Zuora使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Zuora類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_cancel_subscription_update_called

 def test_cancel_subscription_update_called(self):
     z = Zuora(self.zuora_settings)
     z.create_product_amendment = mock.Mock()
     z.update_product_amendment = mock.Mock()
     z.cancel_subscription(subscription_id=mock.Mock())
     assert z.create_product_amendment.call_count == 1
     assert z.update_product_amendment.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:7,代碼來源:tests.py

示例2: test_get_payment_method_query_called

 def test_get_payment_method_query_called(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_payment_method(payment_method_id=mock.Mock())
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:8,代碼來源:tests.py

示例3: test_get_account_query_called

 def test_get_account_query_called(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_account(user_id=42)
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:8,代碼來源:tests.py

示例4: test_get_contact_query_called

 def test_get_contact_query_called(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_contact(email='[email protected]', account_id=mock.Mock())
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:8,代碼來源:tests.py

示例5: test_get_product_rate_plan_charges_product_rate_plan_id

 def test_get_product_rate_plan_charges_product_rate_plan_id(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_product_rate_plan_charges(product_rate_plan_id='df2423dffgf')
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:8,代碼來源:tests.py

示例6: test_get_products_shortcodes

 def test_get_products_shortcodes(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_products(shortcodes=['sub_bronze', 'sub_gold'])
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:8,代碼來源:tests.py

示例7: test_get_invoice_items_query_called

 def test_get_invoice_items_query_called(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_invoice_items(invoice_id=mock.Mock(),
                         subscription_id=mock.Mock())
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:9,代碼來源:tests.py

示例8: test_update_product_ammendment_update_called

 def test_update_product_ammendment_update_called(self):
     z = Zuora(self.zuora_settings)
     z.client = mock.Mock()
     z.update = mock.Mock()
     response = mock.Mock()
     response.Success = True
     z.update.return_value = [response]
     z.update_product_amendment(effective_date=mock.Mock(),
                             zAmendment=mock.Mock())
     assert z.update.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:10,代碼來源:tests.py

示例9: test_update_account_update_called

 def test_update_account_update_called(self):
     z = Zuora(self.zuora_settings)
     z.client = mock.Mock()
     z.update = mock.Mock()
     response = mock.Mock()
     response.Success = True
     z.update.return_value = [response]
     z.update_account(account_id=mock.Mock(),
                      update_dict={})
     assert z.update.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:10,代碼來源:tests.py

示例10: test_get_invoice_pdf_query_called

 def test_get_invoice_pdf_query_called(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     zInvoice = mock.Mock()
     zInvoice.Body = mock.Mock()
     response.records = [zInvoice]
     z.query.return_value = response
     z.get_invoice_pdf(invoice_id=mock.Mock())
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:10,代碼來源:tests.py

示例11: test_get_product_rate_plan_charge_tiers_product_rate_plan_charge_id_list

 def test_get_product_rate_plan_charge_tiers_product_rate_plan_charge_id_list(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_product_rate_plan_charge_tiers(
                     product_rate_plan_charge_id_list=['df2423dffgf',
                                                       'fdsgd234233g'])
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:10,代碼來源:tests.py

示例12: test_get_payment_methods_query_called

 def test_get_payment_methods_query_called(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     response.records = [1]
     z.query.return_value = response
     z.get_payment_methods(account_id=mock.Mock(),
                           email='[email protected]',
                           phone=mock.Mock())
     assert z.query.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:10,代碼來源:tests.py

示例13: test_get_payment_methods_get_payment_method_called

 def test_get_payment_methods_get_payment_method_called(self):
     z = Zuora(self.zuora_settings)
     z.query = mock.Mock()
     response = mock.Mock()
     zAccount = mock.Mock()
     zAccount.DefaultPaymentMethodId = mock.Mock()
     response.records = [zAccount]
     z.query.return_value = response
     z.get_payment_methods(account_number=mock.Mock())
     assert z.query.call_count == 2
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:10,代碼來源:tests.py

示例14: test_subscribe_call_called

 def test_subscribe_call_called(self):
     z = Zuora(self.zuora_settings)
     z.client = mock.Mock()
     z.make_account = mock.Mock()
     z.make_contact = mock.Mock()
     z.make_rate_plan_data = mock.Mock()
     z.make_subscription = mock.Mock()
     z.call = mock.Mock()
     z.call.return_value = mock.Mock()
     z.subscribe(product_rate_plan_id=mock.Mock(),
                 monthly_term=mock.Mock(),
                 zAccount=None,
                 zContact=None,
                 process_payments_flag=True,
                 generate_invoice_flag=True,
                 generate_preview=False,
                 account_name=mock.Mock(),
                 subscription_name=mock.Mock(),
                 recurring=True,
                 payment_method=mock.Mock(),
                 order_id=mock.Mock(),
                 user=mock.Mock(),
                 billing_address=mock.Mock(),)
     assert z.make_account.call_count == 1
     assert z.make_rate_plan_data.call_count == 1
     assert z.make_subscription.call_count == 1
     assert z.call.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:27,代碼來源:tests.py

示例15: test_create_product_ammendment_create_called

 def test_create_product_ammendment_create_called(self):
     z = Zuora(self.zuora_settings)
     z.client = mock.Mock()
     z.create = mock.Mock()
     response = mock.Mock()
     response.Success = True
     z.create.return_value = [response]
     z.create_product_amendment(effective_date=mock.Mock(),
                             subscription_id=mock.Mock(),
                             name_prepend='something',
                             amendment_type=mock.Mock())
     assert z.create.call_count == 1
開發者ID:mapmyfitness,項目名稱:python-zuora,代碼行數:12,代碼來源:tests.py


注:本文中的client.Zuora類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。