1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-06-20 18:52:59 +02:00

fix unit tests

This commit is contained in:
kakwa 2016-07-28 07:32:12 +02:00
parent d1ec945fe2
commit 9367bc3288

View File

@ -2,7 +2,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from __future__ import with_statement from __future__ import with_statement
from __future__ import unicode_literals
import pytest import pytest
import sys import sys
@ -159,7 +158,7 @@ class TestError(object):
loadconf('./tests/cfg/ldapcherry_test.ini', app) loadconf('./tests/cfg/ldapcherry_test.ini', app)
app.auth_mode = 'or' app.auth_mode = 'or'
try: try:
app.login('jwatsoné', 'passwordwatsoné') app.login(u'jwatsoné', u'passwordwatsoné')
except cherrypy.HTTPRedirect as e: except cherrypy.HTTPRedirect as e:
expected = 'http://127.0.0.1:8080/' expected = 'http://127.0.0.1:8080/'
assert e[0][0] == expected assert e[0][0] == expected
@ -171,7 +170,7 @@ class TestError(object):
loadconf('./tests/cfg/ldapcherry_test.ini', app) loadconf('./tests/cfg/ldapcherry_test.ini', app)
app.auth_mode = 'or' app.auth_mode = 'or'
try: try:
app.login('jwatsoné', 'wrongPasswordé') app.login(u'jwatsoné', u'wrongPasswordé')
except cherrypy.HTTPRedirect as e: except cherrypy.HTTPRedirect as e:
expected = 'http://127.0.0.1:8080/signin' expected = 'http://127.0.0.1:8080/signin'
assert e[0][0] == expected assert e[0][0] == expected