test_model_forum.py
3.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
from django.test import TestCase, Client
from django.core.urlresolvers import reverse
from rolepermissions.shortcuts import assign_role
from users.models import User
from courses.models import CourseCategory, Course, Subject, Topic
from forum.models import Forum
class ForumTestCase (TestCase):
def setUp(self):
self.user_professor = User.objects.create_user(
username = 'professor',
email = 'professor@amadeus.com',
is_staff = False,
is_active = True,
password = 'testing',
type_profile = 1
)
assign_role(self.user_professor, 'professor')
self.user_student = User.objects.create_user(
username = 'student',
email = 'student@amadeus.com',
is_staff = False,
is_active = True,
password = 'testing',
type_profile = 2
)
assign_role(self.user_student, 'student')
self.category = CourseCategory.objects.create(
name = 'Categoria Teste',
create_date='2016-10-07',
)
self.category.save()
self.course = Course.objects.create(
name = 'Curso Teste',
max_students = 50,
init_register_date = '2016-08-26',
end_register_date = '2016-10-01',
init_date = '2016-10-05',
end_date = '2017-10-05',
category = self.category
)
self.course.save()
self.subject = Subject.objects.create(
name = 'Subject Test',
description = "description of the subject test",
visible = True,
course = self.course,
init_date = '2016-10-05',
end_date = '2017-10-05',
)
self.subject.save()
self.subject.professors.add(self.user_professor)
self.topic = Topic.objects.create(
name = 'Topic Test',
description = "description of the topic test",
subject = self.subject,
owner = self.user_professor,
)
self.topic.save()
self.forum = Forum.objects.create(
topic=self.topic,
name = 'forum test',
description = 'description of the forum test',
create_date = '2016-10-02',
modification_date = '2016-10-03',
limit_date = '2017-10-05',
)
self.forum.save()
def test_create_forum (self):
list_forum = Forum.objects.all().count()
forum = Forum.objects.create(
topic=self.topic,
name = 'forum test2',
description = 'description of the forum test',
create_date = '2016-10-02',
modification_date = '2016-10-03',
limit_date = '2017-10-05',
)
forum.save()
self.assertEquals(list_forum+1, Forum.objects.all().count())
def test_update_forum(self):
list_forum = Forum.objects.all().count()
self.forum.name = 'forum test updated'
self.forum.save()
self.assertEquals(self.forum, Forum.objects.get(name='forum test updated'))
self.assertEquals(list_forum, Forum.objects.all().count())
def test_delete_forum (self):
list_forum = Forum.objects.all().count()
self.forum.delete()
self.assertEquals(list_forum-1, Forum.objects.all().count())