You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.3 KiB
63 lines
2.3 KiB
# -*- coding: utf-8 -*-
|
|
# © 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from urllib import urlencode
|
|
from lxml.html import document_fromstring
|
|
from openerp import _
|
|
from openerp.tests.common import at_install, post_install, HttpCase
|
|
|
|
|
|
@at_install(False)
|
|
@post_install(True)
|
|
class UICase(HttpCase):
|
|
def setUp(self):
|
|
super(UICase, self).setUp()
|
|
with self.cursor() as http_cr:
|
|
http_env = self.env(http_cr)
|
|
http_env["ir.config_parameter"].set_param(
|
|
"auth_signup.allow_uninvited", "True")
|
|
self.data = {
|
|
"csrf_token": self.csrf_token(),
|
|
"name": "Somebody",
|
|
}
|
|
self.msg = {
|
|
"badmail": _("That does not seem to be an email address."),
|
|
"failure": _(
|
|
"Something went wrong, please try again later or contact us."),
|
|
"success": _("Check your email to activate your account!"),
|
|
}
|
|
|
|
def html_doc(self, url="/web/signup", data=None, timeout=30):
|
|
"""Get an HTML LXML document."""
|
|
if data:
|
|
data = bytes(urlencode(data))
|
|
return document_fromstring(self.url_open(url, data, timeout).read())
|
|
|
|
def csrf_token(self):
|
|
"""Get a valid CSRF token."""
|
|
doc = self.html_doc()
|
|
return doc.xpath("//input[@name='csrf_token']")[0].get("value")
|
|
|
|
def search_text(self, doc, text):
|
|
"""Search for any element containing the text."""
|
|
return doc.xpath("//*[contains(text(), '%s')]" % text)
|
|
|
|
def test_bad_email(self):
|
|
"""Test rejection of bad emails."""
|
|
self.data["login"] = "bad email"
|
|
doc = self.html_doc(data=self.data)
|
|
self.assertTrue(self.search_text(doc, self.msg["badmail"]))
|
|
|
|
def test_good_email(self):
|
|
"""Test acceptance of good emails.
|
|
|
|
This test could lead to success if your SMTP settings are correct, or
|
|
to failure otherwise. Any case is expected, since tests usually run
|
|
under unconfigured demo instances.
|
|
"""
|
|
self.data["login"] = "good@example.com"
|
|
doc = self.html_doc(data=self.data)
|
|
self.assertTrue(
|
|
self.search_text(doc, self.msg["failure"]) or
|
|
self.search_text(doc, self.msg["success"]))
|