2015-09-06 10:29:23 +02:00
|
|
|
import json
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
import pytest
|
2015-04-30 19:13:28 +02:00
|
|
|
from django.contrib.auth import get_user_model
|
2018-07-09 23:22:26 +02:00
|
|
|
from django.urls import reverse
|
2015-04-30 19:13:28 +02:00
|
|
|
from rest_framework import status
|
|
|
|
from rest_framework.test import APIClient
|
|
|
|
|
2015-06-29 12:08:15 +02:00
|
|
|
from openslides.core.config import config
|
2018-08-31 15:33:41 +02:00
|
|
|
from openslides.core.models import Tag
|
2017-12-15 13:01:25 +01:00
|
|
|
from openslides.motions.models import (
|
|
|
|
Category,
|
|
|
|
Motion,
|
|
|
|
MotionBlock,
|
2018-10-25 15:11:38 +02:00
|
|
|
MotionChangeRecommendation,
|
2018-08-31 15:33:41 +02:00
|
|
|
MotionComment,
|
|
|
|
MotionCommentSection,
|
2018-01-26 14:56:42 +01:00
|
|
|
MotionLog,
|
2017-12-15 13:01:25 +01:00
|
|
|
State,
|
2018-09-24 10:28:31 +02:00
|
|
|
StatuteParagraph,
|
2018-06-12 14:17:02 +02:00
|
|
|
Submitter,
|
2017-12-15 13:01:25 +01:00
|
|
|
Workflow,
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
from openslides.utils.auth import get_group_model
|
2018-09-01 08:00:00 +02:00
|
|
|
from openslides.utils.autoupdate import inform_changed_data
|
2017-09-04 00:25:45 +02:00
|
|
|
from openslides.utils.test import TestCase
|
2015-04-30 19:13:28 +02:00
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
from ..helpers import count_queries
|
2015-04-30 19:13:28 +02:00
|
|
|
|
2016-09-18 16:00:31 +02:00
|
|
|
|
2018-10-09 13:44:38 +02:00
|
|
|
GROUP_DEFAULT_PK = 1
|
|
|
|
GROUP_ADMIN_PK = 2
|
|
|
|
GROUP_DELEGATE_PK = 3
|
|
|
|
GROUP_STAFF_PK = 4
|
|
|
|
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
@pytest.mark.django_db(transaction=False)
|
|
|
|
def test_motion_db_queries():
|
2016-09-18 16:00:31 +02:00
|
|
|
"""
|
2018-07-09 23:22:26 +02:00
|
|
|
Tests that only the following db queries are done:
|
|
|
|
* 1 requests to get the list of all motions,
|
2018-09-06 13:39:16 +02:00
|
|
|
* 1 request to get the associated workflow
|
2018-08-31 15:33:41 +02:00
|
|
|
* 1 request for all motion comments
|
|
|
|
* 1 request for all motion comment sections required for the comments
|
|
|
|
* 1 request for all users required for the read_groups of the sections
|
2018-07-09 23:22:26 +02:00
|
|
|
* 1 request to get the agenda item,
|
|
|
|
* 1 request to get the motion log,
|
|
|
|
* 1 request to get the polls,
|
|
|
|
* 1 request to get the attachments,
|
|
|
|
* 1 request to get the tags,
|
|
|
|
* 2 requests to get the submitters and supporters.
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
Two comment sections are created and for each motions two comments.
|
2018-07-09 23:22:26 +02:00
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
section1 = MotionCommentSection.objects.create(name="test_section")
|
|
|
|
section2 = MotionCommentSection.objects.create(name="test_section")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
for index in range(10):
|
2019-01-06 16:22:33 +01:00
|
|
|
motion = Motion.objects.create(title="motion{}".format(index))
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
MotionComment.objects.create(
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment", motion=motion, section=section1
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
MotionComment.objects.create(
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment2", motion=motion, section=section2
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="user_{}".format(index), password="password"
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
# TODO: Create some polls etc.
|
2016-09-18 16:00:31 +02:00
|
|
|
|
2018-08-31 15:33:41 +02:00
|
|
|
assert count_queries(Motion.get_elements) == 12
|
2016-09-18 16:00:31 +02:00
|
|
|
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
@pytest.mark.django_db(transaction=False)
|
|
|
|
def test_category_db_queries():
|
2016-09-18 16:00:31 +02:00
|
|
|
"""
|
2018-07-09 23:22:26 +02:00
|
|
|
Tests that only the following db queries are done:
|
|
|
|
* 1 requests to get the list of all categories.
|
2016-09-18 16:00:31 +02:00
|
|
|
"""
|
2018-07-09 23:22:26 +02:00
|
|
|
for index in range(10):
|
2019-01-06 16:22:33 +01:00
|
|
|
Category.objects.create(name="category{}".format(index))
|
2016-09-18 16:00:31 +02:00
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
assert count_queries(Category.get_elements) == 1
|
2016-09-18 16:00:31 +02:00
|
|
|
|
|
|
|
|
2018-09-24 10:28:31 +02:00
|
|
|
@pytest.mark.django_db(transaction=False)
|
|
|
|
def test_statute_paragraph_db_queries():
|
|
|
|
"""
|
|
|
|
Tests that only the following db queries are done:
|
|
|
|
* 1 requests to get the list of all statute paragraphs.
|
|
|
|
"""
|
|
|
|
for index in range(10):
|
|
|
|
StatuteParagraph.objects.create(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="statute_paragraph{}".format(index), text="text{}".format(index)
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
assert count_queries(StatuteParagraph.get_elements) == 1
|
|
|
|
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
@pytest.mark.django_db(transaction=False)
|
|
|
|
def test_workflow_db_queries():
|
2016-09-18 16:00:31 +02:00
|
|
|
"""
|
2018-07-09 23:22:26 +02:00
|
|
|
Tests that only the following db queries are done:
|
|
|
|
* 1 requests to get the list of all workflows,
|
|
|
|
* 1 request to get all states and
|
|
|
|
* 1 request to get the next states of all states.
|
2016-09-18 16:00:31 +02:00
|
|
|
"""
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
assert count_queries(Workflow.get_elements) == 3
|
2016-09-18 16:00:31 +02:00
|
|
|
|
|
|
|
|
2018-09-24 10:28:31 +02:00
|
|
|
class TestStatuteParagraphs(TestCase):
|
|
|
|
"""
|
|
|
|
Tests all CRUD operations of statute paragraphs.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-09-24 10:28:31 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
def create_statute_paragraph(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
self.title = "test_title_fiWs82D0D)2kje3KDm2s"
|
|
|
|
self.text = "test_text_3jfjoDqm,S;cmor3DJwk"
|
|
|
|
self.cp = StatuteParagraph.objects.create(title=self.title, text=self.text)
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
def test_create_simple(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("statuteparagraph-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_f3FM328cq)tzdU238df2",
|
|
|
|
"text": "test_text_2fb)BEjwdI38=kfemiRkcOW",
|
|
|
|
},
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
cp = StatuteParagraph.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(cp.title, "test_title_f3FM328cq)tzdU238df2")
|
|
|
|
self.assertEqual(cp.text, "test_text_2fb)BEjwdI38=kfemiRkcOW")
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
def test_create_without_data(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.post(reverse("statuteparagraph-list"), {})
|
2018-09-24 10:28:31 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"title": ["This field is required."], "text": ["This field is required."]},
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
def test_create_non_admin(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
2018-09-24 10:28:31 +02:00
|
|
|
inform_changed_data(self.admin)
|
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("statuteparagraph-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_f3(Dj2jdP39fjW2kdcwe",
|
|
|
|
"text": "test_text_vlC)=fwWmcwcpWMvnuw(",
|
|
|
|
},
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
|
|
|
|
|
|
def test_retrieve_simple(self):
|
|
|
|
self.create_statute_paragraph()
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(
|
|
|
|
reverse("statuteparagraph-detail", args=[self.cp.pk])
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
sorted(response.data.keys()), sorted(("id", "title", "text", "weight"))
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
def test_update_simple(self):
|
|
|
|
self.create_statute_paragraph()
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("statuteparagraph-detail", args=[self.cp.pk]),
|
|
|
|
{"text": "test_text_ke(czr/cwk1Sl2seeFwE"},
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
cp = StatuteParagraph.objects.get()
|
|
|
|
self.assertEqual(cp.title, self.title)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(cp.text, "test_text_ke(czr/cwk1Sl2seeFwE")
|
2018-09-24 10:28:31 +02:00
|
|
|
|
|
|
|
def test_update_non_admin(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
2018-09-24 10:28:31 +02:00
|
|
|
inform_changed_data(self.admin)
|
|
|
|
|
|
|
|
self.create_statute_paragraph()
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("statuteparagraph-detail", args=[self.cp.pk]),
|
|
|
|
{"text": "test_text_ke(czr/cwk1Sl2seeFwE"},
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
|
|
cp = StatuteParagraph.objects.get()
|
|
|
|
self.assertEqual(cp.text, self.text)
|
|
|
|
|
|
|
|
def test_delete_simple(self):
|
|
|
|
self.create_statute_paragraph()
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(
|
|
|
|
reverse("statuteparagraph-detail", args=[self.cp.pk])
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
|
|
|
|
self.assertEqual(StatuteParagraph.objects.count(), 0)
|
|
|
|
|
|
|
|
def test_delete_non_admin(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
2018-09-24 10:28:31 +02:00
|
|
|
inform_changed_data(self.admin)
|
|
|
|
|
|
|
|
self.create_statute_paragraph()
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(
|
|
|
|
reverse("statuteparagraph-detail", args=[self.cp.pk])
|
|
|
|
)
|
2018-09-24 10:28:31 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
|
|
self.assertEqual(StatuteParagraph.objects.count(), 1)
|
|
|
|
|
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
class CreateMotion(TestCase):
|
|
|
|
"""
|
|
|
|
Tests motion creation.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
def setUp(self):
|
2016-09-09 15:16:56 +02:00
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_simple(self):
|
2015-07-06 09:19:42 +02:00
|
|
|
"""
|
|
|
|
Tests that a motion is created with a specific title and text.
|
|
|
|
|
|
|
|
The created motion should have an identifier and the admin user should
|
|
|
|
be the submitter.
|
|
|
|
"""
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_OoCoo3MeiT9li5Iengu9",
|
|
|
|
"text": "test_text_thuoz0iecheiheereiCi",
|
|
|
|
},
|
|
|
|
)
|
2015-07-06 09:19:42 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
2016-07-29 23:33:47 +02:00
|
|
|
motion = Motion.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.title, "test_title_OoCoo3MeiT9li5Iengu9")
|
|
|
|
self.assertEqual(motion.identifier, "1")
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertTrue(motion.submitters.exists())
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.submitters.get().user.username, "admin")
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_with_reason(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_saib4hiHaifo9ohp9yie",
|
|
|
|
"text": "test_text_shahhie8Ej4mohvoorie",
|
|
|
|
"reason": "test_reason_Ou8GivahYivoh3phoh9c",
|
|
|
|
},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get().reason, "test_reason_Ou8GivahYivoh3phoh9c"
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_without_data(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.post(reverse("motion-list"), {})
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"title": ["This field is required."], "text": ["This field is required."]},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_with_category(self):
|
|
|
|
category = Category.objects.create(
|
2019-01-06 16:22:33 +01:00
|
|
|
name="test_category_name_CiengahzooH4ohxietha",
|
|
|
|
prefix="TEST_PREFIX_la0eadaewuec3seoxeiN",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_Air0bahchaiph1ietoo2",
|
|
|
|
"text": "test_text_chaeF9wosh8OowazaiVu",
|
|
|
|
"category_id": category.pk,
|
|
|
|
},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
motion = Motion.objects.get()
|
|
|
|
self.assertEqual(motion.category, category)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.identifier, "TEST_PREFIX_la0eadaewuec3seoxeiN 1")
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_with_submitters(self):
|
|
|
|
submitter_1 = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="test_username_ooFe6aebei9ieQui2poo",
|
|
|
|
password="test_password_vie9saiQu5Aengoo9ku0",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
submitter_2 = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="test_username_eeciengoc4aihie5eeSh",
|
|
|
|
password="test_password_peik2Eihu5oTh7siequi",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_pha7moPh7quoth4paina",
|
|
|
|
"text": "test_text_YooGhae6tiangung5Rie",
|
|
|
|
"submitters_id": [submitter_1.pk, submitter_2.pk],
|
|
|
|
},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
motion = Motion.objects.get()
|
|
|
|
self.assertEqual(motion.submitters.count(), 2)
|
|
|
|
|
|
|
|
def test_with_one_supporter(self):
|
|
|
|
supporter = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="test_username_ahGhi4Quohyee7ohngie",
|
|
|
|
password="test_password_Nei6aeh8OhY8Aegh1ohX",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_Oecee4Da2Mu9EY6Ui4mu",
|
|
|
|
"text": "test_text_FbhgnTFgkbjdmvcjbffg",
|
|
|
|
"supporters_id": [supporter.pk],
|
|
|
|
},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
motion = Motion.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
motion.supporters.get().username, "test_username_ahGhi4Quohyee7ohngie"
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_with_tag(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
tag = Tag.objects.create(name="test_tag_iRee3kiecoos4rorohth")
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_Hahke4loos4eiduNiid9",
|
|
|
|
"text": "test_text_johcho0Ucaibiehieghe",
|
|
|
|
"tags_id": [tag.pk],
|
|
|
|
},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
motion = Motion.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.tags.get().name, "test_tag_iRee3kiecoos4rorohth")
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_with_workflow(self):
|
2015-11-03 10:03:44 +01:00
|
|
|
"""
|
|
|
|
Test to create a motion with a specific workflow.
|
|
|
|
"""
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_eemuR5hoo4ru2ahgh5EJ",
|
|
|
|
"text": "test_text_ohviePopahPhoili7yee",
|
|
|
|
"workflow_id": "2",
|
|
|
|
},
|
|
|
|
)
|
2015-11-03 10:03:44 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
2015-11-03 10:03:44 +01:00
|
|
|
self.assertEqual(Motion.objects.get().state.workflow_id, 2)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
2015-11-18 01:20:49 +01:00
|
|
|
def test_non_admin(self):
|
|
|
|
"""
|
|
|
|
Test to create a motion by a delegate, non staff user.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.admin)
|
2017-03-28 18:41:08 +02:00
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_peiJozae0luew9EeL8bo",
|
|
|
|
"text": "test_text_eHohS8ohr5ahshoah8Oh",
|
|
|
|
},
|
|
|
|
)
|
2017-03-28 18:41:08 +02:00
|
|
|
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
|
2017-02-24 08:37:27 +01:00
|
|
|
def test_amendment_motion(self):
|
|
|
|
"""
|
|
|
|
Test to create a motion with a parent motion as staff user.
|
|
|
|
"""
|
|
|
|
parent_motion = self.create_parent_motion()
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_doe93Jsjd2sW20dkSl20",
|
|
|
|
"text": "test_text_feS20SksD8D25skmwD25",
|
|
|
|
"parent_id": parent_motion.id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
created_motion = Motion.objects.get(pk=int(response.data["id"]))
|
2017-02-24 08:37:27 +01:00
|
|
|
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
self.assertEqual(created_motion.parent, parent_motion)
|
|
|
|
|
|
|
|
def test_amendment_motion_parent_not_exist(self):
|
|
|
|
"""
|
|
|
|
Test to create an amendment motion with a non existing parent.
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_gEjdkW93Wj23KS2s8dSe",
|
|
|
|
"text": "test_text_lfwLIC&AjfsaoijOEusa",
|
|
|
|
"parent_id": 100,
|
|
|
|
},
|
|
|
|
)
|
2017-02-24 08:37:27 +01:00
|
|
|
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(response.data, {"detail": "The parent motion does not exist."})
|
2017-02-24 08:37:27 +01:00
|
|
|
|
|
|
|
def test_amendment_motion_non_admin(self):
|
|
|
|
"""
|
|
|
|
Test to create an amendment motion by a delegate. The parents
|
|
|
|
category should be also set on the new motion.
|
|
|
|
"""
|
|
|
|
parent_motion = self.create_parent_motion()
|
|
|
|
category = Category.objects.create(
|
2019-01-06 16:22:33 +01:00
|
|
|
name="test_category_name_Dslk3Fj8s8Ps36S3Kskw",
|
|
|
|
prefix="TEST_PREFIX_L23skfmlq3kslamslS39",
|
|
|
|
)
|
2017-02-24 08:37:27 +01:00
|
|
|
parent_motion.category = category
|
|
|
|
parent_motion.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.admin)
|
2017-02-24 08:37:27 +01:00
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_fk3a0slalms47KSewnWG",
|
|
|
|
"text": "test_text_al3FMwSCNM31WOmw9ezx",
|
|
|
|
"parent_id": parent_motion.id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
created_motion = Motion.objects.get(pk=int(response.data["id"]))
|
2017-02-24 08:37:27 +01:00
|
|
|
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
self.assertEqual(created_motion.parent, parent_motion)
|
|
|
|
self.assertEqual(created_motion.category, category)
|
|
|
|
|
|
|
|
def create_parent_motion(self):
|
|
|
|
"""
|
|
|
|
Returns a new created motion used for testing amendments.
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_3leoeo2qac7830c92j9s",
|
|
|
|
"text": "test_text_9dm3ks9gDuW20Al38L9w",
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return Motion.objects.get(pk=int(response.data["id"]))
|
2017-02-24 08:37:27 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
|
2016-02-24 10:27:42 +01:00
|
|
|
class RetrieveMotion(TestCase):
|
|
|
|
"""
|
|
|
|
Tests retrieving a motion (with poll results).
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2016-02-24 10:27:42 +01:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2016-02-24 10:27:42 +01:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_uj5eeSiedohSh3ohyaaj",
|
|
|
|
text="test_text_ithohchaeThohmae5aug",
|
|
|
|
)
|
2016-02-24 10:27:42 +01:00
|
|
|
self.motion.save()
|
|
|
|
self.motion.create_poll()
|
2017-04-07 16:15:53 +02:00
|
|
|
for index in range(10):
|
|
|
|
get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="user_{}".format(index), password="password"
|
|
|
|
)
|
2016-02-24 10:27:42 +01:00
|
|
|
|
2016-12-17 09:30:20 +01:00
|
|
|
def test_guest_state_with_required_permission_to_see(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
config["general_system_enable_anonymous"] = True
|
2016-12-09 18:00:45 +01:00
|
|
|
guest_client = APIClient()
|
|
|
|
state = self.motion.state
|
2019-01-06 16:22:33 +01:00
|
|
|
state.required_permission_to_see = (
|
|
|
|
"permission_that_the_user_does_not_have_leeceiz9hi7iuta4ahY2"
|
|
|
|
)
|
2016-12-09 18:00:45 +01:00
|
|
|
state.save()
|
2017-09-04 00:25:45 +02:00
|
|
|
# The cache has to be cleared, see:
|
|
|
|
# https://github.com/OpenSlides/OpenSlides/issues/3396
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.motion)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = guest_client.get(reverse("motion-detail", args=[self.motion.pk]))
|
2018-11-01 17:30:18 +01:00
|
|
|
self.assertEqual(response.status_code, 404)
|
2016-12-09 18:00:45 +01:00
|
|
|
|
|
|
|
def test_admin_state_with_required_permission_to_see(self):
|
|
|
|
state = self.motion.state
|
2019-01-06 16:22:33 +01:00
|
|
|
state.required_permission_to_see = (
|
|
|
|
"permission_that_the_user_does_not_have_coo1Iewu8Eing2xahfoo"
|
|
|
|
)
|
2016-12-09 18:00:45 +01:00
|
|
|
state.save()
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motion-detail", args=[self.motion.pk]))
|
2016-12-09 18:00:45 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
|
|
|
|
def test_submitter_state_with_required_permission_to_see(self):
|
|
|
|
state = self.motion.state
|
2019-01-06 16:22:33 +01:00
|
|
|
state.required_permission_to_see = (
|
|
|
|
"permission_that_the_user_does_not_have_eiW8af9caizoh1thaece"
|
|
|
|
)
|
2016-12-09 18:00:45 +01:00
|
|
|
state.save()
|
|
|
|
user = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="username_ohS2opheikaSa5theijo",
|
|
|
|
password="password_kau4eequaisheeBateef",
|
|
|
|
)
|
2018-06-12 14:17:02 +02:00
|
|
|
Submitter.objects.add(user, self.motion)
|
2016-12-09 18:00:45 +01:00
|
|
|
submitter_client = APIClient()
|
2016-12-17 09:30:20 +01:00
|
|
|
submitter_client.force_login(user)
|
2019-01-06 16:22:33 +01:00
|
|
|
response = submitter_client.get(reverse("motion-detail", args=[self.motion.pk]))
|
2016-12-09 18:00:45 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
def test_user_without_can_see_user_permission_to_see_motion_and_submitter_data(
|
|
|
|
self
|
|
|
|
):
|
|
|
|
admin = get_user_model().objects.get(username="admin")
|
2018-06-12 14:17:02 +02:00
|
|
|
Submitter.objects.add(admin, self.motion)
|
2019-01-06 16:22:33 +01:00
|
|
|
group = get_group_model().objects.get(
|
|
|
|
pk=GROUP_DEFAULT_PK
|
|
|
|
) # Group with pk 1 is for anonymous and default users.
|
|
|
|
permission_string = "users.can_see_name"
|
|
|
|
app_label, codename = permission_string.split(".")
|
|
|
|
permission = group.permissions.get(
|
|
|
|
content_type__app_label=app_label, codename=codename
|
|
|
|
)
|
2017-04-10 16:28:38 +02:00
|
|
|
group.permissions.remove(permission)
|
2019-01-06 16:22:33 +01:00
|
|
|
config["general_system_enable_anonymous"] = True
|
2017-04-10 16:28:38 +02:00
|
|
|
guest_client = APIClient()
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(group)
|
2018-11-01 17:30:18 +01:00
|
|
|
inform_changed_data(self.motion)
|
2017-04-10 16:28:38 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response_1 = guest_client.get(reverse("motion-detail", args=[self.motion.pk]))
|
2017-04-10 16:28:38 +02:00
|
|
|
self.assertEqual(response_1.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
submitter_id = response_1.data["submitters"][0]["user_id"]
|
|
|
|
response_2 = guest_client.get(reverse("user-detail", args=[submitter_id]))
|
2017-04-10 16:28:38 +02:00
|
|
|
self.assertEqual(response_2.status_code, status.HTTP_200_OK)
|
|
|
|
|
|
|
|
extra_user = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="username_wequePhieFoom0hai3wa",
|
|
|
|
password="password_ooth7taechai5Oocieya",
|
|
|
|
)
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response_3 = guest_client.get(reverse("user-detail", args=[extra_user.pk]))
|
2018-11-01 17:30:18 +01:00
|
|
|
self.assertEqual(response_3.status_code, 404)
|
2017-04-10 16:28:38 +02:00
|
|
|
|
2016-02-24 10:27:42 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
class UpdateMotion(TestCase):
|
|
|
|
"""
|
|
|
|
Tests updating motions.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_aeng7ahChie3waiR8xoh",
|
|
|
|
text="test_text_xeigheeha7thopubeu4U",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion.save()
|
|
|
|
|
|
|
|
def test_simple_patch(self):
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-detail", args=[self.motion.pk]),
|
|
|
|
{"identifier": "test_identifier_jieseghohj7OoSah1Ko9"},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
motion = Motion.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.title, "test_title_aeng7ahChie3waiR8xoh")
|
|
|
|
self.assertEqual(motion.identifier, "test_identifier_jieseghohj7OoSah1Ko9")
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_patch_workflow(self):
|
2015-11-03 10:03:44 +01:00
|
|
|
"""
|
|
|
|
Tests to only update the workflow of a motion.
|
|
|
|
"""
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-detail", args=[self.motion.pk]), {"workflow_id": "2"}
|
|
|
|
)
|
2015-11-03 10:03:44 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
motion = Motion.objects.get()
|
2015-11-03 10:03:44 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.title, "test_title_aeng7ahChie3waiR8xoh")
|
2018-09-06 13:39:16 +02:00
|
|
|
self.assertEqual(motion.workflow_id, 2)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_patch_supporters(self):
|
|
|
|
supporter = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="test_username_ieB9eicah0uqu6Phoovo",
|
|
|
|
password="test_password_XaeTe3aesh8ohg6Cohwo",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-detail", args=[self.motion.pk]),
|
|
|
|
json.dumps({"supporters_id": [supporter.pk]}),
|
|
|
|
content_type="application/json",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
motion = Motion.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.title, "test_title_aeng7ahChie3waiR8xoh")
|
|
|
|
self.assertEqual(
|
|
|
|
motion.supporters.get().username, "test_username_ieB9eicah0uqu6Phoovo"
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
2015-09-06 10:29:23 +02:00
|
|
|
def test_patch_supporters_non_manager(self):
|
|
|
|
non_admin = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="test_username_uqu6PhoovieB9eicah0o",
|
|
|
|
password="test_password_Xaesh8ohg6CoheTe3awo",
|
|
|
|
)
|
2015-09-06 10:29:23 +02:00
|
|
|
self.client.login(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="test_username_uqu6PhoovieB9eicah0o",
|
|
|
|
password="test_password_Xaesh8ohg6CoheTe3awo",
|
|
|
|
)
|
2015-09-06 10:29:23 +02:00
|
|
|
motion = Motion.objects.get()
|
2018-06-12 14:17:02 +02:00
|
|
|
Submitter.objects.add(non_admin, self.motion)
|
2015-09-06 10:29:23 +02:00
|
|
|
motion.supporters.clear()
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-detail", args=[self.motion.pk]),
|
|
|
|
json.dumps({"supporters_id": [1]}),
|
|
|
|
content_type="application/json",
|
|
|
|
)
|
2016-01-14 23:44:19 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertFalse(motion.supporters.exists())
|
2015-09-06 10:29:23 +02:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
def test_removal_of_supporters(self):
|
2018-01-20 13:57:25 +01:00
|
|
|
# No cache used here.
|
2019-01-06 16:22:33 +01:00
|
|
|
admin = get_user_model().objects.get(username="admin")
|
|
|
|
group_admin = admin.groups.get(name="Admin")
|
2018-02-23 13:00:47 +01:00
|
|
|
admin.groups.remove(group_admin)
|
2018-06-12 14:17:02 +02:00
|
|
|
Submitter.objects.add(admin, self.motion)
|
2015-04-30 19:13:28 +02:00
|
|
|
supporter = get_user_model().objects.create_user(
|
2019-01-06 16:22:33 +01:00
|
|
|
username="test_username_ahshi4oZin0OoSh9chee",
|
|
|
|
password="test_password_Sia8ahgeenixu5cei2Ib",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion.supporters.add(supporter)
|
2019-01-06 16:22:33 +01:00
|
|
|
config["motions_remove_supporters"] = True
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(self.motion.supporters.count(), 1)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data((admin, self.motion))
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-detail", args=[self.motion.pk]),
|
|
|
|
{"title": "new_title_ohph1aedie5Du8sai2ye"},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
motion = Motion.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(motion.title, "new_title_ohph1aedie5Du8sai2ye")
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(motion.supporters.count(), 0)
|
|
|
|
|
|
|
|
|
2017-12-15 13:01:25 +01:00
|
|
|
class DeleteMotion(TestCase):
|
|
|
|
"""
|
|
|
|
Tests deleting motions.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2017-12-15 13:01:25 +01:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2017-12-15 13:01:25 +01:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_acle3fa93l11lwlkcc31",
|
|
|
|
text="test_text_f390sjfyycj29ss56sro",
|
|
|
|
)
|
2017-12-15 13:01:25 +01:00
|
|
|
self.motion.save()
|
|
|
|
|
|
|
|
def test_simple_delete(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(reverse("motion-detail", args=[self.motion.pk]))
|
2017-12-15 13:01:25 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
|
|
|
|
motions = Motion.objects.count()
|
|
|
|
self.assertEqual(motions, 0)
|
|
|
|
|
|
|
|
def make_admin_delegate(self):
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.admin)
|
2017-12-15 13:01:25 +01:00
|
|
|
|
|
|
|
def put_motion_in_complex_workflow(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
workflow = Workflow.objects.get(name="Complex Workflow")
|
2017-12-15 13:01:25 +01:00
|
|
|
self.motion.reset_state(workflow=workflow)
|
|
|
|
self.motion.save()
|
|
|
|
|
|
|
|
def test_delete_foreign_motion_as_delegate(self):
|
|
|
|
self.make_admin_delegate()
|
|
|
|
self.put_motion_in_complex_workflow()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(reverse("motion-detail", args=[self.motion.pk]))
|
2017-12-15 13:01:25 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
|
|
|
|
|
|
def test_delete_own_motion_as_delegate(self):
|
|
|
|
self.make_admin_delegate()
|
|
|
|
self.put_motion_in_complex_workflow()
|
2018-06-12 14:17:02 +02:00
|
|
|
Submitter.objects.add(self.admin, self.motion)
|
2017-12-15 13:01:25 +01:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(reverse("motion-detail", args=[self.motion.pk]))
|
2017-12-15 13:01:25 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
|
|
|
|
motions = Motion.objects.count()
|
|
|
|
self.assertEqual(motions, 0)
|
|
|
|
|
|
|
|
|
2018-12-06 14:58:34 +01:00
|
|
|
class ManageMultipleSubmitters(TestCase):
|
2018-06-12 14:17:02 +02:00
|
|
|
"""
|
|
|
|
Tests adding and removing of submitters.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-06-12 14:17:02 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-06-12 14:17:02 +02:00
|
|
|
|
|
|
|
self.admin = get_user_model().objects.get()
|
2018-12-06 14:58:34 +01:00
|
|
|
self.motion1 = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_SlqfMw(waso0saWMPqcZ",
|
|
|
|
text="test_text_f30skclqS9wWF=xdfaSL",
|
|
|
|
)
|
2018-12-06 14:58:34 +01:00
|
|
|
self.motion1.save()
|
|
|
|
self.motion2 = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_f>FLEim38MC2m9PFp2jG",
|
|
|
|
text="test_text_kg39KFGm,ao)22FK9lLu",
|
|
|
|
)
|
2018-12-06 14:58:34 +01:00
|
|
|
self.motion2.save()
|
|
|
|
|
|
|
|
def test_set_submitters(self):
|
2018-06-12 14:17:02 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-multiple-submitters"),
|
|
|
|
json.dumps(
|
|
|
|
{
|
|
|
|
"motions": [
|
|
|
|
{"id": self.motion1.id, "submitters": [self.admin.pk]},
|
|
|
|
{"id": self.motion2.id, "submitters": [self.admin.pk]},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
),
|
|
|
|
content_type="application/json",
|
2018-12-07 21:06:30 +01:00
|
|
|
)
|
2018-06-12 14:17:02 +02:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2018-12-06 14:58:34 +01:00
|
|
|
self.assertEqual(self.motion1.submitters.count(), 1)
|
|
|
|
self.assertEqual(self.motion2.submitters.count(), 1)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
self.motion1.submitters.get().user.pk, self.motion2.submitters.get().user.pk
|
|
|
|
)
|
2018-06-12 14:17:02 +02:00
|
|
|
|
2018-12-06 14:58:34 +01:00
|
|
|
def test_non_existing_user(self):
|
2018-06-12 14:17:02 +02:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-multiple-submitters"),
|
|
|
|
{"motions": [{"id": self.motion1.id, "submitters": [1337]}]},
|
|
|
|
)
|
2018-06-12 14:17:02 +02:00
|
|
|
self.assertEqual(response.status_code, 400)
|
2018-12-06 14:58:34 +01:00
|
|
|
self.assertEqual(self.motion1.submitters.count(), 0)
|
2018-06-12 14:17:02 +02:00
|
|
|
|
|
|
|
def test_add_user_no_data(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.post(reverse("motion-manage-multiple-submitters"))
|
2018-06-12 14:17:02 +02:00
|
|
|
self.assertEqual(response.status_code, 400)
|
2018-12-06 14:58:34 +01:00
|
|
|
self.assertEqual(self.motion1.submitters.count(), 0)
|
|
|
|
self.assertEqual(self.motion2.submitters.count(), 0)
|
2018-06-12 14:17:02 +02:00
|
|
|
|
|
|
|
def test_add_user_invalid_data(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-multiple-submitters"), {"motions": ["invalid_str"]}
|
|
|
|
)
|
2018-06-12 14:17:02 +02:00
|
|
|
self.assertEqual(response.status_code, 400)
|
2018-12-06 14:58:34 +01:00
|
|
|
self.assertEqual(self.motion1.submitters.count(), 0)
|
|
|
|
self.assertEqual(self.motion2.submitters.count(), 0)
|
2018-06-12 14:17:02 +02:00
|
|
|
|
|
|
|
def test_add_without_permission(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
admin = get_user_model().objects.get(username="admin")
|
2018-10-09 13:44:38 +02:00
|
|
|
admin.groups.add(GROUP_DELEGATE_PK)
|
|
|
|
admin.groups.remove(GROUP_ADMIN_PK)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(admin)
|
2018-06-12 14:17:02 +02:00
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-multiple-submitters"),
|
|
|
|
{"motions": [{"id": self.motion1.id, "submitters": [self.admin.pk]}]},
|
|
|
|
)
|
2018-06-12 14:17:02 +02:00
|
|
|
self.assertEqual(response.status_code, 403)
|
2018-12-06 14:58:34 +01:00
|
|
|
self.assertEqual(self.motion1.submitters.count(), 0)
|
|
|
|
self.assertEqual(self.motion2.submitters.count(), 0)
|
2018-06-12 14:17:02 +02:00
|
|
|
|
|
|
|
|
2018-08-31 15:33:41 +02:00
|
|
|
class ManageComments(TestCase):
|
|
|
|
"""
|
|
|
|
Tests the manage_comment view.
|
|
|
|
|
|
|
|
Tests creation/updating and deletion of motion comments.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-08-31 15:33:41 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
self.admin = get_user_model().objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.group_out = get_group_model().objects.get(
|
|
|
|
pk=GROUP_DELEGATE_PK
|
|
|
|
) # The admin should not be in this group
|
2018-10-09 13:44:38 +02:00
|
|
|
|
|
|
|
# Put the admin into the staff group, becaust in the admin group, he has all permissions for
|
|
|
|
# every single comment section.
|
|
|
|
self.admin.groups.add(GROUP_STAFF_PK)
|
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
|
|
|
inform_changed_data(self.admin)
|
|
|
|
self.group_in = get_group_model().objects.get(pk=GROUP_STAFF_PK)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_SlqfMw(waso0saWMPqcZ",
|
|
|
|
text="test_text_f30skclqS9wWF=xdfaSL",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.motion.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
self.section_no_groups = MotionCommentSection(
|
|
|
|
name='test_name_gj4F§(fj"(edm"§F3f3fs'
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.section_no_groups.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
self.section_read = MotionCommentSection(name="test_name_2wv30(d2S&kvelkakl39")
|
2018-08-31 15:33:41 +02:00
|
|
|
self.section_read.save()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.section_read.read_groups.add(
|
|
|
|
self.group_in, self.group_out
|
|
|
|
) # Group out for testing multiple groups
|
2018-08-31 15:33:41 +02:00
|
|
|
self.section_read.write_groups.add(self.group_out)
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
self.section_read_write = MotionCommentSection(
|
|
|
|
name="test_name_a3m9sd0(Mw2%slkrv30,"
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.section_read_write.save()
|
|
|
|
self.section_read_write.read_groups.add(self.group_in)
|
|
|
|
self.section_read_write.write_groups.add(self.group_in)
|
|
|
|
|
|
|
|
def test_retrieve_comment(self):
|
|
|
|
comment = MotionComment(
|
|
|
|
motion=self.motion,
|
|
|
|
section=self.section_read_write,
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment_gwic37Csc&3lf3eo2",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
comment.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motion-detail", args=[self.motion.pk]))
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertTrue("comments" in response.data)
|
|
|
|
comments = response.data["comments"]
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertTrue(isinstance(comments, list))
|
|
|
|
self.assertEqual(len(comments), 1)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comments[0]["comment"], "test_comment_gwic37Csc&3lf3eo2")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_retrieve_comment_no_read_permission(self):
|
|
|
|
comment = MotionComment(
|
|
|
|
motion=self.motion,
|
|
|
|
section=self.section_no_groups,
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment_fgkj3C7veo3ijWE(j2DJ",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
comment.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motion-detail", args=[self.motion.pk]))
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertTrue("comments" in response.data)
|
|
|
|
comments = response.data["comments"]
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertTrue(isinstance(comments, list))
|
|
|
|
self.assertEqual(len(comments), 0)
|
|
|
|
|
|
|
|
def test_wrong_data_type(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
2018-08-31 15:33:41 +02:00
|
|
|
None,
|
2019-01-06 16:22:33 +01:00
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
response.data["detail"], "You have to provide a section_id of type int."
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_wrong_comment_data_type(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
2018-08-31 15:33:41 +02:00
|
|
|
{
|
2019-01-06 16:22:33 +01:00
|
|
|
"section_id": self.section_read_write.id,
|
|
|
|
"comment": [32, "no_correct_data"],
|
2018-08-31 15:33:41 +02:00
|
|
|
},
|
2019-01-06 16:22:33 +01:00
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(response.data["detail"], "The comment should be a string.")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_non_existing_section(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
|
|
|
{"section_id": 42},
|
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
response.data["detail"], "A comment section with id 42 does not exist"
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_create_comment(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
2018-08-31 15:33:41 +02:00
|
|
|
{
|
2019-01-06 16:22:33 +01:00
|
|
|
"section_id": self.section_read_write.pk,
|
|
|
|
"comment": "test_comment_fk3jrnfwsdg%fj=feijf",
|
2018-08-31 15:33:41 +02:00
|
|
|
},
|
2019-01-06 16:22:33 +01:00
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(MotionComment.objects.count(), 1)
|
|
|
|
comment = MotionComment.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comment.comment, "test_comment_fk3jrnfwsdg%fj=feijf")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
# Check for a log entry
|
|
|
|
motion_logs = MotionLog.objects.filter(motion=self.motion)
|
|
|
|
self.assertEqual(motion_logs.count(), 1)
|
|
|
|
comment_log = motion_logs.get()
|
|
|
|
self.assertTrue(self.section_read_write.name in comment_log.message_list[0])
|
|
|
|
|
|
|
|
def test_update_comment(self):
|
|
|
|
comment = MotionComment(
|
|
|
|
motion=self.motion,
|
|
|
|
section=self.section_read_write,
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment_fji387fqwdf&ff=)Fe3j",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
comment.save()
|
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
2018-08-31 15:33:41 +02:00
|
|
|
{
|
2019-01-06 16:22:33 +01:00
|
|
|
"section_id": self.section_read_write.pk,
|
|
|
|
"comment": "test_comment_fk3jrnfwsdg%fj=feijf",
|
2018-08-31 15:33:41 +02:00
|
|
|
},
|
2019-01-06 16:22:33 +01:00
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
comment = MotionComment.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comment.comment, "test_comment_fk3jrnfwsdg%fj=feijf")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
# Check for a log entry
|
|
|
|
motion_logs = MotionLog.objects.filter(motion=self.motion)
|
|
|
|
self.assertEqual(motion_logs.count(), 1)
|
|
|
|
comment_log = motion_logs.get()
|
|
|
|
self.assertTrue(self.section_read_write.name in comment_log.message_list[0])
|
|
|
|
|
|
|
|
def test_delete_comment(self):
|
|
|
|
comment = MotionComment(
|
|
|
|
motion=self.motion,
|
|
|
|
section=self.section_read_write,
|
2019-01-06 16:22:33 +01:00
|
|
|
comment='test_comment_5CJ"8f23jd3j2,r93keZ',
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
comment.save()
|
|
|
|
|
|
|
|
response = self.client.delete(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
|
|
|
{"section_id": self.section_read_write.pk},
|
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(MotionComment.objects.count(), 0)
|
|
|
|
|
|
|
|
# Check for a log entry
|
|
|
|
motion_logs = MotionLog.objects.filter(motion=self.motion)
|
|
|
|
self.assertEqual(motion_logs.count(), 1)
|
|
|
|
comment_log = motion_logs.get()
|
|
|
|
self.assertTrue(self.section_read_write.name in comment_log.message_list[0])
|
|
|
|
|
|
|
|
def test_delete_not_existing_comment(self):
|
|
|
|
"""
|
|
|
|
This should fail silently; no error, if the user wants to delete
|
|
|
|
a not existing comment.
|
|
|
|
"""
|
|
|
|
response = self.client.delete(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
|
|
|
{"section_id": self.section_read_write.pk},
|
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(MotionComment.objects.count(), 0)
|
|
|
|
|
|
|
|
# Check that no log entry was created
|
|
|
|
motion_logs = MotionLog.objects.filter(motion=self.motion)
|
|
|
|
self.assertEqual(motion_logs.count(), 0)
|
|
|
|
|
|
|
|
def test_create_comment_no_write_permission(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
2018-08-31 15:33:41 +02:00
|
|
|
{
|
2019-01-06 16:22:33 +01:00
|
|
|
"section_id": self.section_read.pk,
|
|
|
|
"comment": "test_comment_f38jfwqfj830fj4j(FU3",
|
2018-08-31 15:33:41 +02:00
|
|
|
},
|
2019-01-06 16:22:33 +01:00
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(MotionComment.objects.count(), 0)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
response.data["detail"],
|
|
|
|
"You are not allowed to see or write to the comment section.",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_update_comment_no_write_permission(self):
|
|
|
|
comment = MotionComment(
|
|
|
|
motion=self.motion,
|
|
|
|
section=self.section_read,
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment_jg38dwiej2D832(D§dk)",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
comment.save()
|
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
2018-08-31 15:33:41 +02:00
|
|
|
{
|
2019-01-06 16:22:33 +01:00
|
|
|
"section_id": self.section_read.pk,
|
|
|
|
"comment": "test_comment_fk3jrnfwsdg%fj=feijf",
|
2018-08-31 15:33:41 +02:00
|
|
|
},
|
2019-01-06 16:22:33 +01:00
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
comment = MotionComment.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comment.comment, "test_comment_jg38dwiej2D832(D§dk)")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_delete_comment_no_write_permission(self):
|
|
|
|
comment = MotionComment(
|
|
|
|
motion=self.motion,
|
|
|
|
section=self.section_read,
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment_fej(NF§kfePOF383o8DN",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
comment.save()
|
|
|
|
|
|
|
|
response = self.client.delete(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-manage-comments", args=[self.motion.pk]),
|
|
|
|
{"section_id": self.section_read.pk},
|
|
|
|
format="json",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(MotionComment.objects.count(), 1)
|
|
|
|
comment = MotionComment.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comment.comment, "test_comment_fej(NF§kfePOF383o8DN")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TestMotionCommentSection(TestCase):
|
|
|
|
"""
|
|
|
|
Tests creating, updating and deletion of comment sections.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-08-31 15:33:41 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
self.admin = get_user_model().objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin.groups.add(
|
|
|
|
GROUP_STAFF_PK
|
|
|
|
) # Put the admin in a groiup with limited permissions for testing.
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
|
|
|
inform_changed_data(self.admin)
|
|
|
|
self.group_in = get_group_model().objects.get(pk=GROUP_STAFF_PK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.group_out = get_group_model().objects.get(
|
|
|
|
pk=GROUP_DELEGATE_PK
|
|
|
|
) # The admin should not be in this group
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_retrieve(self):
|
|
|
|
"""
|
|
|
|
Checks, if the sections can be seen by a manager.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_f3jOF3m8fp.<qiqmf32=")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motioncommentsection-list"))
|
2018-11-01 17:30:18 +01:00
|
|
|
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertTrue(isinstance(response.data, list))
|
|
|
|
self.assertEqual(len(response.data), 1)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(response.data[0]["name"], "test_name_f3jOF3m8fp.<qiqmf32=")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_retrieve_non_manager_with_read_permission(self):
|
|
|
|
"""
|
|
|
|
Checks, if the sections can be seen by a non manager, but he is in
|
|
|
|
one of the read_groups.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin.groups.remove(
|
|
|
|
self.group_in
|
|
|
|
) # group_in has motions.can_manage permission
|
2018-08-31 15:33:41 +02:00
|
|
|
self.admin.groups.add(self.group_out) # group_out does not.
|
2018-11-01 17:30:18 +01:00
|
|
|
inform_changed_data(self.admin)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_f3mMD28LMcm29Coelwcm")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
section.read_groups.add(self.group_out, self.group_in)
|
2018-11-01 17:30:18 +01:00
|
|
|
inform_changed_data(section)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motioncommentsection-list"))
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(len(response.data), 1)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(response.data[0]["name"], "test_name_f3mMD28LMcm29Coelwcm")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_retrieve_non_manager_no_read_permission(self):
|
|
|
|
"""
|
|
|
|
Checks, if sections are removed, if the user is a non manager and is in
|
|
|
|
any of the read_groups.
|
|
|
|
"""
|
|
|
|
self.admin.groups.remove(self.group_in)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.admin)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_f3jOF3m8fp.<qiqmf32=")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
section.read_groups.add(self.group_out)
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motioncommentsection-list"))
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertTrue(isinstance(response.data, list))
|
|
|
|
self.assertEqual(len(response.data), 0)
|
|
|
|
|
|
|
|
def test_create(self):
|
|
|
|
"""
|
|
|
|
Create a section just with a name.
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-list"),
|
|
|
|
{"name": "test_name_ekjfen3n)F§zn83f§Fge"},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
MotionCommentSection.objects.get().name, "test_name_ekjfen3n)F§zn83f§Fge"
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_create_no_permission(self):
|
|
|
|
"""
|
|
|
|
Try to create a section without can_manage permissions.
|
|
|
|
"""
|
|
|
|
self.admin.groups.remove(self.group_in)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.admin)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-list"),
|
|
|
|
{"name": "test_name_wfl3jlkcmlq23ucn7eiq"},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 0)
|
|
|
|
|
|
|
|
def test_create_no_name(self):
|
|
|
|
"""
|
|
|
|
Create a section without a name. This should fail, because a name is required.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.post(reverse("motioncommentsection-list"), {})
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 0)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(response.data["name"][0], "This field is required.")
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_create_with_groups(self):
|
|
|
|
"""
|
|
|
|
Create a section with name and both groups.
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-list"),
|
2018-08-31 15:33:41 +02:00
|
|
|
{
|
2019-01-06 16:22:33 +01:00
|
|
|
"name": "test_name_fg4kmFn73FhFk327f/3h",
|
|
|
|
"read_groups_id": [2, 3],
|
|
|
|
"write_groups_id": [3, 4],
|
|
|
|
},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
comment = MotionCommentSection.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comment.name, "test_name_fg4kmFn73FhFk327f/3h")
|
|
|
|
self.assertEqual(list(comment.read_groups.values_list("pk", flat=True)), [2, 3])
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
list(comment.write_groups.values_list("pk", flat=True)), [3, 4]
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_create_with_one_group(self):
|
|
|
|
"""
|
|
|
|
Create a section with a name and write_groups.
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-list"),
|
|
|
|
{"name": "test_name_ekjfen3n)F§zn83f§Fge", "write_groups_id": [1, 3]},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
comment = MotionCommentSection.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comment.name, "test_name_ekjfen3n)F§zn83f§Fge")
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(comment.read_groups.count(), 0)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
list(comment.write_groups.values_list("pk", flat=True)), [1, 3]
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_create_with_non_existing_group(self):
|
|
|
|
"""
|
|
|
|
Create a section with some non existing groups. This should fail.
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-list"),
|
|
|
|
{"name": "test_name_4gnUVnF§29FnH3287fhG", "write_groups_id": [42, 1, 8]},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 0)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
response.data["write_groups_id"][0],
|
|
|
|
'Invalid pk "42" - object does not exist.',
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_update(self):
|
|
|
|
"""
|
|
|
|
Update a section name.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_dlfgNDf37ND(g3fNf43g")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-detail", args=[section.pk]),
|
|
|
|
{"name": "test_name_ekjfen3n)F§zn83f§Fge"},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
MotionCommentSection.objects.get().name, "test_name_ekjfen3n)F§zn83f§Fge"
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_update_groups(self):
|
|
|
|
"""
|
|
|
|
Update one of the groups.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_f3jFq3hShf/(fh2qlPOp")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
section.read_groups.add(2)
|
|
|
|
section.write_groups.add(3)
|
|
|
|
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-detail", args=[section.pk]),
|
|
|
|
{"name": "test_name_gkk3FhfhpmQMhC,Y378c", "read_groups_id": [2, 4]},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
comment = MotionCommentSection.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(comment.name, "test_name_gkk3FhfhpmQMhC,Y378c")
|
|
|
|
self.assertEqual(list(comment.read_groups.values_list("pk", flat=True)), [2, 4])
|
|
|
|
self.assertEqual(list(comment.write_groups.values_list("pk", flat=True)), [3])
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_update_no_permission(self):
|
|
|
|
"""
|
|
|
|
Try to update a section without can_manage permissions.
|
|
|
|
"""
|
|
|
|
self.admin.groups.remove(self.group_in)
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_wl2oxmmhe/2kd92lwPSi")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motioncommentsection-list"),
|
|
|
|
{"name": "test_name_2slmDMwmqqcmC92mcklw"},
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
self.assertEqual(
|
2019-01-06 16:22:33 +01:00
|
|
|
MotionCommentSection.objects.get().name, "test_name_wl2oxmmhe/2kd92lwPSi"
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
|
|
|
def test_delete(self):
|
|
|
|
"""
|
|
|
|
Delete a section.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_ecMCq;ymwuZZ723kD)2k")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(
|
|
|
|
reverse("motioncommentsection-detail", args=[section.pk])
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 0)
|
|
|
|
|
|
|
|
def test_delete_non_existing_section(self):
|
|
|
|
"""
|
|
|
|
Delete a non existing section.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(reverse("motioncommentsection-detail", args=[2]))
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_404_NOT_FOUND)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 0)
|
|
|
|
|
|
|
|
def test_delete_with_existing_comments(self):
|
|
|
|
"""
|
|
|
|
Delete a section with existing comments. This should fail, because sections
|
|
|
|
are protected.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_ecMCq;ymwuZZ723kD)2k")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
|
|
|
|
motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_SlqfMw(waso0saWMPqcZ",
|
|
|
|
text="test_text_f30skclqS9wWF=xdfaSL",
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
motion.save()
|
|
|
|
|
|
|
|
comment = MotionComment(
|
2019-01-06 16:22:33 +01:00
|
|
|
comment="test_comment_dlkMD23m)(D9020m0/Zd", motion=motion, section=section
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
comment.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(
|
|
|
|
reverse("motioncommentsection-detail", args=[section.pk])
|
|
|
|
)
|
|
|
|
self.assertTrue("test_title_SlqfMw(waso0saWMPqcZ" in response.data["detail"])
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
|
|
|
|
def test_delete_no_permission(self):
|
|
|
|
"""
|
|
|
|
Try to delete a section without can_manage permissions
|
|
|
|
"""
|
|
|
|
self.admin.groups.remove(self.group_in)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.admin)
|
2018-08-31 15:33:41 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
section = MotionCommentSection(name="test_name_wl2oxmmhe/2kd92lwPSi")
|
2018-08-31 15:33:41 +02:00
|
|
|
section.save()
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(
|
|
|
|
reverse("motioncommentsection-detail", args=[section.pk])
|
|
|
|
)
|
2018-08-31 15:33:41 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
|
|
self.assertEqual(MotionCommentSection.objects.count(), 1)
|
|
|
|
|
|
|
|
|
2018-10-25 15:11:38 +02:00
|
|
|
class RetrieveMotionChangeRecommendation(TestCase):
|
|
|
|
"""
|
|
|
|
Tests retrieving motion change recommendations.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-10-25 15:11:38 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-10-25 15:11:38 +02:00
|
|
|
|
|
|
|
motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_3kd)K23,c9239mdj2wcG",
|
|
|
|
text="test_text_f8FLP,gvprC;wovVEwlQ",
|
|
|
|
)
|
2018-10-25 15:11:38 +02:00
|
|
|
motion.save()
|
|
|
|
|
|
|
|
self.public_cr = MotionChangeRecommendation(
|
2019-01-06 16:22:33 +01:00
|
|
|
motion=motion, internal=False, line_from=1, line_to=1
|
|
|
|
)
|
2018-10-25 15:11:38 +02:00
|
|
|
self.public_cr.save()
|
|
|
|
|
|
|
|
self.internal_cr = MotionChangeRecommendation(
|
2019-01-06 16:22:33 +01:00
|
|
|
motion=motion, internal=True, line_from=2, line_to=2
|
|
|
|
)
|
2018-10-25 15:11:38 +02:00
|
|
|
self.internal_cr.save()
|
|
|
|
|
|
|
|
def test_simple(self):
|
|
|
|
"""
|
|
|
|
Test retrieving all change recommendations.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motionchangerecommendation-list"))
|
2018-10-25 15:11:38 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(len(response.data), 2)
|
|
|
|
|
|
|
|
def test_non_admin(self):
|
|
|
|
"""
|
|
|
|
Test retrieving of all change recommendations that are public, if the user
|
|
|
|
has no manage perms.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2018-10-25 15:11:38 +02:00
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
|
|
|
self.admin.groups.remove(GROUP_ADMIN_PK)
|
|
|
|
inform_changed_data(self.admin)
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motionchangerecommendation-list"))
|
2018-10-25 15:11:38 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(len(response.data), 1)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(response.data[0]["id"], self.public_cr.id)
|
2018-10-25 15:11:38 +02:00
|
|
|
|
|
|
|
|
2017-06-18 20:20:44 +02:00
|
|
|
class CreateMotionChangeRecommendation(TestCase):
|
|
|
|
"""
|
|
|
|
Tests motion change recommendation creation.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2017-06-18 20:20:44 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2017-06-18 20:20:44 +02:00
|
|
|
|
|
|
|
self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_OoCoo3MeiT9li5Iengu9",
|
|
|
|
"text": "test_text_thuoz0iecheiheereiCi",
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
|
|
|
|
def test_simple(self):
|
|
|
|
"""
|
|
|
|
Creating a change plain, simple change recommendation
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionchangerecommendation-list"),
|
|
|
|
{
|
|
|
|
"line_from": "5",
|
|
|
|
"line_to": "7",
|
|
|
|
"motion_id": "1",
|
|
|
|
"text": "<p>New test</p>",
|
|
|
|
"type": "0",
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
|
|
|
|
def test_collission(self):
|
|
|
|
"""
|
|
|
|
Two change recommendations with overlapping lines should lead to a Bad Request
|
|
|
|
"""
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionchangerecommendation-list"),
|
|
|
|
{
|
|
|
|
"line_from": "5",
|
|
|
|
"line_to": "7",
|
|
|
|
"motion_id": "1",
|
|
|
|
"text": "<p>New test</p>",
|
|
|
|
"type": "0",
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionchangerecommendation-list"),
|
|
|
|
{
|
|
|
|
"line_from": "3",
|
|
|
|
"line_to": "6",
|
|
|
|
"motion_id": "1",
|
|
|
|
"text": "<p>New test</p>",
|
|
|
|
"type": "0",
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{
|
|
|
|
"detail": "The recommendation collides with an existing one (line 3 - 6)."
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
|
|
|
|
def test_no_collission_different_motions(self):
|
|
|
|
"""
|
|
|
|
Two change recommendations with overlapping lines, but affecting different motions, should not interfere
|
|
|
|
"""
|
|
|
|
self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-list"),
|
|
|
|
{
|
|
|
|
"title": "test_title_OoCoo3MeiT9li5Iengu9",
|
|
|
|
"text": "test_text_thuoz0iecheiheereiCi",
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionchangerecommendation-list"),
|
|
|
|
{
|
|
|
|
"line_from": "5",
|
|
|
|
"line_to": "7",
|
|
|
|
"motion_id": "1",
|
|
|
|
"text": "<p>New test</p>",
|
|
|
|
"type": "0",
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionchangerecommendation-list"),
|
|
|
|
{
|
|
|
|
"line_from": "3",
|
|
|
|
"line_to": "6",
|
|
|
|
"motion_id": "2",
|
|
|
|
"text": "<p>New test</p>",
|
|
|
|
"type": "0",
|
|
|
|
},
|
|
|
|
)
|
2017-06-18 20:20:44 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
|
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
class SupportMotion(TestCase):
|
|
|
|
"""
|
|
|
|
Tests supporting a motion.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
def setUp(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
self.admin = get_user_model().objects.get(username="admin")
|
2018-10-09 13:44:38 +02:00
|
|
|
self.admin.groups.add(GROUP_DELEGATE_PK)
|
2018-09-01 08:00:00 +02:00
|
|
|
inform_changed_data(self.admin)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_chee7ahCha6bingaew4e",
|
|
|
|
text="test_text_birah1theL9ooseeFaip",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion.save()
|
|
|
|
|
|
|
|
def test_support(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
config["motions_min_supporters"] = 1
|
2018-07-09 23:22:26 +02:00
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.post(reverse("motion-support", args=[self.motion.pk]))
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data, {"detail": "You have supported this motion successfully."}
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_unsupport(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
config["motions_min_supporters"] = 1
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion.supporters.add(self.admin)
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.delete(reverse("motion-support", args=[self.motion.pk]))
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data, {"detail": "You have unsupported this motion successfully."}
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
class SetState(TestCase):
|
|
|
|
"""
|
|
|
|
Tests setting a state.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2015-04-30 19:13:28 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_iac4ohquie9Ku6othieC",
|
|
|
|
text="test_text_Xohphei6Oobee0Evooyu",
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.motion.save()
|
|
|
|
self.state_id_accepted = 2 # This should be the id of the state 'accepted'.
|
|
|
|
|
|
|
|
def test_set_state(self):
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-state", args=[self.motion.pk]),
|
|
|
|
{"state": self.state_id_accepted},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data, {"detail": "The state of the motion was set to accepted."}
|
|
|
|
)
|
|
|
|
self.assertEqual(Motion.objects.get(pk=self.motion.pk).state.name, "accepted")
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_set_state_with_string(self):
|
|
|
|
# Using a string is not allowed even if it is the correct name of the state.
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-state", args=[self.motion.pk]), {"state": "accepted"}
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data, {"detail": "Invalid data. State must be an integer."}
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_set_unknown_state(self):
|
|
|
|
invalid_state_id = 0
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-state", args=[self.motion.pk]),
|
|
|
|
{"state": invalid_state_id},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "You can not set the state to %d." % invalid_state_id},
|
|
|
|
)
|
2015-04-30 19:13:28 +02:00
|
|
|
|
|
|
|
def test_reset(self):
|
|
|
|
self.motion.set_state(self.state_id_accepted)
|
|
|
|
self.motion.save()
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.put(reverse("motion-set-state", args=[self.motion.pk]))
|
2015-04-30 19:13:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data, {"detail": "The state of the motion was set to submitted."}
|
|
|
|
)
|
|
|
|
self.assertEqual(Motion.objects.get(pk=self.motion.pk).state.name, "submitted")
|
2016-02-09 21:04:29 +01:00
|
|
|
|
|
|
|
|
2016-09-03 21:43:11 +02:00
|
|
|
class SetRecommendation(TestCase):
|
|
|
|
"""
|
|
|
|
Tests setting a recommendation.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2016-09-03 21:43:11 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2016-09-03 21:43:11 +02:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_ahfooT5leilahcohJ2uz",
|
|
|
|
text="test_text_enoogh7OhPoo6eohoCus",
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.motion.save()
|
|
|
|
self.state_id_accepted = 2 # This should be the id of the state 'accepted'.
|
|
|
|
|
|
|
|
def test_set_recommendation(self):
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-recommendation", args=[self.motion.pk]),
|
|
|
|
{"recommendation": self.state_id_accepted},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "The recommendation of the motion was set to Acceptance."},
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion.pk).recommendation.name, "accepted"
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
|
|
|
|
def test_set_state_with_string(self):
|
|
|
|
# Using a string is not allowed even if it is the correct name of the state.
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-recommendation", args=[self.motion.pk]),
|
|
|
|
{"recommendation": "accepted"},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "Invalid data. Recommendation must be an integer."},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
|
|
|
|
def test_set_unknown_recommendation(self):
|
|
|
|
invalid_state_id = 0
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-recommendation", args=[self.motion.pk]),
|
|
|
|
{"recommendation": invalid_state_id},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "You can not set the recommendation to %d." % invalid_state_id},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
|
|
|
|
def test_set_invalid_recommendation(self):
|
|
|
|
# This is a valid state id, but this state is not recommendable because it belongs to a different workflow.
|
|
|
|
invalid_state_id = 6 # State 'permitted'
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-recommendation", args=[self.motion.pk]),
|
|
|
|
{"recommendation": invalid_state_id},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "You can not set the recommendation to %d." % invalid_state_id},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
|
|
|
|
def test_set_invalid_recommendation_2(self):
|
|
|
|
# This is a valid state id, but this state is not recommendable because it has not recommendation label
|
|
|
|
invalid_state_id = 1 # State 'submitted'
|
|
|
|
self.motion.set_state(self.state_id_accepted)
|
|
|
|
self.motion.save()
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-recommendation", args=[self.motion.pk]),
|
|
|
|
{"recommendation": invalid_state_id},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "You can not set the recommendation to %d." % invalid_state_id},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
|
|
|
|
def test_reset(self):
|
|
|
|
self.motion.set_recommendation(self.state_id_accepted)
|
|
|
|
self.motion.save()
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.put(
|
|
|
|
reverse("motion-set-recommendation", args=[self.motion.pk])
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "The recommendation of the motion was set to None."},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertTrue(Motion.objects.get(pk=self.motion.pk).recommendation is None)
|
|
|
|
|
|
|
|
def test_set_recommendation_to_current_state(self):
|
|
|
|
self.motion.set_state(self.state_id_accepted)
|
|
|
|
self.motion.save()
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-set-recommendation", args=[self.motion.pk]),
|
|
|
|
{"recommendation": self.state_id_accepted},
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{"detail": "The recommendation of the motion was set to Acceptance."},
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion.pk).recommendation.name, "accepted"
|
|
|
|
)
|
2016-09-03 21:43:11 +02:00
|
|
|
|
|
|
|
|
2016-02-27 20:49:28 +01:00
|
|
|
class CreateMotionPoll(TestCase):
|
|
|
|
"""
|
|
|
|
Tests creating polls of motions.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2016-02-27 20:49:28 +01:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2016-02-27 20:49:28 +01:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_Aiqueigh2dae9phabiqu",
|
|
|
|
text="test_text_Neekoh3zou6li5rue8iL",
|
|
|
|
)
|
2016-02-27 20:49:28 +01:00
|
|
|
self.motion.save()
|
|
|
|
|
|
|
|
def test_create_first_poll_with_values_then_second_poll_without(self):
|
|
|
|
self.poll = self.motion.create_poll()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.poll.set_vote_objects_with_values(
|
|
|
|
self.poll.get_options().get(), {"Yes": 42, "No": 43, "Abstain": 44}
|
|
|
|
)
|
2016-02-27 20:49:28 +01:00
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motion-create-poll", args=[self.motion.pk])
|
|
|
|
)
|
2016-02-27 20:49:28 +01:00
|
|
|
self.assertEqual(self.motion.polls.count(), 2)
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.get(reverse("motion-detail", args=[self.motion.pk]))
|
|
|
|
for key in ("yes", "no", "abstain"):
|
|
|
|
self.assertTrue(
|
|
|
|
response.data["polls"][1][key] is None,
|
|
|
|
'Vote value "{}" should be None.'.format(key),
|
|
|
|
)
|
2016-02-27 20:49:28 +01:00
|
|
|
|
|
|
|
|
2016-02-09 21:04:29 +01:00
|
|
|
class UpdateMotionPoll(TestCase):
|
|
|
|
"""
|
|
|
|
Tests updating polls of motions.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2016-02-09 21:04:29 +01:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2016-02-09 21:04:29 +01:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_Aiqueigh2dae9phabiqu",
|
|
|
|
text="test_text_Neekoh3zou6li5rue8iL",
|
|
|
|
)
|
2016-02-09 21:04:29 +01:00
|
|
|
self.motion.save()
|
|
|
|
self.poll = self.motion.create_poll()
|
|
|
|
|
|
|
|
def test_invalid_votesvalid_value(self):
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionpoll-detail", args=[self.poll.pk]),
|
|
|
|
{"motion_id": self.motion.pk, "votesvalid": "-3"},
|
|
|
|
)
|
2016-02-09 21:04:29 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
|
|
def test_invalid_votesinvalid_value(self):
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionpoll-detail", args=[self.poll.pk]),
|
|
|
|
{"motion_id": self.motion.pk, "votesinvalid": "-3"},
|
|
|
|
)
|
2016-02-09 21:04:29 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
|
|
|
|
def test_invalid_votescast_value(self):
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionpoll-detail", args=[self.poll.pk]),
|
|
|
|
{"motion_id": self.motion.pk, "votescast": "-3"},
|
|
|
|
)
|
2016-02-09 21:04:29 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
2016-02-11 18:02:57 +01:00
|
|
|
|
|
|
|
def test_empty_value_for_votesvalid(self):
|
|
|
|
response = self.client.put(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("motionpoll-detail", args=[self.poll.pk]),
|
|
|
|
{"motion_id": self.motion.pk, "votesvalid": ""},
|
|
|
|
)
|
2016-02-11 18:02:57 +01:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2016-07-13 01:39:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
class NumberMotionsInCategory(TestCase):
|
|
|
|
"""
|
|
|
|
Tests numbering motions in a category.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2016-07-13 01:39:28 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2016-07-13 01:39:28 +02:00
|
|
|
self.category = Category.objects.create(
|
2019-01-06 16:22:33 +01:00
|
|
|
name="test_cateogory_name_zah6Ahd4Ifofaeree6ai",
|
|
|
|
prefix="test_prefix_ahz6tho2mooH8",
|
|
|
|
)
|
2016-07-13 01:39:28 +02:00
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_Eeha8Haf6peulu8ooc0z",
|
|
|
|
text="test_text_faghaZoov9ooV4Acaquk",
|
|
|
|
category=self.category,
|
|
|
|
)
|
2016-07-13 01:39:28 +02:00
|
|
|
self.motion.save()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.motion.identifier = ""
|
2016-07-13 01:39:28 +02:00
|
|
|
self.motion.save()
|
|
|
|
self.motion_2 = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_kuheih2eja2Saeshusha",
|
|
|
|
text="test_text_Ha5ShaeraeSuthooP2Bu",
|
|
|
|
category=self.category,
|
|
|
|
)
|
2016-07-13 01:39:28 +02:00
|
|
|
self.motion_2.save()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.motion_2.identifier = ""
|
2016-07-13 01:39:28 +02:00
|
|
|
self.motion_2.save()
|
|
|
|
|
|
|
|
def test_numbering(self):
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("category-numbering", args=[self.category.pk])
|
|
|
|
)
|
2016-07-13 01:39:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{
|
|
|
|
"detail": "All motions in category test_cateogory_name_zah6Ahd4Ifofaeree6ai numbered successfully."
|
|
|
|
},
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion.pk).identifier,
|
|
|
|
"test_prefix_ahz6tho2mooH8 1",
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion_2.pk).identifier,
|
|
|
|
"test_prefix_ahz6tho2mooH8 2",
|
|
|
|
)
|
2016-07-13 01:39:28 +02:00
|
|
|
|
|
|
|
def test_numbering_existing_identifier(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
self.motion_2.identifier = "test_prefix_ahz6tho2mooH8 1"
|
2016-07-13 01:39:28 +02:00
|
|
|
self.motion_2.save()
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("category-numbering", args=[self.category.pk])
|
|
|
|
)
|
2016-07-13 01:39:28 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{
|
|
|
|
"detail": "All motions in category test_cateogory_name_zah6Ahd4Ifofaeree6ai numbered successfully."
|
|
|
|
},
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion.pk).identifier,
|
|
|
|
"test_prefix_ahz6tho2mooH8 1",
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion_2.pk).identifier,
|
|
|
|
"test_prefix_ahz6tho2mooH8 2",
|
|
|
|
)
|
2016-08-15 23:53:21 +02:00
|
|
|
|
|
|
|
def test_numbering_with_given_order(self):
|
|
|
|
self.motion_3 = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_eeb0kua5ciike4su2auJ",
|
|
|
|
text="test_text_ahshuGhaew3eim8yoht7",
|
|
|
|
category=self.category,
|
|
|
|
)
|
2016-08-15 23:53:21 +02:00
|
|
|
self.motion_3.save()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.motion_3.identifier = ""
|
2016-08-15 23:53:21 +02:00
|
|
|
self.motion_3.save()
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("category-numbering", args=[self.category.pk]),
|
|
|
|
{"motions": [3, 2]},
|
|
|
|
format="json",
|
|
|
|
)
|
2016-08-15 23:53:21 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
response.data,
|
|
|
|
{
|
|
|
|
"detail": "All motions in category test_cateogory_name_zah6Ahd4Ifofaeree6ai numbered successfully."
|
|
|
|
},
|
|
|
|
)
|
2016-08-15 23:53:21 +02:00
|
|
|
self.assertEqual(Motion.objects.get(pk=self.motion.pk).identifier, None)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion_2.pk).identifier,
|
|
|
|
"test_prefix_ahz6tho2mooH8 2",
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion_3.pk).identifier,
|
|
|
|
"test_prefix_ahz6tho2mooH8 1",
|
|
|
|
)
|
2016-10-14 21:48:02 +02:00
|
|
|
|
|
|
|
|
|
|
|
class FollowRecommendationsForMotionBlock(TestCase):
|
|
|
|
"""
|
|
|
|
Tests following the recommendations of motions in an motion block.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2016-10-14 21:48:02 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.state_id_accepted = 2 # This should be the id of the state 'accepted'.
|
|
|
|
self.state_id_rejected = 3 # This should be the id of the state 'rejected'.
|
|
|
|
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2016-10-14 21:48:02 +02:00
|
|
|
|
|
|
|
self.motion_block = MotionBlock.objects.create(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_motion_block_name_Ufoopiub7quaezaepeic"
|
|
|
|
)
|
2016-10-14 21:48:02 +02:00
|
|
|
|
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_yo8ohy5eifeiyied2AeD",
|
|
|
|
text="test_text_chi1aeth5faPhueQu8oh",
|
|
|
|
motion_block=self.motion_block,
|
|
|
|
)
|
2016-10-14 21:48:02 +02:00
|
|
|
self.motion.save()
|
|
|
|
self.motion.set_recommendation(self.state_id_accepted)
|
|
|
|
self.motion.save()
|
|
|
|
|
|
|
|
self.motion_2 = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_eith0EemaW8ahZa9Piej",
|
|
|
|
text="test_text_haeho1ohk3ou7pau2Jee",
|
|
|
|
motion_block=self.motion_block,
|
|
|
|
)
|
2016-10-14 21:48:02 +02:00
|
|
|
self.motion_2.save()
|
|
|
|
self.motion_2.set_recommendation(self.state_id_rejected)
|
|
|
|
self.motion_2.save()
|
|
|
|
|
|
|
|
def test_follow_recommendations_for_motion_block(self):
|
2019-01-06 16:22:33 +01:00
|
|
|
response = self.client.post(
|
|
|
|
reverse("motionblock-follow-recommendations", args=[self.motion_block.pk])
|
|
|
|
)
|
2016-10-14 21:48:02 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion.pk).state.id, self.state_id_accepted
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
Motion.objects.get(pk=self.motion_2.pk).state.id, self.state_id_rejected
|
|
|
|
)
|
2018-06-26 15:59:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
class CreateWorkflow(TestCase):
|
|
|
|
"""
|
|
|
|
Tests the creating of workflows.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-06-26 15:59:05 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-06-26 15:59:05 +02:00
|
|
|
|
|
|
|
def test_creation(self):
|
|
|
|
Workflow.objects.all().delete()
|
|
|
|
response = self.client.post(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("workflow-list"), {"name": "test_name_OoCoo3MeiT9li5Iengu9"}
|
|
|
|
)
|
2018-06-26 15:59:05 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
workflow = Workflow.objects.get()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.assertEqual(workflow.name, "test_name_OoCoo3MeiT9li5Iengu9")
|
2018-06-26 15:59:05 +02:00
|
|
|
first_state = workflow.first_state
|
|
|
|
self.assertEqual(type(first_state), State)
|
|
|
|
|
|
|
|
|
|
|
|
class UpdateWorkflow(TestCase):
|
|
|
|
"""
|
|
|
|
Tests the updating of workflows.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-06-26 15:59:05 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-06-26 15:59:05 +02:00
|
|
|
self.workflow = Workflow.objects.first()
|
|
|
|
|
|
|
|
def test_rename_workflow(self):
|
|
|
|
response = self.client.patch(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("workflow-detail", args=[self.workflow.pk]),
|
|
|
|
{"name": 'test_name_wofi38DiWLT"8d3lwfo3'},
|
|
|
|
)
|
2018-06-26 15:59:05 +02:00
|
|
|
|
|
|
|
workflow = Workflow.objects.get(pk=self.workflow.id)
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
|
|
|
self.assertEqual(workflow.name, 'test_name_wofi38DiWLT"8d3lwfo3')
|
|
|
|
|
|
|
|
|
|
|
|
class DeleteWorkflow(TestCase):
|
|
|
|
"""
|
|
|
|
Tests the deletion of workflows.
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
|
2018-06-26 15:59:05 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
2019-01-06 16:22:33 +01:00
|
|
|
self.client.login(username="admin", password="admin")
|
2018-06-26 15:59:05 +02:00
|
|
|
self.workflow = Workflow.objects.first()
|
|
|
|
|
|
|
|
def test_simple_delete(self):
|
|
|
|
response = self.client.delete(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("workflow-detail", args=[self.workflow.pk])
|
|
|
|
)
|
2018-06-26 15:59:05 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
|
|
|
|
self.assertEqual(Workflow.objects.count(), 1) # Just the other default one
|
|
|
|
|
|
|
|
def test_delete_with_assigned_motions(self):
|
|
|
|
self.motion = Motion(
|
2019-01-06 16:22:33 +01:00
|
|
|
title="test_title_chee7ahCha6bingaew4e",
|
|
|
|
text="test_text_birah1theL9ooseeFaip",
|
|
|
|
)
|
2018-06-26 15:59:05 +02:00
|
|
|
self.motion.reset_state(self.workflow)
|
|
|
|
self.motion.save()
|
|
|
|
|
|
|
|
response = self.client.delete(
|
2019-01-06 16:22:33 +01:00
|
|
|
reverse("workflow-detail", args=[self.workflow.pk])
|
|
|
|
)
|
2018-06-26 15:59:05 +02:00
|
|
|
self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
|
|
|
|
self.assertEqual(Workflow.objects.count(), 2)
|