2018-07-09 23:22:26 +02:00
|
|
|
import pytest
|
2018-07-09 23:22:26 +02:00
|
|
|
from django.urls import reverse
|
2017-04-03 11:05:54 +02:00
|
|
|
from rest_framework import status
|
|
|
|
|
|
|
|
from openslides.agenda.models import Item
|
|
|
|
from openslides.topics.models import Topic
|
2017-09-04 00:25:45 +02:00
|
|
|
from openslides.utils.test import TestCase
|
2017-04-03 11:05:54 +02:00
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
from ..helpers import count_queries
|
2017-04-03 11:05:54 +02:00
|
|
|
|
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
@pytest.mark.django_db(transaction=False)
|
|
|
|
def test_topic_item_db_queries():
|
2017-04-03 11:05:54 +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 topics,
|
|
|
|
* 1 request to get attachments,
|
|
|
|
* 1 request to get the agenda item
|
|
|
|
"""
|
|
|
|
for index in range(10):
|
|
|
|
Topic.objects.create(title='topic-{}'.format(index))
|
2017-04-03 11:05:54 +02:00
|
|
|
|
2018-07-09 23:22:26 +02:00
|
|
|
assert count_queries(Topic.get_elements) == 3
|
2017-04-03 11:05:54 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TopicCreate(TestCase):
|
|
|
|
"""
|
|
|
|
Tests creation of new topics.
|
|
|
|
"""
|
|
|
|
def setUp(self):
|
|
|
|
self.client.login(
|
|
|
|
username='admin',
|
|
|
|
password='admin',
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_simple_create(self):
|
|
|
|
response = self.client.post(
|
|
|
|
reverse('topic-list'),
|
|
|
|
{'title': 'test_title_ahyo1uifoo9Aiph2av5a',
|
|
|
|
'text': 'test_text_chu9Uevoo5choo0Xithe'})
|
|
|
|
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
|
|
|
|
topic = Topic.objects.get()
|
|
|
|
self.assertEqual(topic.title, 'test_title_ahyo1uifoo9Aiph2av5a')
|
|
|
|
self.assertEqual(topic.text, 'test_text_chu9Uevoo5choo0Xithe')
|
|
|
|
self.assertEqual(Item.objects.get(), topic.agenda_item)
|