filip-rybczynski

filip-rybczynski

Hello!

I’m still a newcomer to Elixir and Phoenix, I’ve only started using them early this year. So asking kindly for understanding if the question I ask turns out to be trivial :sweat_smile:

The app I’m now working on in my project has several buttons which serve as links to patch the current LiveView (which results in UI changes, e.g. tab change in a menu). In its simplest form, the pattern is as follows:

<.link patch={~p(/users/#{@id}/edit)}>
  <.button>
    Edit
  </.button>
</.link>

The issue I’m currently facing is how to properly test such components - specifically, how to test that pressing this link will result in a patch as expected. Basically, I’d like to test the following series of events: (1) open view → (2) assert some html → (3) click link → (4) assert patch → (5) assert some different html. So step #3 is where I’m currently stuck at.

render_click won’t do in this case, since the Phoenix.Component.link/1 component does not have a phx-click attribute. Looking through the Phoenix.LiveViewTest documentation, I didn’t find anything that seems to work specifically for links.

Of course, the two less-than-satisfying options that come to mind now are:

  1. Not test interacting with the link directly and just simulate the resulting patch with render_patch/2 (seems like this reduces test reliability since the patch link is dynamic, dependent on assigns)
  2. Replace all instances of the above pattern with regular buttons with phx-click, and trigger the patch in the event handler (much better option from test reliability perspective, but modifying app code solely for testing purposes is probably not ideal, unless necessary)

But before I go with either option I wanted to ask here - is there any way to test patch navigations triggered by Phoenix link components in LiveViewTest that I’m missing?

Showing Posts 1 to 3

sodapopcan

sodapopcan

Hello and welcome to Elixir Forum!

render_click should absolutely work on a <.link> component. Are you using element first?

lv
|> element("#my-link")
|> render_click()

assert_patch(lv, ~p"/users/#{@id}/edit")

assert render(lv) =~ "some html"

Also, just in case you weren’t aware, assuming you have a @user assign you don’t need to bother assigning @id as well, you can pass an Ecto struct to verified routes and it knows to use its id:

patch={~p(/users/#{@user}/edit)}
filip-rybczynski

filip-rybczynski OP

Hey, thanks for your response!

You are absolutely correct. I wrote this post because I kept getting a (paraphrasing) “element does not have phx-click attribute” error, but apparently it was because I had an issue with my selector in element - I used a straightforward id this time and now it works!

Of course, now that it works I noticed that there is the below clear paragraph in the docs:

If the element does not have a phx-click attribute but it is a link (the <a> tag), the link will be followed accordingly

So if I just read a bit more, I’d realize the issue was somewhere else, and not with render-click. Lesson for the future, I guess. Thanks for taking the time to help out!

As to your second point - I simplified the code snippet, we use @user.id, but I was actually unaware of the option of passing an Ecto struct to verified routes. I’d like to read more about it, is this what you’re referring to? Phoenix.Param — Phoenix v1.8.8

sodapopcan

sodapopcan

Yep! Derive Phoenix.Param to use another field. It’s legit to do @user.id too but it does make refactoring much easier if you ever want to switch to @user.slug or something.

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
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
kszambelanczyk
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
Onor.io
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
Trolleger
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
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
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New

Other Trending Topics Top

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
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 &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
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