Skip to main content

Simplify the testing of SQL data models and queries by allowing users to mock input data and create tests for various scenarios. It provides a consistent and convenient way to test the execution of your query without the need to process a massive amount of data.

Project description

SQL Mock: Python Library for Mocking SQL Queries with Dictionary Inputs

PyPI version Supported Python versions License: MIT

The primary purpose of this library is to simplify the testing of SQL data models and queries by allowing users to mock input data and create tests for various scenarios. It provides a consistent and convenient way to test the execution of your query without the need to process a massive amount of data.

The library currently supports the following databases. Database specific documentations are provided in the links:

Installation

The library can be installed from [PyPI][pypi-project] using pip:

pip install --upgrade sql-mock

To install database specific versions, you can use the following:

# BigQuery
pip install --upgrade "sql-mock[bigquery]"

# Clickhouse
pip install --upgrade "sql-mock[clickhouse]"

If you need to modify this source code, install the dependencies using poetry:

poetry install --all-extras

Usage

How it works

Before diving into specific database scenarios, let's start with a simplified example of how SQL Mock works behind the scenes.

  1. You have an original SQL query, for instance:

    -- path/to/query_for_result_table.sql
    SELECT id FROM data.table1
    
  2. Using SQL Mock, you define mock tables. You can use the built-in column types provided by SQL Mock. Available column types include Int, String, Date, and more. Each database type has their own column types. Define your tables by subclassing a mock table class that fits your database (e.g. BigQueryMockTable) and specifying the column types along with default values. In our example we use the ClickhouseTableMock class

    from sql_mock.clickhouse import column_mocks as col
    from sql_mock.clickhouse.table_mocks import ClickHouseTableMock, table_meta
    
    @table_meta(table_ref='data.table1')
    class Table(ClickHouseTableMock):
        id = col.Int(default=1)
        name = col.String(default='Peter')
    
    @table_meta(table_ref='data.result_table', query_path='path/to/query_for_result_table.sql')
    class ResultTable(ClickhouseTableMock):
        id = col.Int(default=1)
    
  3. Creating mock data: Define mock data for your tables using dictionaries. Each dictionary represents a row in the table, with keys corresponding to column names. Table column keys that don't get a value will use the default.

    user_data = [
        {}, # This will use the defaults for both id and name
        {'id': 2, 'name': 'Martin'},
        {'id': 3}, # This will use defaults for the name
    ]
    
    input_table_mock = Table.from_dicts(user_data)
    
  4. Getting results for a table mock: Use the from_mocks method of the table mock object to generate mock query results based on your mock data.

    res = ResultTable.from_mocks(input_data=[input_table_mock])
    
  5. Behind the scene SQL Mock replaces table references (e.g. data.table1) in your query with Common Table Expressions (CTEs) filled with dummy data. It can roughly be compared to something like this:

    WITH data__table1 AS (
        -- Mocked inputs
        SELECT 
            cast('1' AS 'String') AS id, 
            cast('Peter' AS 'String') AS name
        UNION ALL 
        SELECT 
            cast('2' AS 'String') AS id, 
            cast('Martin' AS 'String') AS name
        UNION ALL 
        SELECT 
            cast('3' AS 'String') AS id, 
            cast('Peter' AS 'String') AS name
    )
    
    result AS (
        -- Original query with replaced references
        SELECT id FROM data__table1 
    )
    
    SELECT 
        cast(id AS 'String') AS id
    FROM result
    
  6. Finally, you can compare your results to some expected results using the assert_equal method.

    expected = [{'id': '1'},{'id': '2'},{'id': '3'}]
    res.assert_equal(expected)
    

Defining your table mocks

When you want to provide mocked data to test your SQL model, you need to create MockTable classes for all upstream data that your model uses, as well as for the model you want to test. Those mock tables can be created by inheriting from a BaseMockTable class for the database provider you are using (e.g. BigQueryMockTable).

We recommend to have a central model.py file where you create those models that you can easily reuse them across your tests

# models.py

from sql_mock.bigquery import column_mocks as col
from sql_mock.bigquery.table_mocks import BigQueryMockTable, table_meta

# The models you are goign to use as inputs need to have a `table_ref` specified
@table_meta(table_ref='data.table1')
class Table(BigQueryMockTable):
    id = col.Int(default=1)
    name = col.String(default='Peter')

@table_meta(table_ref='data.result_table', query_path='path/to/query_for_result_table.sql')
class ResultTable(BigQueryMockTable):
    id = col.Int(default=1)

Some important things to mention:

The models you are goign to use as inputs need to have a table_ref specified.

The table_ref is how the table will be referenced in your production database (usually some pattern like <schema>.<table>)

The model needs to have a query.

There are currently 2 ways to provide a query to the model:

  1. Pass a path to your query file in the class definition using the table_meta decorator. This allows us to only specify it once.
    @table_meta(table_ref='data.result_table', query_path='path/to/query_for_result_table.sql')
    class ResultTable(BigQueryMockTable):
        ...
    
  2. Pass it as query argument to the from_mocks method when you are using the model in your test. This will also overwrite whatever query was read from the query_path in the table_meta decorator.

Recommended Setup for Pytest

If you are using pytest, make sure to add a conftest.py file to the root of your project. In the file add the following lines:

import pytest
pytest.register_assert_rewrite('sql_mock')

This allows you to get a rich comparison when using the .assert_equal method on the table mock instances.

We also recommend using pytest-icdiff for better visibility on diffs of failed tests.

Examples

You can find some examples in the examples folder.

FAQ

My database system is not supported yet but I want to use SQL Mock. What should I do?

We are planning to add more and more supported database systems. However, if your system is not supported yet, you can still use SQL Mock. There are only 2 things you need to do:

Create your MockTable class

First, you need to create a MockTable class for your database system that inherits from sql_mock.table_mocks.BaseMockTable.

That class needs to implement the _get_results method which should make sure to fetch the results of a query (e.g. produced by self._generate_query()) and return it as list of dictionaries.

Look at one of the existing client libraries to see how this could work (e.g. BigQueryMockTable).

You might want to create a settings class as well in case you need some specific connection settings to be available within the _get_results method.

Create your ColumnMocks

Your database system might support specific database types. In order to make them available as column types, you can use the sql_mock.column_mocks.ColumnMock class as a base and inherit your specific column types from it. For most of your column mocks you might only need to specify the dtype that should be used to parse the inputs.

A good practise is to create a ColumnMock class that is specific to your database and inherit all your column types from it, e.g.:

from sql_mock.column_mocks import ColumnMock

class MyFanceDatabaseColumnMock(ColumnMock):
    # In case you need some specific logic that overwrites the default behavior, you can do so here
    pass 

class Int(MyFanceDatabaseColumnMock):
    dtype = "Integer"

class String(MyFanceDatabaseColumnMock):
    dtype = "String"

Contribute your database setup

There will definitely be folks in the community that are in the need of support for the database you just created all the setup for. Feel free to create a PR on this repository that we can start supporting your database system!

I am missing a specific ColumnMock type for my model fields

We implementd some basic column types but it could happen that you don't find the one you need. Luckily, you can easily create those with the tools provided. The only thing you need to do is to inherit from the ColumnMock that is specific to your database system (e.g. BigQueryColumnMock) and write classes for the column mocks you are missing. Usually you only need to set the correct dtype. This would later be used in the cast(col to <dtype>) expression.

# Replace the import with the database system you are using
from sql_mock.bigquery.column_mock import BigQueryColumnMock 

class MyFancyMissingColType(BigQueryColumnMock):
    dtype = "FancyMissingColType"

    # In case you need to implement additional logic for casting, you can do so here
    ...

Don't forget to create a PR in case you feel that your column mock type could be useful for the community!

Contributing

We welcome contributions to improve and enhance this open-source project. Whether you want to report issues, suggest new features, or directly contribute to the codebase, your input is valuable. To ensure a smooth and collaborative experience for both contributors and maintainers, please follow these guidelines:

Reporting Issues

If you encounter a bug, have a feature request, or face any issues with the project, we encourage you to report them using the project's issue tracker. When creating an issue, please include the following information:

  • A clear and descriptive title.
  • A detailed description of the problem or suggestion.
  • Steps to reproduce the issue (if applicable).
  • Any error messages or screenshots that help clarify the problem.

Feature Requests

If you have ideas for new features or improvements, please use the project's issue tracker to submit a feature request. We appreciate well-documented feature requests that explain the motivation and potential use cases.

Contributing Code

Find more about contributing code in the Contribution Guidelines

Project details


Download files

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

Source Distribution

sql_mock-0.2.0.tar.gz (14.3 kB view hashes)

Uploaded Source

Built Distribution

sql_mock-0.2.0-py3-none-any.whl (14.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page