Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Fukász Rómeó Ervin
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
05850cfb
authored
May 21, 2013
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
school: full test coverage for models
parent
d9b9640b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
4 deletions
+42
-4
school/tests.py
+42
-4
No files found.
school/tests.py
View file @
05850cfb
from
datetime
import
datetime
,
timedelta
from
django.test
import
TestCase
from
django.contrib.auth.models
import
User
from
django.core.exceptions
import
ValidationError
from
models
import
create_user_profile
,
Person
,
Course
,
Semester
,
Group
class
CreateUserProfileTestCase
(
TestCase
):
...
...
@@ -54,6 +55,10 @@ class PersonWithUserTestCase(TestCase):
def
test_unicode
(
self
):
self
.
assertIsNotNone
(
self
.
person
.
__unicode__
())
# without first or last name
self
.
person
.
user
.
first_name
=
None
self
.
person
.
user
.
last_name
=
None
self
.
assertIsNotNone
(
self
.
person
.
__unicode__
())
class
PersonWithoutUserTestCase
(
TestCase
):
"""Test Person entities which doesn't have their user attribute set."""
...
...
@@ -89,11 +94,29 @@ class CourseTestCase(TestCase):
def
test_get_or_create_default_group
(
self
):
default_group
=
self
.
testcourse
.
get_or_create_default_group
()
self
.
assertIsNotNone
(
default_group
)
self
.
assertEquals
(
default_group
,
self
.
testcourse
.
default_group
)
self
.
assertEqual
(
default_group
,
self
.
testcourse
.
default_group
)
# now it already has a group, so this'll be a get
default_group1
=
self
.
testcourse
.
get_or_create_default_group
()
self
.
assertIsNotNone
(
default_group1
)
self
.
assertEqual
(
default_group
,
default_group1
)
def
test_owner_list
(
self
):
owner_list
=
self
.
testcourse
.
owner_list
()
self
.
assertIsNotNone
(
owner_list
)
self
.
assertIsNotNone
(
self
.
testcourse
.
owner_list
())
# if the course has no owners:
self
.
testcourse
.
owners
.
all
()
.
delete
()
self
.
assertIsNotNone
(
self
.
testcourse
.
owner_list
())
def
test_unicode
(
self
):
self
.
assertIsNotNone
(
self
.
testcourse
.
__unicode__
())
# if the course doesn't have a name:
self
.
testcourse
.
name
=
None
self
.
assertIsNotNone
(
self
.
testcourse
.
__unicode__
())
def
test_short
(
self
):
self
.
assertIsNotNone
(
self
.
testcourse
.
short
())
# if the course doesn't have a short name:
self
.
testcourse
.
short_name
=
None
self
.
assertIsNotNone
(
self
.
testcourse
.
short
())
class
SemesterTestCase
(
TestCase
):
def
setUp
(
self
):
...
...
@@ -115,6 +138,10 @@ class SemesterTestCase(TestCase):
def
test_get_current
(
self
):
self
.
assertEqual
(
self
.
current_semester
,
Semester
.
get_current
())
# if there's no current semester:
self
.
current_semester
.
delete
()
with
self
.
assertRaises
(
ValidationError
):
Semester
.
get_current
()
def
test_unicode
(
self
):
self
.
current_semester
.
__unicode__
()
...
...
@@ -125,8 +152,10 @@ class GroupTestCase(TestCase):
delta
=
timedelta
(
weeks
=
7
)
semester
=
Semester
.
objects
.
create
(
name
=
"testsem"
,
start
=
date
-
delta
,
end
=
date
+
delta
)
self
.
testcourse
=
Course
.
objects
.
create
(
code
=
"testcode"
,
name
=
"testname"
,
short_name
=
"tn"
)
self
.
testgroup
=
Group
.
objects
.
create
(
name
=
"testgrp"
,
semester
=
semester
)
semester
=
semester
,
course
=
self
.
testcourse
)
def
test_owner_list
(
self
):
self
.
assertIsNotNone
(
self
.
testgroup
.
owner_list
())
...
...
@@ -146,3 +175,12 @@ class GroupTestCase(TestCase):
testmember2
=
Person
.
objects
.
create
(
code
=
"testprsn4"
)
self
.
testgroup
.
members
.
add
(
testmember2
)
self
.
assertEqual
(
2
,
self
.
testgroup
.
member_count
())
def
test_unicode
(
self
):
self
.
assertIsNotNone
(
self
.
testgroup
.
__unicode__
())
# if the group has no course associated:
self
.
testgroup
.
course
=
None
self
.
assertIsNotNone
(
self
.
testgroup
.
__unicode__
())
def
test_get_absolute_url
(
self
):
self
.
assertIsNotNone
(
self
.
testgroup
.
get_absolute_url
())
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