Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a01df009
authored
Jun 18, 2013
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
school: test for views
parent
6727f8e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
79 additions
and
6 deletions
+79
-6
school/tests.py
+79
-6
No files found.
school/tests.py
View file @
a01df009
from
datetime
import
datetime
,
timedelta
from
django.test
import
TestCase
from
django.test.client
import
Client
from
django.contrib.auth.models
import
User
from
django.contrib.auth.models
import
User
,
Group
as
AuthGroup
from
django.core.exceptions
import
ValidationError
from
models
import
create_user_profile
,
Person
,
Course
,
Semester
,
Group
...
...
@@ -189,13 +189,29 @@ class GroupTestCase(TestCase):
class
ViewTestCase
(
TestCase
):
def
setUp
(
self
):
self
.
client
=
Client
()
date
=
datetime
.
now
()
.
date
()
delta
=
timedelta
(
weeks
=
7
)
semester
=
Semester
.
objects
.
create
(
name
=
"testsem"
,
start
=
date
-
delta
,
end
=
date
+
delta
)
course1
=
Course
.
objects
.
create
(
code
=
'tccode1'
,
name
=
'testcourse1'
,
short_name
=
'tc1'
)
course2
=
Course
.
objects
.
create
(
code
=
'tccode2'
,
name
=
'testcourse2'
,
short_name
=
'tc2'
)
nonexistent_course_code1
=
'vacationspotscouting'
nonexistent_course_code2
=
'caringforunicorns'
affiliation1
=
AuthGroup
.
objects
.
create
(
name
=
'chalktrademanager'
)
self
.
group1
=
Group
.
objects
.
create
(
name
=
affiliation1
.
name
,
semester
=
semester
,
course
=
course1
)
self
.
http_headers
=
{
'niifPersonOrgID'
:
'ABUZER'
,
'niifEduPersonHeldCourse'
:
''
,
'niifEduPersonAttendedCourse'
:
''
,
'niifEduPersonHeldCourse'
:
';'
.
join
(
[
course1
.
code
,
nonexistent_course_code1
]),
'niifEduPersonAttendedCourse'
:
';'
.
join
(
[
course2
.
code
,
nonexistent_course_code2
]),
'givenName'
:
'User'
,
'sn'
:
'Test'
,
'email'
:
'test.user@testsite.hu'
}
'email'
:
'test.user@testsite.hu'
,
'affiliation'
:
';'
.
join
([
affiliation1
.
name
])}
def
test_logout
(
self
):
resp
=
self
.
client
.
get
(
'/logout/'
,
follow
=
False
)
...
...
@@ -209,10 +225,67 @@ class ViewTestCase(TestCase):
del
self
.
http_headers
[
'niifPersonOrgID'
]
resp
=
self
.
client
.
get
(
'/login/'
,
follow
=
True
,
**
self
.
http_headers
)
self
.
assertEqual
(
200
,
resp
.
status_code
)
for
(
url
,
_
)
in
resp
.
redirect_chain
:
self
.
assertIn
(
'/admin'
,
url
)
(
url
,
_
)
=
resp
.
redirect_chain
[
0
]
self
.
assertIn
(
'/admin'
,
url
)
def
test_login_without_email
(
self
):
del
self
.
http_headers
[
'email'
]
resp
=
self
.
client
.
get
(
'/login/'
,
follow
=
True
,
**
self
.
http_headers
)
self
.
assertEqual
(
403
,
resp
.
status_code
)
def
test_login_without_affiliation
(
self
):
del
self
.
http_headers
[
'affiliation'
]
resp
=
self
.
client
.
get
(
'/login/'
,
follow
=
True
,
**
self
.
http_headers
)
self
.
assertEqual
(
200
,
resp
.
status_code
)
def
test_login_without_group_for_affiliation
(
self
):
self
.
group1
.
delete
()
resp
=
self
.
client
.
get
(
'/login/'
,
follow
=
True
,
**
self
.
http_headers
)
self
.
assertEqual
(
200
,
resp
.
status_code
)
def
test_language
(
self
):
self
.
client
.
get
(
'/login/'
,
**
self
.
http_headers
)
u
=
User
.
objects
.
get
(
username
=
self
.
http_headers
[
'niifPersonOrgID'
])
p
=
Person
.
objects
.
get
(
user
=
u
)
lang
=
u'en'
if
p
.
language
==
u'hu'
else
u'hu'
self
.
http_headers
[
'HTTP_REFERER'
]
=
'/'
resp
=
self
.
client
.
get
(
'/language/
%
s/'
%
lang
,
follow
=
False
,
**
self
.
http_headers
)
self
.
assertEqual
(
302
,
resp
.
status_code
)
p
=
Person
.
objects
.
get
(
user
=
u
)
self
.
assertEqual
(
lang
,
p
.
language
)
def
test_language_with_invalid_parameter
(
self
):
self
.
client
.
get
(
'/login/'
,
**
self
.
http_headers
)
u
=
User
.
objects
.
get
(
username
=
self
.
http_headers
[
'niifPersonOrgID'
])
lang
=
u'nemvanez'
# invalid language
self
.
http_headers
[
'HTTP_REFERER'
]
=
'/'
resp
=
self
.
client
.
get
(
'/language/
%
s/'
%
lang
,
follow
=
False
,
**
self
.
http_headers
)
self
.
assertEqual
(
302
,
resp
.
status_code
)
p
=
Person
.
objects
.
get
(
user
=
u
)
self
.
assertEqual
(
lang
,
p
.
language
)
def
test_language_without_person_for_user
(
self
):
self
.
client
.
get
(
'/login/'
,
**
self
.
http_headers
)
u
=
User
.
objects
.
get
(
username
=
self
.
http_headers
[
'niifPersonOrgID'
])
Person
.
objects
.
get
(
user
=
u
)
.
delete
()
lang
=
u'en'
self
.
http_headers
[
'HTTP_REFERER'
]
=
'/'
resp
=
self
.
client
.
get
(
'/language/
%
s/'
%
lang
,
follow
=
False
,
**
self
.
http_headers
)
self
.
assertEqual
(
302
,
resp
.
status_code
)
def
test_group_show
(
self
):
self
.
client
.
get
(
'/login/'
,
**
self
.
http_headers
)
resp
=
self
.
client
.
get
(
'/group/show/
%
s/'
%
self
.
group1
.
id
)
self
.
assertEqual
(
200
,
resp
.
status_code
)
def
test_group_show_with_nonexistent_groupid
(
self
):
self
.
client
.
get
(
'/login/'
,
**
self
.
http_headers
)
gid
=
1337
# this should be the ID of a non-existent group,
# so if it exists, delete it!
Group
.
objects
.
filter
(
id
=
gid
)
.
delete
()
resp
=
self
.
client
.
get
(
'/group/show/
%
s/'
%
gid
)
self
.
assertEqual
(
404
,
resp
.
status_code
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment