One of the problems that I run into a lot when working on projects is the ability to actually test the code. I might be beating a dead horse, but testing is one of those tasks that all too often gets dropped by the wayside, and honestly, I find it fun at times.

The first part of the process (which is still ongoing, mind you) was to determine what sort of code environment I was going to be working with. I found that I was working on a Python project utilizing SQLAlchemy and pandas. I don’t think this is necessarily a complex project in it’s own right, since the majority of the project is just dealing with processing data. I wasn’t too worried, since I had previously worked on getting a similar testing setup working. This simplifies things because now I really only need to prepare one aspect of the tests – the database.

I started by using the transaction_fixtures.py file by Vittorio Camisa, documented here. The idea is that I have a SQLAlchemy database, and I want to make sure that I can test things in a controlled environment. I’ve adapted it to the following:

The main idea here is that I want to generate a “new” DB for every module, set up the connection per-module, and then set up the tables per-module. Per-test we are getting a session that will auto-rollback when the test is completed (when the fixture goes out-of-scope). This means that every test uses an ephemeral DB, and we need to load the data into the DB on a per-test basis.

If it’s not obvious, we are using pytest as the testing framework. The thing I enjoy most about it is that I can use fixtures on a per-test basis as needed, which means that I can write a lot of fixtures for generating mock objects and then just pull them into the test manually. Pretty nice, especially when it comes to closing resources after the test is complete.

From there, the testing becomes slightly easier. The test can take a pytest fixture and use it as the core database link for the test. A test might look like this:

With the model definition looking like such:

These gists may not function directly due to imports, but generally serve to explain what’s going on.

This is a simple example, but this is generally what we are looking for now. We can generate some MacGuffins, add them to the temporary database, and from there we can query the database about them when needed.

Note: I’m writing tests for things that aren’t necessarily written the best way. func1 is written so that it takes in only the Session and from there pulls data, processes it, and stores the results to the database. This isn’t my preferred way of doing things, but this is how the code was written when it was handed to me.

At this point I have functions to test, a framework to support testing it, and now I just need to write tests.


I think this is a good point to stop. We’ve currently got the framework for testing, as well as some example ways to test. Whenever I write about property-based testing, I will link it here to flesh out how I’m writing the tests and how I’m thinking about the code further.