-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtest_packages.py
24 lines (19 loc) · 975 Bytes
/
test_packages.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# -*- coding: utf-8 -*-
from pprint import pprint # noqa
from .support import TestCase
class PackagesTest(TestCase):
def test_zip(self):
fixture_path, entity = self.fixture("test-documents.zip")
self.manager.ingest(fixture_path, entity)
self.assertEqual(entity.first("processingStatus"), self.manager.STATUS_SUCCESS)
self.assertEqual(entity.schema.name, "Package")
def test_rar(self):
fixture_path, entity = self.fixture("test-documents.rar")
self.manager.ingest(fixture_path, entity)
self.assertEqual(entity.first("processingStatus"), self.manager.STATUS_SUCCESS)
self.assertEqual(entity.schema.name, "Package")
def test_tar(self):
fixture_path, entity = self.fixture("test-documents.tar")
self.manager.ingest(fixture_path, entity)
self.assertEqual(entity.first("processingStatus"), self.manager.STATUS_SUCCESS)
self.assertEqual(entity.schema.name, "Package")