/tests/app/soc/modules/gsoc/views/test_org_home.py

https://code.google.com/ · Python · 262 lines · 184 code · 45 blank · 33 comment · 2 complexity · 1a5a160f3e7fd7bddb4297ce58e92c94 MD5 · raw file

  1. #!/usr/bin/env python2.5
  2. #
  3. # Copyright 2011 the Melange authors.
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. """Tests for Organization homepage related views.
  17. """
  18. from tests.profile_utils import GSoCProfileHelper
  19. from tests.test_utils import GSoCDjangoTestCase
  20. class OrgHomeProjectListTest(GSoCDjangoTestCase):
  21. """Tests organization homepage views.
  22. """
  23. def setUp(self):
  24. self.init()
  25. def createStudentProjects(self):
  26. """Creates two student projects.
  27. """
  28. mentor = GSoCProfileHelper(self.gsoc, self.dev_test)
  29. mentor.createOtherUser('mentor@example.com').createMentor(self.org)
  30. student = GSoCProfileHelper(self.gsoc, self.dev_test)
  31. student.createOtherUser('student@example.com')
  32. student.createStudentWithProjects(self.org, mentor.profile, 2)
  33. def assertOrgHomeTemplatesUsed(self, response, show_project_list):
  34. """Asserts that all the org home templates were used.
  35. """
  36. self.assertGSoCTemplatesUsed(response)
  37. self.assertTemplateUsed(response, 'v2/modules/gsoc/_connect_with_us.html')
  38. self.assertTemplateUsed(response, 'v2/modules/gsoc/org_home/base.html')
  39. if show_project_list:
  40. self.assertTemplateUsed(
  41. response, 'v2/modules/gsoc/org_home/_project_list.html')
  42. else:
  43. self.assertTemplateNotUsed(
  44. response, 'v2/modules/gsoc/org_home/_project_list.html')
  45. def testOrgHomeDuringOrgSignup(self):
  46. """Tests the the org home page during the organization signup period.
  47. """
  48. self.timeline.orgSignup()
  49. url = '/gsoc/org/' + self.org.key().name()
  50. response = self.get(url)
  51. self.assertOrgHomeTemplatesUsed(response, False)
  52. def testOrgHomeDuringStudentSignup(self):
  53. """Tests the the org home page during the student signup period.
  54. """
  55. self.timeline.studentSignup()
  56. url = '/gsoc/org/' + self.org.key().name()
  57. response = self.get(url)
  58. self.assertOrgHomeTemplatesUsed(response, False)
  59. def testOrgHomeAfterStudentProjectsAnnounced(self):
  60. """Tests the the org home page after announcing accepted student projects.
  61. """
  62. self.timeline.studentsAnnounced()
  63. self.createStudentProjects()
  64. url = '/gsoc/org/' + self.org.key().name()
  65. response = self.get(url)
  66. self.assertOrgHomeTemplatesUsed(response, True)
  67. data = self.getListData(url, 0)
  68. self.assertEqual(2, len(data))
  69. def testOrgHomeDuringOffseason(self):
  70. """Tests the the org home page after GSoC is over.
  71. """
  72. self.timeline.offSeason()
  73. self.createStudentProjects()
  74. url = '/gsoc/org/' + self.org.key().name()
  75. response = self.get(url)
  76. self.assertOrgHomeTemplatesUsed(response, True)
  77. data = self.getListData(url, 0)
  78. self.assertEqual(2, len(data))
  79. class OrgHomeApplyTest(GSoCDjangoTestCase):
  80. """Tests organization homepage views.
  81. """
  82. def setUp(self):
  83. self.init()
  84. def homepageContext(self):
  85. url = '/gsoc/org/' + self.org.key().name()
  86. response = self.get(url)
  87. self.assertResponseOK(response)
  88. return response.context
  89. def assertNoStudent(self, context):
  90. self.assertFalse('student_apply_block' in context)
  91. self.assertFalse('student_profile_link' in context)
  92. self.assertFalse('submit_proposal_link' in context)
  93. def assertNoMentor(self, context):
  94. self.assertFalse('mentor_apply_block' in context)
  95. self.assertFalse('mentor_profile_link' in context)
  96. self.assertFalse('role' in context)
  97. self.assertFalse('mentor_applied' in context)
  98. self.assertFalse('invited_role' in context)
  99. self.assertFalse('mentor_request_link' in context)
  100. def assertMentor(self):
  101. self.data.createMentor(self.org)
  102. context = self.homepageContext()
  103. self.assertNoStudent(context)
  104. self.assertTrue('mentor_apply_block' in context)
  105. self.assertFalse('mentor_profile_link' in context)
  106. self.assertEqual('a mentor', context['role'])
  107. self.assertFalse('mentor_applied' in context)
  108. self.assertFalse('invited_role' in context)
  109. self.assertFalse('mentor_request_link' in context)
  110. def testAnonymousPreSignup(self):
  111. self.timeline.orgSignup()
  112. context = self.homepageContext()
  113. self.assertNoStudent(context)
  114. self.assertTrue('mentor_apply_block' in context)
  115. self.assertTrue('mentor_profile_link' in context)
  116. self.assertFalse('role' in context)
  117. self.assertFalse('mentor_applied' in context)
  118. self.assertFalse('invited_role' in context)
  119. self.assertFalse('mentor_request_link' in context)
  120. def testAnonymousDuringSignup(self):
  121. self.timeline.studentSignup()
  122. context = self.homepageContext()
  123. self.assertTrue('student_apply_block' in context)
  124. self.assertTrue('student_profile_link' in context)
  125. self.assertFalse('submit_proposal_link' in context)
  126. self.assertFalse('mentor_apply_block' in context)
  127. self.assertTrue('mentor_profile_link' in context)
  128. self.assertFalse('role' in context)
  129. self.assertFalse('mentor_applied' in context)
  130. self.assertFalse('invited_role' in context)
  131. self.assertFalse('mentor_request_link' in context)
  132. def testAnonymousPostSignup(self):
  133. self.timeline.postStudentSignup()
  134. context = self.homepageContext()
  135. self.assertNoStudent(context)
  136. self.assertTrue('mentor_apply_block' in context)
  137. self.assertTrue('mentor_profile_link' in context)
  138. self.assertFalse('role' in context)
  139. self.assertFalse('mentor_applied' in context)
  140. self.assertFalse('invited_role' in context)
  141. self.assertFalse('mentor_request_link' in context)
  142. def testAnonymousStudentsAnnounced(self):
  143. self.timeline.studentsAnnounced()
  144. context = self.homepageContext()
  145. self.assertNoStudent(context)
  146. self.assertFalse('mentor_apply_block' in context)
  147. self.assertFalse('mentor_profile_link' in context)
  148. self.assertFalse('role' in context)
  149. self.assertFalse('mentor_applied' in context)
  150. self.assertFalse('invited_role' in context)
  151. self.assertFalse('mentor_request_link' in context)
  152. def testMentorPreSignup(self):
  153. self.timeline.orgSignup()
  154. self.assertMentor()
  155. def testMentorDuringSignup(self):
  156. self.timeline.studentSignup()
  157. self.assertMentor()
  158. def testMentorPostSignup(self):
  159. self.timeline.postStudentSignup()
  160. self.assertMentor()
  161. def testMentorStudentsAnnounced(self):
  162. self.timeline.studentsAnnounced()
  163. self.assertMentor()
  164. def testOrgAdmin(self):
  165. self.data.createOrgAdmin(self.org)
  166. context = self.homepageContext()
  167. self.assertNoStudent(context)
  168. self.assertTrue('mentor_apply_block' in context)
  169. self.assertFalse('mentor_profile_link' in context)
  170. self.assertEqual('an administrator', context['role'])
  171. self.assertFalse('mentor_applied' in context)
  172. self.assertFalse('invited_role' in context)
  173. self.assertFalse('mentor_request_link' in context)
  174. def testAppliedMentor(self):
  175. self.data.createMentorRequest(self.org)
  176. context = self.homepageContext()
  177. self.assertNoStudent(context)
  178. self.assertTrue('mentor_apply_block' in context)
  179. self.assertFalse('mentor_profile_link' in context)
  180. self.assertFalse('role' in context)
  181. self.assertTrue('mentor_applied' in context)
  182. self.assertFalse('invited_role' in context)
  183. self.assertFalse('mentor_request_link' in context)
  184. def testInvitedMentor(self):
  185. self.data.createInvitation(self.org, 'mentor')
  186. context = self.homepageContext()
  187. self.assertNoStudent(context)
  188. self.assertTrue('mentor_apply_block' in context)
  189. self.assertFalse('mentor_profile_link' in context)
  190. self.assertFalse('role' in context)
  191. self.assertFalse('mentor_applied' in context)
  192. self.assertEqual('a mentor', context['invited_role'])
  193. self.assertFalse('mentor_request_link' in context)
  194. def testInvitedOrgAdmin(self):
  195. self.data.createInvitation(self.org, 'org_admin')
  196. context = self.homepageContext()
  197. self.assertNoStudent(context)
  198. self.assertTrue('mentor_apply_block' in context)
  199. self.assertFalse('mentor_profile_link' in context)
  200. self.assertFalse('role' in context)
  201. self.assertFalse('mentor_applied' in context)
  202. self.assertEqual('an administrator', context['invited_role'])
  203. self.assertFalse('mentor_request_link' in context)
  204. def testStudentDuringSignup(self):
  205. self.timeline.studentSignup()
  206. self.data.createStudent()
  207. context = self.homepageContext()
  208. self.assertTrue('student_apply_block' in context)
  209. self.assertFalse('student_profile_link' in context)
  210. self.assertTrue('submit_proposal_link' in context)
  211. self.assertNoMentor(context)
  212. def testStudentPostSignup(self):
  213. self.timeline.postStudentSignup()
  214. self.data.createStudent()
  215. context = self.homepageContext()
  216. self.assertNoStudent(context)
  217. self.assertNoStudent(context)