Skip to content
Oeiuwq Faith Blog OpenSource Porfolio

ericmj/true_story

Make your tests tell a story

ericmj/true_story.json
{
"createdAt": "2016-04-28T14:05:36Z",
"defaultBranch": "master",
"description": "Make your tests tell a story",
"fullName": "ericmj/true_story",
"homepage": "",
"language": "Elixir",
"name": "true_story",
"pushedAt": "2017-02-14T19:01:27Z",
"stargazersCount": 56,
"topics": [],
"updatedAt": "2023-09-01T11:29:05Z",
"url": "https://github.com/ericmj/true_story"
}

Make your tests tell a story.

We’ve observed that well-written code and a well-structured API tells a good story. Writing single-purpose functions and improving setup composition improves tests. When you get the setup right, tests get simpler and the structure is easier to read and easier to follow. This thin DSL around ExUnit does exactly that.

To use TrueStory, just add as a dependency and write your tests.

Available in Hex, the package can be installed as:

Add true_story to your list of dependencies in mix.exs:

def deps do
[{:true_story, "~> 0.0.1", only: :test}]
end

First, you’ll use ExUnit.Case, and also use TrueStory, like this:

defmodule MyTest do
use ExUnit.Case
use TrueStory
# tests go here
end

Next, you’ll write your tests. Everything will compose, with each part of a story modifying a map, or context. To keep things brief, it’s idiomatic to call the context c.

Experiments (story) and measurements (verify)

Section titled “Experiments (story) and measurements (verify)”

A TrueStory test has an experiment and measurements. The experiment changes the world, and the measurements evaluate the impact of the experiment. Experiments go in a story section and measurements go in a verify block.

This story tests adding to a map. In the story block, you’ll test

story "adding to a map", c
|> Map.put(:key, :value),
verify do
assert c.key == :value
refute c.key == :not_value
end

Please note: verify blocks can’t be stateful, and they can’t mutate the context! Keeping verify blocks pure allows us to run all verifications for a single test at once.

That’s it. The story section has a name and a context pipe. The context pipe is a macro that allows basic piping, but also has some goodies for convenience.

You can write composable functions that transform a test context to build up your experiments, piece by piece, like this:

defp add_to_map(c, key, value),
do: Map.put(c, key, value)
story "adding to a map", c
|> add_to_map(:key, :value),
verify do
assert c.key == :value
refute c.key == :not_value
end
story "overwriting a key", c
|> add_to_map(:key, :old),
|> add_to_map(:key, :new),
verify do
assert c.key == :new
refute c.key == :old
end

Most application tests are built in the setup. Piping together setup functions like this, you can build a growing library of setup functions for your application, and save your setup library in a common module.

Maybe we would like to measure intermediate steps. To do so, you can run an integration test across tests, like this:

integrate "adding multiple keys" do
story "adding to a map", c
|> add_to_map(:key, :old),
verify do
assert c.key == :old
end
story "overwriting a key", c
|> add_to_map(:key, :new),
verify do
assert c.key == :new
end
story "overwriting a key", c
|> remove_from_map(:key),
verify do
refute c.key
end
end

This test expands to a single ExUnit test, so there’s no concern about compatibility.

Like the experiment steps, these stories compose, with the previous story piped into the next.

The pipe operator in the story macro allows you to access any key in the context placed there by an earlier pipe segment. For example, say you had some setup functions:

defp create_user(c),
do: Map.put(c, :user, %User{ name: "Bubba" }
defp create_blog(c, user),
do: Map.put(c, :blog, %Blog{ name: "Fishin'", user: user }
defp create_post(c, blog, options), do: Blog.create(blog, options)

In your story, you can access the context in earlier pipe segments, like this:

story "Creating a post", c
|> create_user
|> create_blog(c.user)
|> create_post(c.blog, post: post_options),
verify do
...
end

Read the previous code carefully. Typically, the user would not be available from the c variable. By making it available with a macro, we make it easy to effortlessly build a simple composition of pipe segments, with the changes of each previous segment available to the next. Notice we’re free to specify c.user and c.blog, which otherwise would be out of bounds. We can also take advantage of the same behavior in our setup functions with assigns, like this:

defp blog_with_post(user, title, post) do
assign(
user: user,
blog:create_blog(c.user),
post: create_post(c.blog, c.user) )
end

That macro makes composing this kind of data much cleaner.

Often, you want to add a single key to a test context. To make things easier for the person reading the test, you would like to make the name of the function in the story block and the key in the context the same. defplot makes this easy. You can build a single line of a story, called a plot, like this:

defplot user(name, email) do
%User{ name: name || "Bubba", email: email || "gone@fishin.example.com" }
end

Note that you can one-line simpler functions as well:

defplot user(name, email), do:%User{ name: name, email: email }

That expands to:

def user(c, name, email) do
Map.put c, :user, %User{ name: name, email: email }
end

Say you have a story block that looks like this:

story "Emailing a user", c
|> user,
|> application_function_emailing_a_user
verify do
assert c.user.email
end

Now, it’s clear that the user plot in the story populates the :user key in the context. Your stories are easier to read, and your plot lines are easier to write. Win/win.

In True Story, We change the way we think about tests a little bit. Follow these rules and you’ll get better benefit out of the framework.

The story block contains an experiment. The verify block conains one or more measurements. You probably noticed that we’re not afraid of multiple assertions in our verify block. We think that’s ok, and it fits our metaphor. We’re verifying a story, or measuring the result of an experiment.

Anything that changes the context or the external world always goes into story. The verify is left to pure functions. That means we’ll call our story blocks exactly once, and that’s a huge win. The processing is simpler, and allows the best possible concurrency.

Over the course of time, you’ll accumulate reusable testing units in your story library. The way we’re structured encourages this practice, and encourages users to build into composeable blocks. It’s easy to roll up smaller library functions into bigger ones using nothing but piping and this is encouraged.

Experiments raise errors, assertions return data.

Section titled “Experiments raise errors, assertions return data.”

That means we don’t have to stop for a failure. Since assertions/measurements are stateless, we don’t have to worry about failures corrupting our tests, so these tests can continue to run. We get better cycle times because we can fix multiple tests for a single run while doing green field development or refactoring.

Everything should compose. In True Story, an integration test is just one test that flows into the next. Story pipe segments are also just compositions on the context.

Section titled “Everything should compose. In True Story, an integration test is just one test that flows into the next. Story pipe segments are also just compositions on the context.”

We didn’t release True Story until we’d had six months of experience with it. We can confirm that these techniques work. Here’s what we’re finding.

  • Tests are first class citizens. The macros in this library are big wins for the organization of setup functions, and thus tests.
  • One experiment, multiple measurements. We find single purpose code gives us prettier tests, and more composable, reusable setups.
  • Experiments can be stateful; measurements can’t. We can run each setup once so we get great performance.
  • Experiments raise; measurements return fail data. This means we can return multiple failures per test, shorting cycle times.
  • Everything composes. We find that most testing effort is in setup. If setup is simple, the rest of the testing is much easier.

Enjoy. Let us know what you think.

We’re looking into better integration with Phoenix, and better integration with genstage. We’re open to ideas and pull requests.