test_model_post.py
5.07 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
from django.test import TestCase
from rolepermissions.shortcuts import assign_role
from users.models import User
from courses.models import CourseCategory, Course, Subject, Topic
from forum.models import Forum, Post
class PostTestCase (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()
self.post_professor = Post.objects.create(
user = self.user_professor,
message = 'posting a test on forum as professor',
modification_date = '2016-11-09',
post_date = '2016-10-03',
forum = self.forum,
)
self.post_professor.save()
self.post_student = Post.objects.create(
user = self.user_student,
message = 'posting a test on forum as student',
modification_date = '2016-11-09',
post_date = '2016-10-03',
forum = self.forum,
)
self.post_student.save()
def test_create_post_professor (self):
list_post = Post.objects.all().count()
post_professor = Post.objects.create(
user = self.user_professor,
message = 'posting',
modification_date = '2016-11-09',
post_date = '2016-10-03',
forum = self.forum,
)
post_professor.save()
self.assertEquals(list_post+1, Post.objects.all().count())
def test_create_post_student (self):
list_post = Post.objects.all().count()
post_student = Post.objects.create(
user = self.user_student,
message = 'posting',
modification_date = '2016-11-09',
post_date = '2016-10-03',
forum = self.forum,
)
post_student.save()
self.assertEquals(list_post+1, Post.objects.all().count())
def test_update_post_professor (self):
list_post = Post.objects.all().count()
self.post_professor.message = 'updating a post as professor'
self.post_professor.save()
self.assertEquals(self.post_professor, Post.objects.get(message='updating a post as professor'))
self.assertEquals(list_post, Post.objects.all().count())
def test_update_post_student (self):
list_post = Post.objects.all().count()
self.post_student.message = 'updating a post as student'
self.post_student.save()
self.assertEquals(self.post_student, Post.objects.get(message='updating a post as student'))
self.assertEquals(list_post, Post.objects.all().count())
def test_delete_post_professor (self):
list_post = Post.objects.all().count()
post = Post.objects.get(user=self.user_professor, message='posting a test on forum as professor')
self.post_professor.delete()
self.assertEquals(list_post-1, Post.objects.all().count())
def test_delete_post_student (self):
list_post = Post.objects.all().count()
post = Post.objects.get(user=self.user_student, message='posting a test on forum as student')
self.post_student.delete()
self.assertEquals(list_post-1, Post.objects.all().count())