Example #1
0
class UrlGenerationTest(unittest.TestCase):
    def setUp(self):
        unittest.TestCase.setUp(self)
        self.stripe = Stripe('api_key', blocking=True)

    def resource_without_id_test(self):
        '''
        self.stripe.charges.url      should == https://api_key:@api.stripe.com/v1/charges
        self.stripe.customers.url    should == https://api_key:@api.stripe.com/v1/customers
        self.stripe.invoices.url     should == https://api_key:@api.stripe.com/v1/invoices
        self.stripe.invoiceitems.url should == https://api_key:@api.stripe.com/v1/invoiceitems
        self.stripe.tokens.url       should == https://api_key:@api.stripe.com/v1/tokens
        self.stripe.events.url       should == https://api_key:@api.stripe.com/v1/events
        self.stripe.plans.url        should == https://api_key:@api.stripe.com/v1/plans
        self.stripe.coupons.url      should == https://api_key:@api.stripe.com/v1/coupons
        '''
        for resource in ['charges', 'customers', 'invoices', 'invoiceitems', 'tokens', 'events', 'plans', 'coupons']:
            expectation = '%s/%s' % (self.stripe.api_endpoint, resource)

            getattr(self.stripe, resource)  # Equivalent of self.stripe.charges
            self.assertEqual(self.stripe.url, expectation)
            self.stripe.reset_url()


    def resource_with_id_test(self):
        '''
        self.stripe.charges.id('charge_id').url        should == https://api_key:@api.stripe.com/v1/charges/charge_id
        self.stripe.customers.id('customer_id').url    should == https://api_key:@api.stripe.com/v1/customers/customer_id
        self.stripe.invoices.id('invoice_id').url      should == https://api_key:@api.stripe.com/v1/invoices/invoice_id
        self.stripe.invoiceitems.id('invoiceitem').url should == https://api_key:@api.stripe.com/v1/invoiceitems/invoiceitem_id
        self.stripe.tokens.id('token_id').url          should == https://api_key:@api.stripe.com/v1/tokens/token_id
        self.stripe.events.id('event_id').url          should == https://api_key:@api.stripe.com/v1/events/event_id
        self.stripe.plans.id('plan_id').url            should == https://api_key:@api.stripe.com/v1/plans/plan_id
        self.stripe.coupons.id('coupon_id').url        should == https://api_key:@api.stripe.com/v1/coupons/coupon_id
        '''
        for resource in ['charges', 'customers', 'invoices', 'invoiceitems', 'tokens', 'events']:
            id = resource[:-1] + '_id'
            expectation = '%s/%s/%s' % (self.stripe.api_endpoint, resource, id)

            getattr(self.stripe, resource)  # Equivalent of self.stripe.charges
            self.stripe.id(id)

            self.assertEqual(self.stripe.url, expectation)
            self.stripe.reset_url()


    def resource_after_id_test(self):
        '''
        self.stripe.customers.id('customer_id').subscription.url
            should == https://api_key:@api.stripe.com/v1/customers/customer_id/subscription
        '''
        id = 'customer_id'
        expectation = '%s/customers/%s/subscription' % (self.stripe.api_endpoint, id)

        self.stripe.customers.id(id).subscription

        self.assertEqual(self.stripe.url, expectation)
        self.stripe.reset_url()


    def nested_resource_test(self):
        '''
        self.stripe.invoices.incoming.url
            should == https://api_key:@api.stripe.com/v1/invoices/incoming
        '''
        expectation = '%s/invoices/incoming' % (self.stripe.api_endpoint)

        self.stripe.invoices.incoming

        self.assertEqual(self.stripe.url, expectation)
        self.stripe.reset_url()
Example #2
0
 def setUp(self):
     unittest.TestCase.setUp(self)
     self.stripe = Stripe('api_key', blocking=True)
Example #3
0
define("cookie_secret",
       default="sooooooosecret",
       help="Your secret cookie dough",
       type=str)
define("port", default="8000", help="Listening port", type=str)
define("stripe_publishable_key",
       default="Your Stripe public key",
       help="",
       type=str)
define("stripe_private_key",
       default="Your Stripe private key",
       help="",
       type=str)

tornado.options.parse_command_line()
stripe = Stripe(options.stripe_private_key, blocking=False)

# Load plans from JSON file, move to DB
stripe_plans = json.load(open('plans.json', 'rb'))


class BaseHandler(tornado.web.RequestHandler):
    @property
    def db(self):
        return self.application.db


class LandingHandler(BaseHandler):
    def get(self):
        self.render("main.html")