55 lines
1.5 KiB
Python
55 lines
1.5 KiB
Python
from __future__ import unicode_literals
|
|
|
|
from json import loads
|
|
|
|
from django.contrib.auth.models import User
|
|
from django.core.files import File
|
|
from django.core.urlresolvers import reverse
|
|
|
|
from rest_framework.test import APITestCase
|
|
|
|
from documents.models import DocumentType
|
|
from documents.tests import (
|
|
TEST_ADMIN_EMAIL, TEST_ADMIN_PASSWORD, TEST_ADMIN_USERNAME,
|
|
TEST_DOCUMENT_TYPE, TEST_SMALL_DOCUMENT_PATH,
|
|
)
|
|
|
|
|
|
class SearchAPITestCase(APITestCase):
|
|
"""
|
|
Test the search API endpoints
|
|
"""
|
|
|
|
def setUp(self):
|
|
self.admin_user = User.objects.create_superuser(
|
|
username=TEST_ADMIN_USERNAME, email=TEST_ADMIN_EMAIL,
|
|
password=TEST_ADMIN_PASSWORD
|
|
)
|
|
|
|
self.client.force_authenticate(user=self.admin_user)
|
|
|
|
def tearDown(self):
|
|
self.admin_user.delete()
|
|
|
|
def test_search(self):
|
|
document_type = DocumentType.objects.create(
|
|
label=TEST_DOCUMENT_TYPE
|
|
)
|
|
|
|
ocr_settings = document_type.ocr_settings
|
|
ocr_settings.auto_ocr = False
|
|
ocr_settings.save()
|
|
|
|
with open(TEST_SMALL_DOCUMENT_PATH) as file_object:
|
|
document = document_type.new_document(
|
|
file_object=File(file_object),
|
|
)
|
|
|
|
response = self.client.get(
|
|
'{}?q={}'.format(reverse('rest_api:search-view'), document.label)
|
|
)
|
|
|
|
content = loads(response.content)
|
|
self.assertEqual(content['results'][0]['label'], document.label)
|
|
self.assertEqual(content['count'], 1)
|