当前位置: 首页>>代码示例>>Python>>正文


Python ForgotPasswordController.forgot_password方法代码示例

本文整理汇总了Python中horus.views.ForgotPasswordController.forgot_password方法的典型用法代码示例。如果您正苦于以下问题:Python ForgotPasswordController.forgot_password方法的具体用法?Python ForgotPasswordController.forgot_password怎么用?Python ForgotPasswordController.forgot_password使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在horus.views.ForgotPasswordController的用法示例。


在下文中一共展示了ForgotPasswordController.forgot_password方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_forgot_password_invalid_password

# 需要导入模块: from horus.views import ForgotPasswordController [as 别名]
# 或者: from horus.views.ForgotPasswordController import forgot_password [as 别名]
    def test_forgot_password_invalid_password(self):
        from horus.views import ForgotPasswordController
        from pyramid_mailer.interfaces import IMailer
        from pyramid_mailer.mailer import DummyMailer
        from horus.interfaces           import IUserClass
        from horus.tests.models         import User

        self.config.registry.registerUtility(User, IUserClass)

        self.config.add_route('index', '/')
        self.config.include('horus')
        self.config.registry.registerUtility(DummyMailer(), IMailer)

        user = User(username='sontek', password='temp',
            email='[email protected]')
        user.password = 'foo'

        self.session.add(user)
        self.session.flush()

        request = self.get_csrf_request(post={
            'email': 'sontek'
        }, request_method='POST')

        request.user = None

        view = ForgotPasswordController(request)
        response = view.forgot_password()

        assert len(response['errors']) == 1
开发者ID:dobrite,项目名称:horus,代码行数:32,代码来源:test_views.py

示例2: test_forgot_password_valid_user

# 需要导入模块: from horus.views import ForgotPasswordController [as 别名]
# 或者: from horus.views.ForgotPasswordController import forgot_password [as 别名]
    def test_forgot_password_valid_user(self):
        from horus.views                import ForgotPasswordController
        from pyramid_mailer.interfaces  import IMailer
        from pyramid_mailer.mailer      import DummyMailer
        from horus.interfaces           import IUserClass
        from horus.tests.models         import User
        self.config.registry.registerUtility(User, IUserClass)

        self.config.add_route('index', '/')
        self.config.include('horus')
        self.config.registry.registerUtility(DummyMailer(), IMailer)

        user = User(username='sontek', password='temp',
            email='[email protected]')
        user.password = 'foo'

        self.session.add(user)
        self.session.flush()

        request = self.get_csrf_request(post={
            'email': '[email protected]'
        }, request_method='POST')

        request.user = None

        view = ForgotPasswordController(request)

        with patch('horus.views.FlashMessage') as FlashMessage:
            response = view.forgot_password()
            FlashMessage.assert_called_with(request,
                view.Str.reset_password_email_sent, kind="success")
        assert response.status_int == 302
开发者ID:dobrite,项目名称:horus,代码行数:34,代码来源:test_views.py

示例3: test_forgot_password_valid_user

# 需要导入模块: from horus.views import ForgotPasswordController [as 别名]
# 或者: from horus.views.ForgotPasswordController import forgot_password [as 别名]
    def test_forgot_password_valid_user(self):
        from horus.views import ForgotPasswordController
        from pyramid_mailer.interfaces import IMailer
        from pyramid_mailer.mailer import DummyMailer
        from horus.interfaces           import IUserClass
        from horus.tests.models         import User

        self.config.registry.registerUtility(User, IUserClass)

        self.config.add_route('index', '/')
        self.config.include('horus')
        self.config.registry.registerUtility(DummyMailer(), IMailer)

        user = User(username='sontek', password='temp', email='[email protected]')
        user.password = 'foo'

        self.session.add(user)
        self.session.flush()

        request = self.get_csrf_request(post={
            'email': '[email protected]'
        }, request_method='POST')

        request.user = None

        flash = Mock()
        request.session.flash = flash

        view = ForgotPasswordController(request)
        response = view.forgot_password()

        flash.assert_called_with(
            'Please check your e-mail to reset your password.', 'success')
        assert response.status_int == 302
开发者ID:pzatrick,项目名称:horus,代码行数:36,代码来源:test_views.py

示例4: test_forgot_password_logged_in_redirects

# 需要导入模块: from horus.views import ForgotPasswordController [as 别名]
# 或者: from horus.views.ForgotPasswordController import forgot_password [as 别名]
    def test_forgot_password_logged_in_redirects(self):
        from horus.views import ForgotPasswordController
        from horus.interfaces           import IUserClass
        from horus.tests.models         import User

        self.config.registry.registerUtility(User, IUserClass)
        self.config.add_route('index', '/')
        self.config.include('horus')

        request = testing.DummyRequest()
        request.user = Mock()
        view = ForgotPasswordController(request)
        response = view.forgot_password()

        assert response.status_int == 302
开发者ID:dobrite,项目名称:horus,代码行数:17,代码来源:test_views.py

示例5: test_forgot_password_loads

# 需要导入模块: from horus.views import ForgotPasswordController [as 别名]
# 或者: from horus.views.ForgotPasswordController import forgot_password [as 别名]
    def test_forgot_password_loads(self):
        from horus.views import ForgotPasswordController
        from horus.interfaces           import IUserClass
        from horus.tests.models         import User
        from horus.interfaces           import IActivationClass
        from horus.tests.models         import Activation
        self.config.registry.registerUtility(Activation, IActivationClass)

        self.config.registry.registerUtility(User, IUserClass)
        self.config.add_route('index', '/')
        self.config.include('horus')

        request = testing.DummyRequest()
        request.user = None
        view = ForgotPasswordController(request)
        response = view.forgot_password()

        assert response.get('form', None)
开发者ID:dobrite,项目名称:horus,代码行数:20,代码来源:test_views.py

示例6: forgot

# 需要导入模块: from horus.views import ForgotPasswordController [as 别名]
# 或者: from horus.views.ForgotPasswordController import forgot_password [as 别名]
    def forgot(self):
        request = self.request
        controller = ForgotPasswordController(request)
        form = self.forgot_form

        result = controller.forgot_password()
        if isinstance(result, dict):
            if 'errors' in result:
                error = colander.Invalid(
                    form.schema,
                    messages.INVALID_FORM
                )
                error.children = result.pop('errors')
                form.widget.handle_error(form, error)
            result = {
                'form': {
                    'forgot': form.render()
                }
            }
        else:
            # TODO: take care of flash success message
            return None
        return result
开发者ID:3divs,项目名称:h,代码行数:25,代码来源:app.py


注:本文中的horus.views.ForgotPasswordController.forgot_password方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。