Dexter

Dexter

I would like to run tests which are written in different files by calling mix test.
For example test1.exs, test2.exs, …
The ExUnit.start options are [trace: true, seed: 0 , exclude: :skipped] because the test must run in a given order.
It would be nice to include these files by some options or by calling them out of ProjectnameTest. Then I would be able to exclude tests by excluding a complete file.

Now I’m running them by calling them in a script with mix run test1.exs …
But this is not what we want because be would like this configuration in elixir centrally.

Showing Posts 1 to 10

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

You can do:

mix test test/some/path

and it will run all tests in that path. Is that not working for you?

Dexter

Dexter OP

No because the file are executed in random order. The option seed: 0 disables the random order only inside the file.

We are running integration tests for a system for which we have written a simulator to communicate with. Therefore we have dependencies like StartUp test has to run first.
I guess at the end of day we will have hundreds of tests where some of them will have strict dependencies. It will be very messy to write all tests in one single file.
Also we would like to sort the tests into categories to be able to activate or deactivate a special type of test.
I know you can do that also with @tag :skipped but this is also not very elegant in our case.

radar

radar

Do you have some example code that we could look at? Talking about it using just words is not as good as using words+code. I really think it’ll help our understanding of this issue.

Dexter

Dexter OP

I don’t get your point.
It has nothing to do with my code because the test are running if I put them in one file with the option seed: 0 and async: false. I “just” want to be able to run them in a given order.

file a_test.exs has test a1, a2, a3
file b_test.exs has test b1, b2, b3
file c_test.exs has test c1, c2, c3

The test should run for example in the following order.

a1, a2, a3, c1, c2, c3, b1, b2, b3 
radar

radar

You’re asking us to give you the solution for Y but you may need the X solution. I don’t think I have enough info on your problem to know for certain. This is why I asked for code.

If something seems hard to do then it can be because how you’re attempting it isn’t the right way.

Dexter

Dexter OP

We are not testing elixir code.
We have written a simulator in elixir which is communicating via serial interface with a device. The code of this divece is c++ -code.
The simulator simulates a motor control.
Now I would like to test this device via the serial interface.
If that device sends a message an event is triggered and we are checking if this was the right event.
It can not be compared to elixir unit tests.
Till now we have just some dummy tests. First we have to solve the above-mentioned problem.

bitboxer

bitboxer

If you are not writing tests for your elixir code, why then do you try to use mix test for it instead of an elixir script that you would call serial port tester´or something like that?

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Agreeing with @bitboxer here, it sounds like you are using the wrong tool for the job. mix test is for testing against Elixir code. As a rule it is very bad practice to have order dependent tests because such tests are extremely brittle as they rely on quite a lot of invisible implicit state.

Dexter

Dexter OP

I fully agree that tests should run independently. But in our cases we have start up test which have to run first.
Nevertheless thank you for the discussion.

I’ve to learn the ropes of scripting in elixir.

alfert

alfert

You can also write a regular Elixir application, where the application start function orchestrates the test execution. And if helpful, you can use the supervision structure to achieve more reliability.

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
ryanwinchester
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted” Version...
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
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
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New

Latest on Elixir Forum

Elixir Forum

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews