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
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
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
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










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