Pytest helpers for testing projects using Meilisearch
Project description
pytest-meilisearch
pytest helpers for testing Python projects using Meilisearch.
Installation
Using a virtual environment is recommended for installing this package. Once the virtual environment is created and activated, install the package with:
pip install pytest-meilisearch
Usage
Note that to use any of the async options you also need to install an async test helper such as pytest-asyncio.
Configuration
Flags
--meilisearch-host
: Host where the Meilisearch test server is running. For examplehttp://localhost
. Default =http://127.0.0.1
(This is the same ashttp://localhost
).--meilisearch-port
: Port where the Meilisearch test server is running. For example7700
. Default =7700
.--meilisearch-master-key
: The master key for the Meilisearch test server. Default =None
.
Settings
meilisearch_client_scope
: Modify the scope of the async_meilisearch_client and meilisearch_client fixtures. Valid settings arefunction
,module
,package
, orsession
. Default =function
.meilisearch_clear
: Controls if either documents or indexes are deleted after each tests. This can be useful to ensure that tests don't interfer with each other. Valid options arenone
= documents and indexes are not deleted,async_document
= documents are asyncronously deleted after each test,async_index
= indexes are asyncronously deleted after each test,document
= documents are syncronously deleted after each test, orindex
= indexes are syncronously deleted between each test. Default =none
.
Examples
-
Testing that your function that adds documents to an index is successful:
-
async:
async def test_my_func(async_meilisearch_client): docs = [ {"id": 1, "title": "Ready Player One"}, {"id": 2, "title": "The Hitchhiker's Guide to the Galaxy"}, ] index_name = "books" await my_func(index_name, docs) index = async_meilisearch_client.index(index_name) result = await index.get_documents() assert result.results == docs
-
sync:
def test_my_func(meilisearch_client): docs = [ {"id": 1, "title": "Ready Player One"}, {"id": 2, "title": "The Hitchhiker's Guide to the Galaxy"}, ] index_name = "books" my_func(index_name, docs) index = meilisearch_client.index(index_name) result = index.get_documents() assert result.results == docs
-
-
Testing that your search is successful:
-
async:
async def test_my_func(async_index_with_documents): docs = [ {"id": 1, "title": "Ready Player One"}, {"id": 2, "title": "The Hitchhiker's Guide to the Galaxy"}, ] index_name = "books" index = await async_index_with_documents(docs, index_name) results = await my_func("Ready Player One") expected = "Ready Player One" # Whatever you expect to be returned assert result == expected
-
sync:
def test_my_func(index_with_documents): docs = [ {"id": 1, "title": "Ready Player One"}, {"id": 2, "title": "The Hitchhiker's Guide to the Galaxy"}, ] index_name = "books" index = index_with_documents(docs, index_name) results = my_func("Ready Player One") expected = "Ready Player One" # Whatever you expect to be returned assert result == expected
-
Contributing
If you are interested in contributing to this project please see our contributing guide.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest_meilisearch-0.6.1.tar.gz
.
File metadata
- Download URL: pytest_meilisearch-0.6.1.tar.gz
- Upload date:
- Size: 40.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 347f1c4f27092c487b9d87c7d3b4900e867b1c29e2f607759a004b55329b81af |
|
MD5 | 43da310931085c8594d6e0a4522bb65b |
|
BLAKE2b-256 | e38b075b84cab9f7eddce6c3ecbeb48b7cb7975799b4fd62acacd50d1ab7061b |
File details
Details for the file pytest_meilisearch-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: pytest_meilisearch-0.6.1-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c0a0b827e3d4d35668385f1edd12a878d256d4d61b34ece97b99e6b11ed5da4 |
|
MD5 | 02f8c7ff4b1eec6cade104b18248c073 |
|
BLAKE2b-256 | 4c51185c9979d790590ad42df14c9f44c14cdae7e15fc78bd541e7b4444b884f |