1
0
Fork 0

Add a working test

This commit is contained in:
jvoisin 2018-03-13 01:01:07 +01:00
parent 13d2507d60
commit 67ce0f739f
1 changed files with 27 additions and 0 deletions

27
tests/test_libmat2.py Normal file
View File

@ -0,0 +1,27 @@
#!/usr/bin/python3
import unittest
import shutil
import os
from src import parsers
from src.parsers import pdf
class TestGetMeta(unittest.TestCase):
def test_pdf(self):
p = pdf.PDFParser('./tests/data/dirty.pdf')
meta = p.get_meta().items()
class TestCleaning(unittest.TestCase):
def setUp(self):
shutil.copy('./tests/data/dirty.pdf', './tests/data/clean.pdf')
def tearDown(self):
#os.remove('./tests/data/clean.pdf')
pass
def test_pdf(self):
p = pdf.PDFParser('./tests/data/clean.pdf')
p.remove_all()
#self.assertEqual(p.get_meta(), {})