mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-04-10 05:56:44 +00:00
18 lines
456 B
Python
18 lines
456 B
Python
from unittest import TestCase
|
|
from parsing import PdfFileParser
|
|
import os
|
|
|
|
dir_name = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
class PdfParserTest(TestCase):
|
|
|
|
def test_parse_content(self):
|
|
|
|
parser = PdfFileParser([], 12488, "test_files/")
|
|
|
|
info = parser.parse(dir_name + "/test_files/pdf1.pdf")
|
|
|
|
self.assertEqual(len(info["content"]), 12488)
|
|
self.assertTrue(info["content"].startswith("Rabies\n03/11/2011\nRabies"))
|