2016-09-18 16:00:31 +02:00
|
|
|
from django.core.files.uploadedfile import SimpleUploadedFile
|
|
|
|
from django.core.urlresolvers import reverse
|
2017-09-04 00:25:45 +02:00
|
|
|
from django_redis import get_redis_connection
|
2016-09-18 16:00:31 +02:00
|
|
|
from rest_framework.test import APIClient
|
|
|
|
|
|
|
|
from openslides.core.config import config
|
|
|
|
from openslides.mediafiles.models import Mediafile
|
|
|
|
from openslides.users.models import User
|
2017-09-04 00:25:45 +02:00
|
|
|
from openslides.utils.test import TestCase
|
2016-09-18 16:00:31 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TestDBQueries(TestCase):
|
|
|
|
"""
|
|
|
|
Tests that receiving elements only need the required db queries.
|
|
|
|
|
|
|
|
Therefore in setup some objects are created and received with different
|
|
|
|
user accounts.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.client = APIClient()
|
|
|
|
config['general_system_enable_anonymous'] = True
|
2017-08-22 14:17:20 +02:00
|
|
|
config.save_default_values()
|
2016-09-18 16:00:31 +02:00
|
|
|
for index in range(10):
|
|
|
|
Mediafile.objects.create(
|
|
|
|
title='some_file{}'.format(index),
|
|
|
|
mediafile=SimpleUploadedFile(
|
|
|
|
'some_file{}'.format(index),
|
|
|
|
b'some content.'))
|
|
|
|
|
|
|
|
def test_admin(self):
|
|
|
|
"""
|
|
|
|
Tests that only the following db queries are done:
|
2017-09-04 00:25:45 +02:00
|
|
|
* 7 requests to get the session an the request user with its permissions and
|
|
|
|
* 1 requests to get the list of all files.
|
2016-09-18 16:00:31 +02:00
|
|
|
"""
|
|
|
|
self.client.force_login(User.objects.get(pk=1))
|
2017-09-04 00:25:45 +02:00
|
|
|
get_redis_connection('default').flushall()
|
|
|
|
with self.assertNumQueries(8):
|
2016-09-18 16:00:31 +02:00
|
|
|
self.client.get(reverse('mediafile-list'))
|
|
|
|
|
|
|
|
def test_anonymous(self):
|
|
|
|
"""
|
|
|
|
Tests that only the following db queries are done:
|
2016-12-17 09:30:20 +01:00
|
|
|
* 3 requests to get the permission for anonymous and
|
2017-09-04 00:25:45 +02:00
|
|
|
* 1 requests to get the list of all projectors.
|
2016-09-18 16:00:31 +02:00
|
|
|
"""
|
2017-09-04 00:25:45 +02:00
|
|
|
get_redis_connection('default').flushall()
|
|
|
|
with self.assertNumQueries(4):
|
2016-09-18 16:00:31 +02:00
|
|
|
self.client.get(reverse('mediafile-list'))
|