1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
from tests.test_helper import *
class TestPlan(unittest.TestCase):
def test_all_returns_empty_list(self):
Configuration.configure(
Environment.Development,
"test_merchant_id",
"test_public_key",
"test_private_key"
)
plans = Plan.all()
self.assertEquals(plans, [])
Configuration.configure(
Environment.Development,
"integration_merchant_id",
"integration_public_key",
"integration_private_key"
)
def test_all_returns_all_the_plans(self):
plan_token = str(random.randint(1, 1000000))
attributes = {
"id": plan_token,
"billing_day_of_month": 1,
"billing_frequency": 1,
"currency_iso_code": "USD",
"description": "some description",
"name": "python test plan",
"number_of_billing_cycles": 1,
"price": "1.00",
}
Configuration.instantiate().http().post("/plans/create_plan_for_tests", {"plan": attributes})
add_on_attributes = {
"amount": "100.00",
"description": "some description",
"plan_id": plan_token,
"kind": "add_on",
"name": "python_add_on",
"never_expires": False,
"number_of_billing_cycles": 1
}
Configuration.instantiate().http().post("/modifications/create_modification_for_tests", {"modification": add_on_attributes})
discount_attributes = {
"amount": "100.00",
"description": "some description",
"plan_id": plan_token,
"kind": "discount",
"name": "python_discount",
"never_expires": False,
"number_of_billing_cycles": 1
}
Configuration.instantiate().http().post("/modifications/create_modification_for_tests", {"modification": discount_attributes})
plans = Plan.all()
for plan in plans:
if plan.id == plan_token:
actual_plan = plan
self.assertNotEquals(None, actual_plan)
self.assertEquals(attributes["billing_day_of_month"], 1)
self.assertEquals(attributes["billing_frequency"], 1)
self.assertEquals(attributes["currency_iso_code"], "USD")
self.assertEquals(attributes["description"], "some description")
self.assertEquals(attributes["name"], "python test plan")
self.assertEquals(attributes["number_of_billing_cycles"], 1)
self.assertEquals(attributes["price"], "1.00")
self.assertEquals(add_on_attributes["name"], actual_plan.add_ons[0].name)
self.assertEquals(discount_attributes["name"], actual_plan.discounts[0].name)
|