Skip to main content

pytest-meilisearch

Tests Status pre-commit.ci status PyPI version PyPI - Python Version

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 example http://localhost. Default = http://127.0.0.1 (This is the same as http://localhost).
  • --meilisearch-port: Port where the Meilisearch test server is running. For example 7700. 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 are function, module, package, or session. 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 are none = 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, or index = 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.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest_meilisearch-0.6.0.tar.gz (40.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pytest_meilisearch-0.6.0-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file pytest_meilisearch-0.6.0.tar.gz.

File metadata

  • Download URL: pytest_meilisearch-0.6.0.tar.gz
  • Upload date:
  • Size: 40.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.5

File hashes

Hashes for pytest_meilisearch-0.6.0.tar.gz
Algorithm Hash digest
SHA256 1779300b5cfe2f90a3a8769fce6db6c2a17beb1b0e050fd0287281501d9f1222
MD5 44b8a78f4c0b3f2063ed91b40c207336
BLAKE2b-256 7e0c6fd75113da3f6d0e1055cd19d8c5233031218dd87b671d9d12206d019e7b

See more details on using hashes here.

File details

Details for the file pytest_meilisearch-0.6.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_meilisearch-0.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5406afba7df29b51e1f678417f719425912c765ac218005b5039a3c6c5dafe5d
MD5 abd69e31a216739a1f4fbc78c1243471
BLAKE2b-256 20a240c3b8a6a82f38855b8fab0ca0065a758f3255ca4aed779a00b368ef6eb3

See more details on using hashes here.

Release history Release notifications | RSS feed

0.6.1

2 files

This release

0.6.0 This release

2 files

0.5.0

2 files

0.4.0

2 files

0.3.5

2 files

0.3.4

2 files

0.3.3

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page