mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-26 07:39:58 +00:00
## Problem Some extensions do not contain tests, which can be easily run on top of docker-compose or staging. ## Summary of changes Added the pg_regress based tests for `pg_tiktoken`, `pgx_ulid`, `pg_rag` Now they will be run on top of docker-compose, but I intend to adopt them to be run on top staging in the next PRs
25 lines
927 B
SQL
25 lines
927 B
SQL
-- HTML to Markdown conversion tests
|
|
SELECT rag.markdown_from_html('<p>Hello</p>');
|
|
|
|
SELECT rag.markdown_from_html('<p>Hello <i>world</i></p>');
|
|
|
|
SELECT rag.markdown_from_html('<h1>Title</h1><p>Paragraph</p>');
|
|
|
|
SELECT rag.markdown_from_html('<ul><li>Item 1</li><li>Item 2</li></ul>');
|
|
|
|
SELECT rag.markdown_from_html('<a href="https://example.com">Link</a>');
|
|
|
|
-- Note: text_from_pdf and text_from_docx require binary input which is harder to test in regression tests
|
|
-- We'll test that the functions exist and have the right signature
|
|
SELECT 'text_from_pdf_exists' AS test_name,
|
|
count(*) > 0 AS result
|
|
FROM pg_proc
|
|
WHERE proname = 'text_from_pdf'
|
|
AND pronamespace = (SELECT oid FROM pg_namespace WHERE nspname = 'rag');
|
|
|
|
SELECT 'text_from_docx_exists' AS test_name,
|
|
count(*) > 0 AS result
|
|
FROM pg_proc
|
|
WHERE proname = 'text_from_docx'
|
|
AND pronamespace = (SELECT oid FROM pg_namespace WHERE nspname = 'rag');
|