fireproofsocks
I just started looking over a Broadway repository and I’m wondering how to take advantage of Broadway.DummyProducer and/or test_messages. I can’t seem to make those run…
I tried to adapt the examples from the docs:
defmodule MyAppTest do
use ExUnit.Case
test "example test" do
ref = Broadway.test_messages(MyApp, [1, 2, 3])
assert_receive {:ack, ^ref, [_, _, _] = _successful, _failed}, 1000
end
end
but that always generates an error:
test/my_app_test.exs:5
** (exit) exited in: GenServer.call(MyApp, :producer_names, 5000)
** (EXIT) no process: the process is not alive or there's no process currently associated with the given name, possibly because its application isn't started
code: ref = Broadway.test_messages(BroadwaySQS.Producer, [1, 2, 3])
I’ve tried using various other modules as input to the Broadway.test_messages function, but can’t seem to get past the error. I’m sure I’m missing something silly, but what is a valid argument to that function?
Trending in Questions
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
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
Have you started your brodway? And how do you do so?
fireproofsocks
Ah… digging around a bit it’s making a bit more sense.
This is my
application.ex:In this case, the various Broadway processes are NOT started with the rest of the app. Instead, they get started in dedicated
.exsscripts using something likeIf I add the
Something.start_link([])to my tests, then the test methods seem to work… at least it’s getting new error messages…fireproofsocks
I’ve had to dig much deeper on this, and I’ve found a couple things… first is that the documentation appears to be wrong (but someone should check me on that before I submit a PR).
One thing to clarify is that the
Broadway.test_messages/2is pretty simplistic: the list of arguments that you provide it as the 2nd argument gets mapped onto%Broadway.Message{}structs as thedatafield. In our case, that was not sufficient to test our pipeline because our message handlers rely on pattern matching of the messagemetadatafield as well.A useful modification to my
start_link/1function allows me to use theBroadway.DummyProducerin my tests:The area in particular that does not work as advertised is the
assert_receive. Instead of returning a list of all successful messages in one go, thebatch_mode: :flushoption seems to trigger each message to eject as soon as it’s done processing. So instead of a singleassert_receivechecking for a list with 3 elements, I had to do 3assert_receivestatements, each checking for a list with 1 element. Here’s how it looked (with my custom modifications to mimic what was intest_messages/2:Note that a 4th
assert_receivestatement would fail because the mailbox would be empty.I tried doing this using
batch_mode: :bulkbut that also seems to have returned 1 message per receive.fireproofsocks
I filed this issue: Bad Docs for testing · Issue #165 · elixir-broadway/broadway · GitHub