def test_reset_password(self):
        """
        Tests for person_views.reset_password
        """

        def email_contains_password(client, response, testcase):
            """ Checks that the password of the default user is in 
            the first email in the outbox. """

            person = Person.objects.get(username="******")
            self.assertEqual(mail.outbox[0].to, [person.email])
            pattern = re.compile("assword: *(.{7})\n")
            matches = pattern.search(mail.outbox[0].body)
            new_password = matches.group(1)

            testcase.assertTrue(person.check_password(new_password))

        self.assertState(
            "GET/POST", RESET_PATH, [causes.person_not_logged_in, causes.invalid_domain], [effects.status(404)]
        )

        self.assertState("GET/POST", RESET_PATH, [causes.person_logged_in, causes.valid_domain], [effects.status(403)])
        self.assertState(
            "GET",
            RESET_PATH,
            [causes.person_not_logged_in, causes.valid_domain],
            [effects.rendered("account/reset_password_form.html"), effects.status(200)],
        )
        self.assertState(
            "POST",
            RESET_PATH,
            [causes.person_not_logged_in, causes.valid_domain, causes.invalid_username],
            [effects.outbox_len(0), effects.rendered("account/reset_password_form.html")],
        )
        self.assertState(
            "POST",
            RESET_PATH,
            [causes.person_not_logged_in, causes.valid_domain, causes.valid_username],
            [
                effects.outbox_len(1),
                email_contains_password,
                effects.rendered("account/reset_password_success.html"),
                effects.status(200),
            ],
        )
示例#2
0
    def test_upgrade(self):

        security.check(self, UPGRADE_PATH % 2, causes.ssl)
        security.require_ssl(self, UPGRADE_PATH % 2)

        #-------------------------------------------------
        # Show Form
        #-------------------------------------------------
        self.assertState('GET', UPGRADE_PATH % 2, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_payment_method,
        ], [effects.rendered('account/upgrade_form.html')])

        #-------------------------------------------------
        # If invalid subscription level, 404 - Not Found
        #-------------------------------------------------
        self.assertState('GET/POST', UPGRADE_PATH % 666, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_payment_method,
        ], [effects.status(404)])
        #-------------------------------------------------
        # If account alreay has subscription label, 403 - Forbidden
        #-------------------------------------------------
        self.assertState('POST', UPGRADE_PATH % 1, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_payment_method,
        ], [effects.status(403)])
        #-------------------------------------------------
        # If everything is valid, and the account has a
        # RecurringPayment, change level and change payment
        #-------------------------------------------------
        self.assertState('POST', UPGRADE_PATH % 2, [
            causes.ssl,
            account_has_subscription_level(1),
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_payment_method,
        ], [
            gateway_change_called,
            effects.redirected('/account/'),
            subscription_level_is(2)
        ])
        #-------------------------------------------------
        # If the account has an inactive RecurringPayment,
        # new CC info is required
        #-------------------------------------------------
        self.assertState('POST', UPGRADE_PATH % 2, [
            causes.ssl,
            account_has_subscription_level(1), causes.valid_domain,
            causes.owner_logged_in, account_has_inactive_payment_method,
            causes.params(**change_payment_method_params)
        ], [
            gateway_change_called,
            effects.redirected('/account/'),
            subscription_level_is(2)
        ])
        #-------------------------------------------------
        # If the account does not have a RecurringPayment,
        # credit card params are required.
        #-------------------------------------------------
        self.assertState('POST', UPGRADE_PATH % 2, [
            causes.ssl,
            account_has_subscription_level(1),
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_no_payment_method,
        ], [
            effects.rendered('account/upgrade_form.html'),
            subscription_level_is(1)
        ])
        #-------------------------------------------------
        # If the account doesn't have a RecurringPayment,
        # and you've provided billing information, change
        # subscription level.
        #-------------------------------------------------
        self.assertState('POST', UPGRADE_PATH % 2, [
            causes.ssl,
            account_has_subscription_level(1), causes.valid_domain,
            causes.owner_logged_in, account_has_no_payment_method,
            causes.params(**change_payment_method_params)
        ], [
            gateway_start_called,
            effects.redirected('/account/'),
            subscription_level_is(2)
        ])

        #-------------------------------------------------
        # If the gateway returns an unrecognized response,
        # show a special message & email the administrator.
        #-------------------------------------------------
        self.assertState('POST', UPGRADE_PATH % 2, [
            causes.ssl,
            account_has_subscription_level(1),
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_no_payment_method,
            causes.params(**change_payment_method_params),
            payment_response_error,
        ], [
            effects.outbox_len(1),
            effects.rendered('account/payment_create_error.html'),
            subscription_level_is(1)
        ])

        #-------------------------------------------------
        # If the gateway does not accept the payment info,
        # show the form.
        #-------------------------------------------------
        self.assertState('POST', UPGRADE_PATH % 2, [
            causes.ssl,
            account_has_subscription_level(1),
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_no_payment_method,
            causes.params(**change_payment_method_params),
            payment_request_error,
        ], [
            effects.rendered('account/upgrade_form.html'),
            effects.status(200)
        ])
示例#3
0
    def test_cancel_payment_method(self):
        security.check(self, CANCEL_PM_PATH)

        #-------------------------------------------------
        # If the account does NOT have a RecurringPayment,
        # then the account is deactivated immediately.
        #-------------------------------------------------
        self.assertState('POST', CANCEL_PM_PATH, [
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_no_payment_method,
        ], [
            effects.field_value(Account, {'pk': 1}, active=False),
            effects.redirected('/account/reactivate_free_account/')
        ])

        #-------------------------------------------------
        # If the account has a RecurringPayment, show the form
        #-------------------------------------------------
        self.assertState('GET', CANCEL_PM_PATH, [
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_payment_method,
        ], [
            effects.field_value(Account, {'pk': 1}, active=True),
            effects.rendered('account/payment_cancel_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If the account does not have a RecurringPayment, show the form
        #-------------------------------------------------
        self.assertState('GET', CANCEL_PM_PATH, [
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_no_payment_method,
        ], [
            effects.field_value(Account, {'pk': 1}, active=True),
            effects.rendered('account/payment_cancel_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If the form is posted, and a payment exists, the
        # payment is canceled. Note that it is not deleted.
        # Instead, the inactive flag is set, which triggers
        # the account for suspension whenever payment runs
        # out.
        #-------------------------------------------------
        self.assertState('POST', CANCEL_PM_PATH, [
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_payment_method,
        ], [
            effects.field_value(Account, {'pk': 1}, active=True),
            effects.redirected('/account/'),
            effects.count(1, RecurringPayment, account__pk=1),
            payment_is_inactive,
        ])

        #-------------------------------------------------
        # If a gateway error is returned on cancel, show
        # the error page and email admin
        #-------------------------------------------------
        self.assertState('POST', CANCEL_PM_PATH, [
            causes.valid_domain,
            causes.owner_logged_in,
            account_has_payment_method,
            payment_response_error_on_cancel,
        ], [
            effects.field_value(Account, {'pk': 1}, active=True),
            effects.outbox_len(1),
            effects.rendered('account/payment_cancel_error.html'),
            effects.count(1, RecurringPayment, account__pk=1),
            payment_is_active,
        ])
示例#4
0
    def test_change_payment_method(self):
        security.check_account_inactive_ok(self, CHANGE_PM_PATH, causes.ssl)
        security.require_ssl(self, CHANGE_PM_PATH)

        #-------------------------------------------------
        # The form is shown
        #-------------------------------------------------
        self.assertState('GET/POST', CHANGE_PM_PATH, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            causes.no_parameters,
        ], [
            effects.rendered('account/payment_method_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # The form is shown if input is invalid
        #-------------------------------------------------
        self.assertState('POST', CHANGE_PM_PATH, [
            causes.ssl, causes.valid_domain, causes.owner_logged_in,
            causes.no_parameters,
            causes.params(first_name='billy',
                          last_name='bob',
                          card_number='411111111111',
                          card_expiration=None)
        ], [
            effects.rendered('account/payment_method_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If input is valid, a RecurringPayment is created
        #-------------------------------------------------
        self.assertState('POST', CHANGE_PM_PATH, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            causes.no_parameters,
            causes.params(first_name='billy',
                          last_name='bob',
                          card_number='411111111111',
                          card_expiration=date.today()),
            account_has_no_payment_method,
        ], [
            effects.exists(RecurringPayment, account__subdomain='starr'),
            effects.rendered('account/payment_method_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If input is valid, and a RecurringPayment exists,
        # the old RecurringPayment is deleted and a new one
        # is created.
        #-------------------------------------------------
        self.assertState('POST', CHANGE_PM_PATH, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            causes.no_parameters,
            causes.params(**change_payment_method_params),
            account_has_payment_method,
        ], [
            gateway_cancel_called, new_payment_starts_when_old_one_stops,
            effects.exists(RecurringPayment, account__pk=1),
            effects.rendered('account/payment_method_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If we get a PeymentRequestError, it means that
        # the user probably entered some invalid info.
        # If the payment gateway returned this error, a
        # RecurringPayment is NOT created.
        #-------------------------------------------------

        self.assertState('POST', CHANGE_PM_PATH, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            causes.no_parameters,
            causes.params(**change_payment_method_params),
            account_has_no_payment_method,
            payment_request_error,
        ], [
            gateway_cancel_called,
            effects.does_not_exist(
                RecurringPayment,
                account__pk=1,
            ),
            effects.does_not_exist(RecurringPayment, name='billy bob'),
            effects.rendered('account/payment_method_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If we get a PeymentRequestError, it means that
        # the user probably entered some invalid info.
        # If the payment gateway returned this error, AND a
        # RecurringPayment exists for the account, do NOT
        # delete it.
        #-------------------------------------------------
        self.assertState('POST', CHANGE_PM_PATH, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            causes.no_parameters,
            causes.params(**change_payment_method_params),
            account_has_payment_method,
            payment_request_error,
        ], [
            gateway_cancel_called,
            effects.exists(
                RecurringPayment,
                account__pk=1,
            ),
            effects.count(1, RecurringPayment, name='Bob Jones'),
            effects.count(0, RecurringPayment, name='billy bob'),
            effects.rendered('account/payment_method_form.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If there is a PaymentResponse error, it means
        # we couldn't understand the response from the
        # gateway. So a special error page is displayed
        # and the administrator is emailed.
        #-------------------------------------------------

        self.assertState('POST', CHANGE_PM_PATH, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            causes.no_parameters,
            causes.params(**change_payment_method_params),
            account_has_payment_method,
            payment_response_error,
        ], [
            gateway_cancel_called,
            effects.exists(
                RecurringPayment,
                account__pk=1,
            ),
            effects.outbox_len(1),
            effects.count(1, RecurringPayment, name='Bob Jones'),
            effects.count(0, RecurringPayment, name='billy bob'),
            effects.rendered('account/payment_create_error.html'),
            effects.status(200)
        ])

        #-------------------------------------------------
        # If there is a PaymentResponse error when canceling
        # an existing payment, it is very bad. It means that
        # the customer will be billed twice! So we diaplay a
        # special error message, and email the administrator.
        #-------------------------------------------------
        self.assertState('POST', CHANGE_PM_PATH, [
            causes.ssl,
            causes.valid_domain,
            causes.owner_logged_in,
            causes.no_parameters,
            causes.params(**change_payment_method_params),
            account_has_payment_method,
            payment_response_error_on_cancel,
        ], [
            gateway_cancel_called,
            effects.exists(
                RecurringPayment,
                account__pk=1,
            ),
            effects.outbox_len(1),
            effects.count(0, RecurringPayment, name='Bob Jones'),
            effects.count(1, RecurringPayment, name='billy bob'),
            effects.rendered('account/payment_cancel_error.html'),
            effects.status(200)
        ])
示例#5
0
    def test_signup(self):

        #-------------------------------------------------
        # If ssl is not on for GET, redirect to ssl page
        #-------------------------------------------------
        self.assertState('GET', CREATE_PATH % 1, [
            causes.no_domain,
            causes.no_parameters,
        ], [effects.redirected(CREATE_PATH % 1, status=301, ssl=True)])
        #-------------------------------------------------
        # If ssl is not on for POST, 403 Forbidden
        #-------------------------------------------------
        self.assertState('POST', CREATE_PATH % 1, [
            causes.no_domain,
            causes.no_parameters,
        ], [effects.status(403)])

        #-------------------------------------------------
        # You can't sign up from a domain belonging
        # to an account.
        #-------------------------------------------------
        self.assertState('GET/POST', CREATE_PATH % 0, [
            causes.ssl,
            causes.person_not_logged_in,
            causes.valid_domain,
        ], [
            effects.status(404),
        ])

        #-------------------------------------------------
        # Show the signup form
        #-------------------------------------------------
        self.assertState('GET/POST', CREATE_PATH % 0, [
            causes.ssl,
            causes.no_domain,
            causes.no_parameters,
        ], [effects.rendered('account/signup_form.html'),
            effects.status(200)])

        #-------------------------------------------------
        # If the subscription level is invaid, show 404
        #-------------------------------------------------
        self.assertState(
            'GET/POST',
            CREATE_PATH % 789,  # 789 is invalid subscription level
            [
                causes.ssl,
                causes.no_domain,
                causes.no_parameters,
            ],
            [effects.status(404)])

        #-------------------------------------------------
        # If the subscription level is free, a credit
        # card is not required.
        #-------------------------------------------------
        self.assertState(
            'POST',
            CREATE_PATH % 0,  # 0 is Free Account
            [
                causes.ssl,
                delete_test_account,
                causes.no_domain,
                causes.params(**signup_params_no_cc),
            ],
            [
                effects.redirected_to_url("http://%s/" % domain),
                effects.exists(
                    Account,
                    subdomain=signup_params_no_cc['subdomain'],
                    domain=signup_params_no_cc['domain'],
                ),
                effects.exists(Person, email='*****@*****.**'),
                effects.person_has_role('account_admin', username='******'),
            ])

        #-------------------------------------------------
        # If the subscription level is NOT free, a credit
        # card IS required.
        #-------------------------------------------------
        self.assertState(
            'POST',
            CREATE_PATH % 1,  # 1 is Silver (pay) account
            [
                causes.ssl,
                delete_test_account,
                causes.no_domain,
                causes.params(**signup_params_no_cc),
            ],
            [
                effects.rendered('account/signup_form.html'),
                effects.does_not_exist(Person, email='*****@*****.**'),
                effects.does_not_exist(
                    Account,
                    subdomain=signup_params_no_cc['subdomain'],
                    domain=signup_params_no_cc['domain'],
                ),
                effects.status(200)
            ])

        #-------------------------------------------------
        # If everything validates, create a person, account
        # and recurring payment.
        #-------------------------------------------------
        self.assertState(
            'POST',
            CREATE_PATH % 1,  # 1 is Silver (pay) account
            [
                causes.ssl,
                delete_test_account,
                causes.no_domain,
                causes.params(**signup_params_no_cc),
                causes.params(**cc_params),
            ],
            [
                effects.redirected_to_url("http://%s/" % domain),
                effects.exists(
                    Account,
                    subdomain=signup_params_no_cc['subdomain'],
                    domain=signup_params_no_cc['domain'],
                ),
                effects.exists(Person, email='*****@*****.**'),
                effects.person_has_role('account_admin', username='******'),
                effects.exists(RecurringPayment, name='billy bob'),
            ])

        #-------------------------------------------------
        # If the gateway returns an unrecognized response,
        # show a special message & email the administrator.
        #-------------------------------------------------
        self.assertState(
            'POST',
            CREATE_PATH % 1,  # 1 is Silver (pay) account
            [
                causes.ssl, delete_test_account, causes.no_domain,
                causes.params(**signup_params_no_cc),
                causes.params(**cc_params), payment_response_error
            ],
            [
                effects.outbox_len(1),
                effects.rendered('account/payment_create_error.html'),
            ])

        #-------------------------------------------------
        # If the gateway does not accept the payment info,
        # show the form.
        #-------------------------------------------------
        self.assertState(
            'POST',
            CREATE_PATH % 1,  # 1 is Silver (pay) account
            [
                causes.ssl,
                delete_test_account,
                causes.no_domain,
                causes.params(**signup_params_no_cc),
                causes.params(**cc_params),
                payment_request_error,
            ],
            [
                effects.rendered('account/signup_form.html'),
                effects.status(200)
            ])
示例#6
0
 def test_reset_password(self):
     """
     Tests for person_views.reset_password
     """
     def email_contains_password(client, response, testcase):
         """ Checks that the password of the default user is in 
         the first email in the outbox. """
     
         person = Person.objects.get(username = '******')
         self.assertEqual(
             mail.outbox[0].to,
             [person.email],
         )
         pattern = re.compile('assword: *(.{7})\n')
         matches = pattern.search(mail.outbox[0].body)
         new_password = matches.group(1)
     
         testcase.assertTrue(
             person.check_password(new_password)
         )
         
     self.assertState(
         'GET/POST',
         RESET_PATH,
         [
             causes.person_not_logged_in,
             causes.invalid_domain,
         ],
         [
             effects.status(404),
         ]
     )
     
     self.assertState(
         'GET/POST',
         RESET_PATH,
         [
             causes.person_logged_in,
             causes.valid_domain,
         ],
         [
             effects.status(403),
         ]
     )
     self.assertState(
         'GET',
         RESET_PATH,
         [
             causes.person_not_logged_in,
             causes.valid_domain,
         ],
         [
             effects.rendered('account/reset_password_form.html'),
             effects.status(200),
         ]
     )
     self.assertState(
         'POST',
         RESET_PATH,
         [
             causes.person_not_logged_in,
             causes.valid_domain,
             causes.invalid_username,
         ],
         [
             effects.outbox_len(0),
             effects.rendered('account/reset_password_form.html'),
         ]
     )
     self.assertState(
         'POST',
         RESET_PATH,
         [
             causes.person_not_logged_in,
             causes.valid_domain,
             causes.valid_username,
         ],
         [
             effects.outbox_len(1),
             email_contains_password,
             effects.rendered('account/reset_password_success.html'),
             effects.status(200),
         ]
     )
        
    ############################
    # Upgrade Tests
    ############################
    
    def test_upgrade(self):

        security.check(self, UPGRADE_PATH % 2, causes.ssl)
        security.require_ssl(self, UPGRADE_PATH % 2)
            
        #-------------------------------------------------
        # Show Form
        #-------------------------------------------------
        self.assertState(
            'GET',
            UPGRADE_PATH % 2,
            [
                causes.ssl,
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_payment_method,
            ],
            [
                effects.rendered('account/upgrade_form.html')
            ]
        )
        
        #-------------------------------------------------
        # If invalid subscription level, 404 - Not Found
        #-------------------------------------------------
        self.assertState(
            'GET/POST',
            UPGRADE_PATH % 666,
            [
                causes.ssl,
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_payment_method,
            ],
            [
                effects.status(404)
            ]
        )
        #-------------------------------------------------
        # If account alreay has subscription label, 403 - Forbidden
        #-------------------------------------------------
        self.assertState(
            'POST',
            UPGRADE_PATH % 1,
            [
                causes.ssl,
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_payment_method,
            ],
            [
                effects.status(403)
            ]
        )
        #-------------------------------------------------
        # If everything is valid, and the account has a
        # RecurringPayment, change level and change payment
        #-------------------------------------------------
        self.assertState(
            'POST',
            UPGRADE_PATH % 2,
            [
                causes.ssl,
                account_has_subscription_level(1),
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_payment_method,
            ],
            [
                gateway_change_called,
                effects.redirected('/account/'),
                subscription_level_is(2)
            ]
        )
        #-------------------------------------------------
        # If the account has an inactive RecurringPayment, 
        # new CC info is required
        #-------------------------------------------------
        self.assertState(
            'POST',
            UPGRADE_PATH % 2,
            [
                causes.ssl,
                account_has_subscription_level(1),
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_inactive_payment_method,
                causes.params(**change_payment_method_params)
            ],
            [
                gateway_change_called,
                effects.redirected('/account/'),
                subscription_level_is(2)
            ]
        )
        #-------------------------------------------------
        # If the account does not have a RecurringPayment, 
        # credit card params are required. 
        #-------------------------------------------------
        self.assertState(
            'POST',
            UPGRADE_PATH % 2,
            [
                causes.ssl,
                account_has_subscription_level(1),
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_no_payment_method,
            ],
            [
                effects.rendered('account/upgrade_form.html'),
                subscription_level_is(1)
            ]
        )
        #-------------------------------------------------
        # If the account doesn't have a RecurringPayment, 
        # and you've provided billing information, change
        # subscription level.
        #-------------------------------------------------
        self.assertState(
            'POST',
            UPGRADE_PATH % 2,
            [
                causes.ssl,
                account_has_subscription_level(1),
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_no_payment_method,
                causes.params(**change_payment_method_params)
            ],
            [
                gateway_start_called,
                effects.redirected('/account/'),
                subscription_level_is(2)
                
            ]
        )
        
        #-------------------------------------------------
        # If the gateway returns an unrecognized response,
        # show a special message & email the administrator.
        #-------------------------------------------------
        self.assertState(
            'POST',
            UPGRADE_PATH % 2, 
            [
                causes.ssl,
                account_has_subscription_level(1),
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_no_payment_method,
                causes.params(**change_payment_method_params),
                payment_response_error,
            ],
            [
                effects.outbox_len(1),
                effects.rendered('account/payment_create_error.html'),
                subscription_level_is(1)
            ]
        )
        
        #-------------------------------------------------
        # If the gateway does not accept the payment info,
        # show the form.
        #-------------------------------------------------
        self.assertState(
            'POST',
            UPGRADE_PATH % 2,
            [
                causes.ssl,
                account_has_subscription_level(1),
                causes.valid_domain,
                causes.owner_logged_in,
                account_has_no_payment_method,
                causes.params(**change_payment_method_params),
                payment_request_error,
            ],
     
 ############################
 # Cancel Payment Method Tests
 ############################
     
 def test_cancel_payment_method(self):
     security.check(self, CANCEL_PM_PATH)
     
     #-------------------------------------------------
     # If the account does NOT have a RecurringPayment, 
     # then the account is deactivated immediately.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CANCEL_PM_PATH,
         [
             causes.valid_domain,
             causes.owner_logged_in,
             account_has_no_payment_method,
         ],
         [
             effects.field_value(Account, {'pk': 1}, active = False),
             effects.redirected('/account/reactivate_free_account/')
         ]
     )
     
     #-------------------------------------------------
     # If the account has a RecurringPayment, show the form
     #-------------------------------------------------
     self.assertState(
         'GET',
         CANCEL_PM_PATH,
         [
             causes.valid_domain,
             causes.owner_logged_in,
             account_has_payment_method,
         ],
         [
             effects.field_value(Account, {'pk': 1}, active = True),
             effects.rendered('account/payment_cancel_form.html'),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If the account does not have a RecurringPayment, show the form
     #-------------------------------------------------
     self.assertState(
         'GET',
         CANCEL_PM_PATH,
         [
             causes.valid_domain,
             causes.owner_logged_in,
             account_has_no_payment_method,
         ],
         [
             effects.field_value(Account, {'pk': 1}, active = True),
             effects.rendered('account/payment_cancel_form.html'),
             effects.status(200)
         ]
     )
         
     #-------------------------------------------------
     # If the form is posted, and a payment exists, the
     # payment is canceled. Note that it is not deleted.
     # Instead, the inactive flag is set, which triggers
     # the account for suspension whenever payment runs
     # out. 
     #-------------------------------------------------
     self.assertState(
         'POST',
         CANCEL_PM_PATH,
         [
             causes.valid_domain,
             causes.owner_logged_in,
             account_has_payment_method,
         ],
         [
             effects.field_value(Account, {'pk': 1}, active = True),
             effects.redirected('/account/'),
             effects.count(1, RecurringPayment, account__pk = 1),
             payment_is_inactive,
             
         ]
     )
     
     #-------------------------------------------------
     # If a gateway error is returned on cancel, show
     # the error page and email admin
     #-------------------------------------------------
     self.assertState(
         'POST',
         CANCEL_PM_PATH,
         [
             causes.valid_domain,
             causes.owner_logged_in,
             account_has_payment_method,
             payment_response_error_on_cancel,
         ],
         [
             effects.field_value(Account, {'pk': 1}, active = True),
             effects.outbox_len(1),
             effects.rendered('account/payment_cancel_error.html'),
     
 ############################
 # Change Payment Method Tests
 ############################
     
 def test_change_payment_method(self):
     security.check_account_inactive_ok(self, CHANGE_PM_PATH, causes.ssl)
     security.require_ssl(self, CHANGE_PM_PATH)
         
     #-------------------------------------------------
     # The form is shown
     #-------------------------------------------------
     self.assertState(
         'GET/POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
         ],
         [
             effects.rendered('account/payment_method_form.html'),
             effects.status(200)
         ]
     )
     
         
     #-------------------------------------------------
     # The form is shown if input is invalid
     #-------------------------------------------------
     self.assertState(
         'POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
             causes.params(
                 first_name = 'billy',
                 last_name = 'bob',                    
                 card_number = '411111111111',
                 card_expiration = None
             )
         ],
         [
             effects.rendered('account/payment_method_form.html'),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If input is valid, a RecurringPayment is created
     #-------------------------------------------------
     self.assertState(
         'POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
             causes.params(
                 first_name = 'billy',
                 last_name = 'bob',                    
                 card_number = '411111111111',
                 card_expiration = date.today()
             ),
             account_has_no_payment_method,
         ],
         [
             effects.exists(
                 RecurringPayment, 
                 account__subdomain = 'starr'
             ),
             effects.rendered('account/payment_method_form.html'),
             effects.status(200)
         ]
     )
     
         
     #-------------------------------------------------
     # If input is valid, and a RecurringPayment exists,
     # the old RecurringPayment is deleted and a new one
     # is created.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
             causes.params(**change_payment_method_params),
             account_has_payment_method,
         ],
         [
             gateway_cancel_called,
             new_payment_starts_when_old_one_stops,
             effects.exists(RecurringPayment, account__pk = 1),
             effects.rendered('account/payment_method_form.html'),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If we get a PeymentRequestError, it means that
     # the user probably entered some invalid info.
     # If the payment gateway returned this error, a 
     # RecurringPayment is NOT created.
     #-------------------------------------------------
     
     self.assertState(
         'POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
             causes.params(**change_payment_method_params),
             account_has_no_payment_method,
             payment_request_error,
         
         ],
         [
             gateway_cancel_called,
             effects.does_not_exist(
                 RecurringPayment, 
                 account__pk = 1,
             ),
             effects.does_not_exist(
                 RecurringPayment, 
                 name = 'billy bob'
             ),
             effects.rendered('account/payment_method_form.html'),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If we get a PeymentRequestError, it means that
     # the user probably entered some invalid info.
     # If the payment gateway returned this error, AND a
     # RecurringPayment exists for the account, do NOT
     # delete it.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
             causes.params(**change_payment_method_params),
             account_has_payment_method,
             payment_request_error,
         
         ],
         [
             gateway_cancel_called,
             effects.exists(
                 RecurringPayment, 
                 account__pk = 1,
             ),
             effects.count(1, RecurringPayment, name = 'Bob Jones'),
             effects.count(0, RecurringPayment, name = 'billy bob'),
             effects.rendered('account/payment_method_form.html'),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If there is a PaymentResponse error, it means
     # we couldn't understand the response from the 
     # gateway. So a special error page is displayed
     # and the administrator is emailed.
     #-------------------------------------------------
     
     self.assertState(
         'POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
             causes.params(**change_payment_method_params),
             account_has_payment_method,
             payment_response_error,
         
         ],
         [
             gateway_cancel_called,
             effects.exists(
                 RecurringPayment, 
                 account__pk = 1,
             ),
             effects.outbox_len(1),
             effects.count(1, RecurringPayment, name = 'Bob Jones'),
             effects.count(0, RecurringPayment, name = 'billy bob'),
             effects.rendered('account/payment_create_error.html'),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If there is a PaymentResponse error when canceling
     # an existing payment, it is very bad. It means that 
     # the customer will be billed twice! So we diaplay a
     # special error message, and email the administrator.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CHANGE_PM_PATH,
         [
             causes.ssl,
             causes.valid_domain,
             causes.owner_logged_in,
             causes.no_parameters,
             causes.params(**change_payment_method_params),
             account_has_payment_method,
             payment_response_error_on_cancel,
         
         ],
         [
             gateway_cancel_called,
             effects.exists(
                 RecurringPayment, 
                 account__pk = 1,
             ),
             effects.outbox_len(1),
             effects.count(0, RecurringPayment, name = 'Bob Jones'),
 ############################
 # Signup Tests
 ############################
 
 def test_signup(self):
     
     #-------------------------------------------------
     # If ssl is not on for GET, redirect to ssl page
     #-------------------------------------------------
     self.assertState(
         'GET',
         CREATE_PATH % 1,
         [
             causes.no_domain,
             causes.no_parameters,
         ],
         [
             effects.redirected(CREATE_PATH % 1, status = 301, ssl = True)
         ]
     )
     #-------------------------------------------------
     # If ssl is not on for POST, 403 Forbidden
     #-------------------------------------------------
     self.assertState(
         'POST',
         CREATE_PATH % 1,
         [
             causes.no_domain,
             causes.no_parameters,
         ],
         [
             effects.status(403)
         ]
     )        
     
     #-------------------------------------------------
     # You can't sign up from a domain belonging
     # to an account.
     #-------------------------------------------------
     self.assertState(
         'GET/POST',
         CREATE_PATH % 0,
         [
             causes.ssl,
             causes.person_not_logged_in,
             causes.valid_domain,
         ],
         [
             effects.status(404),
         ]
     )
     
     #-------------------------------------------------
     # Show the signup form
     #-------------------------------------------------
     self.assertState(
         'GET/POST',
         CREATE_PATH % 0,
         [
             causes.ssl,
             causes.no_domain,
             causes.no_parameters,
         ],
         [
             effects.rendered('account/signup_form.html'),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If the subscription level is invaid, show 404
     #-------------------------------------------------
     self.assertState(
         'GET/POST',
         CREATE_PATH % 789, # 789 is invalid subscription level
         [
             causes.ssl,
             causes.no_domain,
             causes.no_parameters,
         ],
         [
             effects.status(404)
         ]
     )
     
         
     #-------------------------------------------------
     # If the subscription level is free, a credit
     # card is not required.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CREATE_PATH % 0, # 0 is Free Account
         [
             causes.ssl,
             delete_test_account,
             causes.no_domain,
             causes.params(**signup_params_no_cc),
         ],
         [
             effects.redirected_to_url(
                 "http://%s/" % domain
             ),
             effects.exists(
                 Account, 
                 subdomain = signup_params_no_cc['subdomain'],
                 domain = signup_params_no_cc['domain'],
             ),
             effects.exists(Person, email = '*****@*****.**'),
             effects.person_has_role('account_admin', username = '******'),
         ]
     )
     
     #-------------------------------------------------
     # If the subscription level is NOT free, a credit
     # card IS required.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CREATE_PATH % 1, # 1 is Silver (pay) account
         [
             causes.ssl,
             delete_test_account,
             causes.no_domain,
             causes.params(**signup_params_no_cc),
         ],
         [
             effects.rendered('account/signup_form.html'),
             effects.does_not_exist(Person, email = '*****@*****.**'),
             effects.does_not_exist(
                 Account, 
                 subdomain = signup_params_no_cc['subdomain'],
                 domain = signup_params_no_cc['domain'],
             ),
             effects.status(200)
         ]
     )
     
     #-------------------------------------------------
     # If everything validates, create a person, account
     # and recurring payment.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CREATE_PATH % 1, # 1 is Silver (pay) account
         [
             causes.ssl,
             delete_test_account,
             causes.no_domain,
             causes.params(**signup_params_no_cc),
             causes.params(**cc_params),
         ],
         [
             effects.redirected_to_url(
                 "http://%s/" % domain
             ),
             effects.exists(
                 Account, 
                 subdomain = signup_params_no_cc['subdomain'],
                 domain = signup_params_no_cc['domain'],
             ),
             effects.exists(Person, email = '*****@*****.**'),
             effects.person_has_role('account_admin', username = '******'),
             effects.exists(RecurringPayment, name = 'billy bob'),
         ]
     )
     
     
     #-------------------------------------------------
     # If the gateway returns an unrecognized response,
     # show a special message & email the administrator.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CREATE_PATH % 1, # 1 is Silver (pay) account
         [
             causes.ssl,
             delete_test_account,
             causes.no_domain,
             causes.params(**signup_params_no_cc),
             causes.params(**cc_params),
             payment_response_error
         ],
         [
             effects.outbox_len(1),
             effects.rendered('account/payment_create_error.html'),
         ]
     )
     
     #-------------------------------------------------
     # If the gateway does not accept the payment info,
     # show the form.
     #-------------------------------------------------
     self.assertState(
         'POST',
         CREATE_PATH % 1, # 1 is Silver (pay) account
         [
             causes.ssl,
             delete_test_account,
             causes.no_domain,
             causes.params(**signup_params_no_cc),
             causes.params(**cc_params),
             payment_request_error,
         ],