axelclark
I’ve added Pow into my project for authentication. Now I’m trying to update the tests Phoenix generated when I created my contexts.
I’ve added all my resource routes to the protected pipeline.
I used Pow.Plug.assign_current_user/3 to add a current user to my conn.
test "redirects to show when data is valid", %{conn: conn} do
user = %Golf.Accounts.User{email: "test@example.com", id: 1}
conn = Pow.Plug.assign_current_user(conn, user, [])
conn = post(conn, Routes.course_path(conn, :create), course: @create_attrs)
assert %{id: id} = redirected_params(conn)
assert redirected_to(conn) == Routes.course_path(conn, :show, id)
conn = get(conn, Routes.course_path(conn, :show, id))
assert html_response(conn, 200) =~ "Show Course"
end
My assertions about the create action all pass.
assert %{id: id} = redirected_params(conn)
assert redirected_to(conn) == Routes.course_path(conn, :show, id)
However, the final show action
conn = get(conn, Routes.course_path(conn, :show, id))
assert html_response(conn, 200) =~ "Show Course"
fails because it gets redirected to the new_session path:
** (RuntimeError) expected response with status 200, got: 302, with body:
<html><body>You are being <a href="/session/new?request_path=%2Fcourses">redirected</a>.</body></html>
If I reuse the original conn after I assign the current user, but before the create action, my tests pass.
test "redirects to show when data is valid", %{conn: conn} do
user = %Golf.Accounts.User{email: "test@example.com", id: 1}
new_conn = Pow.Plug.assign_current_user(conn, user, [])
conn = post(new_conn, Routes.course_path(new_conn, :create), course: @create_attrs)
assert %{id: id} = redirected_params(conn)
assert redirected_to(conn) == Routes.course_path(conn, :show, id)
conn = get(new_conn, Routes.course_path(new_conn, :show, id))
assert html_response(conn, 200) =~ "Show Course"
end
Can someone help me out with how I need to update my tests?
Thanks!
Axel
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
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
Kia ora,
We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
I’ve followed the Phoenix LiveView file upload code here Uploads — Phoenix LiveView v1.0.0-rc.7 and so far everything works just fine wit...
New
I’m using an Umbrella project for a Phoenix application, and I want to have one Ecto Repo and one PostgreSQL database shared by all apps....
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
Other Trending Topics
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
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #ai
- #iex
- #graphql
- #elixirconf-us
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
danschultzer
Your second example is the way to go. This could also be done in a
setupmacro like so:It’s because of how phoenix recycles connections in tests. The response conn will have a
:statekey set to:sentso when it’s reused the test helpers in Phoenix will build a new connection and only copy over headers e.g. cookies. Assigns will not be preserved.dimitarvp
If I am reading this thread right, there’s no point to have a test that does a POST and validates that Pow successfully authenticates a user then?
danschultzer
Yeah, you would only ever need to do that if you are testing the session controller itself. Assigning
:current_useris sufficient for all other controllers/routes.juanma1331
Hi, After adding Pow, I has 9 test failing, after placing the setup macro to add the user to the conn i has 3 tests that keep failing with error.
If i remove :protected from pipeline on the scope all test pass. So it has to be something with the authentication. Thanks
juanma1331
Fixed. Had to recycle the conn manually.
All the tests are passing now, but i have defined the recycle_conn function on the controller_test, what if i want to test another authed controller? Need to redefine again, or create another helper module and define it there to ease reuse.
Im pretty new to elixir/phoenix and web dev in general. Sorry for my english