mathew4509
Hi Elixir community, I am a newbie at Elixir and learning to write some effective tests for my blog application. My blog application has the following association:
Post → has_many comments
User → has_many comments
Comment → belongs to post and user
I would like to test
- if the post_id in my comment is available/empty and raise appropriate error
- if it(post_id) has invalid attribute and if yes, raise appropriate error
CODE:
lib>myapp>blog>comments>comment.ex
@required_field [
:comment_text, :string,
:post_id
]
schema
field :comment_text, :string,
belongs_to :post, Post
belongs_to :user, User
changeset
def changeset(comment, attrs) do
comment
|> foreign_key_constraint(:post_id)
|> foreign_key_constraint(:user_id)
|> cast(attrs, @required_field ++ @optional_field)
|> validate_required(@required_field)
end
I am using factories so no fixtures.
test>support>factory.ex
def comment_factory do
%Comment{
comment_text: "some comment_text",
post: build(:post),
user: build(:user)
}
end
test>myapp>blog>comments_test.exs
@valid_attrs %{
comment_text: "some comment text"
}
Thanks in advance ![]()
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
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
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
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
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
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
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 3- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
amnu3387
Hi,
Could you help us by posting what you have tried and any issues you might have run into when trying that. And explaining where in the flow are your tests going to be done? (preparing the changeset, after insert attempt?)
mathew4509
Sure, I tried doing this
Added post with nil value to invalid_attrs
This test fails when I pass @invalid_attrs and gives the “post doesn’t exist” message. And this test passes if I pass @valid_attrs. But I would like to raise an error like foreign key error.
amnu3387
If I’m not mistaken, when you account for a foreign constraint on the changeset,
|> foreign_key_constraint(:post_id)like you did the insertion if invalid will fail and the changeset will be marked as errored, so something likeassert {:error, Ecto.Changeset{}} = insert(:comment, @invalid_attrs)should be what you’re looking for. If you want it to raise then you shouldn’t set the foreign constraint check, and leave it to the database to error, which will make ecto throw and exception.
But I think usually it’s preferable to have no exception and deal with
{:ok, _}/{:error, _}.If then wanted the caller can raise a specific one.
You can also check that the error is in the field you expect along with its message.
You would probably have some helper in your codebase for transforming errored changesets into a map of field => errors.
Ecto.Changeset.traverse_errors/2
With this you can build a simple helper:
And now you can use
assert %{post_id: ["post doesn't exist"]} = as_error_map(changeset)