File size: 894 Bytes
3315103 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | # -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from __future__ import unicode_literals
from unittest import TestCase
from hwp5.storage.ole import OleStorage
from .fixtures import get_fixture_path
from .fixtures import open_fixture
from .mixin_olestg import OleStorageTestMixin
class TestBase(TestCase):
hwp5file_name = 'sample-5017.hwp'
def get_fixture_file(self, filename):
return get_fixture_path(filename)
def open_fixture(self, filename, *args, **kwargs):
return open_fixture(filename, *args, **kwargs)
@property
def hwp5file_path(self):
return self.get_fixture_file(self.hwp5file_name)
@property
def olestg(self):
return OleStorage(self.hwp5file_path)
class TestOleStorage(TestCase, OleStorageTestMixin):
def setUp(self):
self.OleStorage = OleStorage
|