ejpcmac

ejpcmac OP

Hello everybody!

I’ve discovered property-testing with stream_data a few months ago. Since then, I’ve successfully re-written the tests of a library, and I’m willing to use property-testing everywhere I can.

I’ve tried to property-test a Phoenix context boundary, but I’m facing performance issues:

defmodule Kakte.AccountsTest
  use Kakte.DataCase

  alias Kakte.Accounts
  alias Kakte.Repo

  [...]

  property "list_users/0 returns all users" do
    # user_attrs/0 is a generator for valid user attributes.
    check all attrs_list <- uniq_list_of(user_attrs(), length: 5) do
      Repo.transaction(fn ->
        users =
          Enum.map(attrs_list, fn attrs ->
            {:ok, user} = Accounts.register(attrs)
            user
          end)

        users_list = Accounts.list_users()

        assert length(users) == 5
        Enum.each(users, fn user -> assert user in users_list end)

        Repo.rollback(:done)
      end)
    end
  end

  [...]
end

Running this test takes more than 2.5 seconds on my machine. I know a property-test is expected to be longer to execute due to higher number of tests, but 2.5 seconds for one test is way too long IMO. I’ve tried to replace the test body by assert true and it runs quick, so I presume this is due to many repo transactions, but maybe I am misleading.

I have basically three questions:

  1. Is it a good idea to use property-testing everywhere?
  2. Do you property-test your Phoenix applications?
  3. How can I manage to speed up this test?

For information, the context source is here on GitHub.

First 5 of 5 Posts Switch mode

idi527

idi527

It depends on what you are testing in this case, and whether if can be accomplished with unit tests. Maybe you can separate the test above into property tests on changeset functions and then a unit test on “list_users/0 returns all users”. However, if you do need to touch the database in your property tests (for example, if you use stateful property tests for state machines backed by postgres), then maybe try reducing the complexity of the tests (with :numtests, :max_size proper or propcheck options and sized macro) so that they don’t run for too long during development.

but 2.5 seconds for one test is way too long IMO

It might be okay if you leave them to run overnight on some remote testing server, then you’d have a higher confidence that the code works as expected.

UPDATE: There are similar options for stream data as well.

ejpcmac

ejpcmac OP

Yes, that seems to be a good idea. Thank you.

That’s what I did to get a bit more speed, but I feel less confident with fewer tests.

How would you do that? With an environment variable, like MIX_MAX_RUNS=100 mix test and writing something like this?

defmodule Kakte.AccountsTest
  [...]

  @max_runs System.get_env("MIX_MAX_RUNS") || 5

  property "list_users/0 returns all users" do
    # user_attrs/0 is a generator for valid user attributes.
    check all attrs_list <- uniq_list_of(user_attrs(), length: 5), max_runs: @max_runs do
    [...]

end
idi527

idi527

I’d create an additional testing mix environment (in addition to test) which will be more similar to prod than dev, as in it would have remote (not a single local one like with dev or default test) databases to test possible race conditions, higher number of test iterations, mocks replaced with real internal services etc.

keathley

keathley

This is the trade off with property tests. You’re asking the computer to do a lot of work for you. But in return you’re gaining greater confidence in your overall system because your tests are working to find edge conditions in your logic. If you don’t feel like the trade-off is worth it then that’s a pretty clear indicator that your logic probably isn’t complex enough to warrant spending the time on a property test for it.

A potentially better use for property tests might be to actually drive this out from an api or webpage. Testing with more pieces in integration might help you find more edge cases. You can either generate api requests or use state machine models to drive a fake browser, etc.

Property tests provide robustness. But you pay for it in test time. I think people get hung up on tests times and I would always take robustness over test speed. That said, not every application needs that level of robustness and you still want to ensure that your spending your test time on the pieces of your system that need that level of robustness.

LostKobrakai

LostKobrakai

Most of that time is probably due to you hitting the database. You’ll get much better times for testing pure computation.

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New

We're in Beta

About us Mission Statement