mirror of
https://github.com/simon987/Simple-Incremental-Search-Tool.git
synced 2025-12-13 15:19:05 +00:00
Refactored unit tests
This commit is contained in:
17
test/test_PdfFileParser.py
Normal file
17
test/test_PdfFileParser.py
Normal file
@@ -0,0 +1,17 @@
|
||||
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"))
|
||||
Reference in New Issue
Block a user