/
githubmirror
/
langroid
Обзор
Документация
Войти
/
githubmirror
/
langroid
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/extras/test_docx_parser_extra.py
58 строк
2 KB
abab-dev
Add markitdown parser for pptx and xlsx (#747)
11 фев 2025, 18:43
Не верифицирован
11 фев 2025, 18:43
e6f0546
Код
Авторство
О чём код?
import os import pytest from langroid.parsing.document_parser import DocumentParser from langroid.parsing.parser import DocParsingConfig, DocxParsingConfig, ParsingConfig @pytest.mark.parametrize("docxlib", ["unstructured"]) def test_get_docx_file(docxlib: str): current_dir = os.path.dirname(os.path.abspath(__file__)) tests_root = os.path.abspath(os.path.join(current_dir, "..")) path = os.path.join(tests_root, "main", "data", "docx-test-file.docx") docx_parser = DocumentParser.create( path, ParsingConfig(docx=DocxParsingConfig(library=docxlib)) ) doc = docx_parser.get_doc() # Check the results assert isinstance(doc.content, str) assert len(doc.content) > 0 # assuming the docx is not empty assert doc.metadata.source == path # parser = Parser(ParsingConfig()) # pdfParser = PdfParser.from_Parser(parser) # docs = pdfParser.doc_chunks_from_pdf_url(url, parser) docs = docx_parser.get_doc_chunks() assert len(docs) > 0 assert all(d.metadata.is_chunk for d in docs) assert all(path in d.metadata.source for d in docs) @pytest.mark.skip( reason="This requires libreoffice to be installed so we " "don't want to run it in Github Actions" ) @pytest.mark.parametrize("doclib", ["unstructured"]) def test_get_doc_file(doclib: str): current_dir = os.path.dirname(os.path.abspath(__file__)) tests_root = os.path.abspath(os.path.join(current_dir, "..")) path = os.path.join(tests_root, "main", "data", "doc-test-file.doc") doc_parser = DocumentParser.create( path, ParsingConfig(doc=DocParsingConfig(library=doclib)) ) doc = doc_parser.get_doc() # Check the results assert isinstance(doc.content, str) assert len(doc.content) > 0 # assuming the docx is not empty assert doc.metadata.source == path # parser = Parser(ParsingConfig()) # pdfParser = PdfParser.from_Parser(parser) # docs = pdfParser.doc_chunks_from_pdf_url(url, parser) docs = doc_parser.get_doc_chunks() assert len(docs) > 0 assert all(d.metadata.is_chunk for d in docs) assert all(path in d.metadata.source for d in docs)