NobbZ

NobbZ

For some python projects at work we found that there are pytest-{postgres,mysql,redis} and probably more.

These tools take the burden off of you to maintain a Dev database locally which you need to configure your in Dev applications accordingly.

Those are basically plugins for pytest, which use the fixture mechanism of pytest to provide temporary “installations” of the tool in question, “persisting” it’s data into temporary folders and removing after the suite has run.

Even though this has an obvious runtime cost to initialise the tooling for each test run, it really made onboarding the junior quite easy. We just told them to install mysql package for their Ubuntu WSL and told them to run make test which wrapped the actual test run with proper command line arguments. No need to walk them through configuring a local mysql or having remember to run some docker(-compose) whenever changing projects.

Has anyone seen something similar for elixir or is there any interest in it?

Showing Posts 1 to 9

dimitarvp

dimitarvp

I am sorry, what exactly do those packages do? Didn’t get it. What tool? What temporary installations? Why once per test? Could you clarify?

webuhu

webuhu

I archive this behavior by using Nix.
At least it works perfectly with running PostgreSQL in a temporary directory.

GitHub - webuhu/elixir_nix_example · GitHub

The probably interesting PostgreSQL part under:
https://github.com/cw789/elixir_nix_example/blob/main/pkg/temporary_postgresql_db.nix

So it means within WSL - install Nix - run nix-shell command x…
If you run the command a second time, runtime cost isn’t anymore much higher.

NobbZ

NobbZ OP

Yeah, using nix such a thing is easy, I know, though even I wrap most of my stuff in flakes nowadays, I try to make it that potential contributors don’t need nix installed.

webuhu

webuhu

That would be wonderful. Difficult onboarding is always an issue.

NobbZ

NobbZ OP

They start the tool they are made for, eg mysql, and remove its runtime folders afterwards. It does not affect any potentially running instances of that software that might already be on the system.

And it’s not per test, but per run.

So only the first test hitting the database is actually slow as it needs to wait for everything beeing set up.

As I said already it comes with a low cost for setting things up, and might also enable to test behaviour against different database versions.

webuhu

webuhu

So I’m not aware of anything like this deticated for Elixir and not using Docker.
But I think without any container or virtual machine sandboxing it is difficult to not affect any other running instances.
But I’m of course interested.

dimitarvp

dimitarvp

I’m still not sure I get it.

Are you talking about something like the PGDATA environment variable that allows you to specify where will PostgreSQL store its data? I’ve had projects where that was used to kinda sorta enforce some isolation.

NobbZ

NobbZ OP

We used the MySQL version of those plugins, that basically starts a mysql demon with a configuration pointing the data dir to somewhere in tmp, listening on specified ports or domain sockets.

It manages the full database application lifecycle.

dallagi

dallagi

If I understood your requirement correctly, you may be interested in excontainers, a library I developed to tackle exactly this problem.

Unfortunately it has not seen much adoption yet, but in case you decide to give it a try I’d be happy to hear about any problem you may encounter or any feedback you may have :slight_smile:

— All posts loaded —

Where Next? Top

Trending in Discussions Top

AstonJ
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
2977 92995 915
New
AstonJ
The obligatory hello world thread! Who are you and where are you from? :stuck_out_tongue:
4616 55835 594
New
caslu
I want to open this thread for you all to discuss and help those who really like Ash but are still hesitant to use it in a real project. ...
New
arcanemachine
I was working on an Ecto migration and I needed a timestamp. So, for the nth time, I looked up the different data types for timestamps, a...
New
alexslade
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog It says that Fly is going all-in on sprites, which is a worry ...
New
Herve37
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using. We’re particularly inte...
New
matt-savvy
Is there a word for the ~> symbol used in Version strings? Do you also just call it a Squiggle Arrow™ ?!
New

Other Trending Topics Top

RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & 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
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews