Files
postter/spec/requests/posts_spec.rb
João Victor Geonizeli d3ec59dd2e fix post specs
2022-02-27 17:26:22 -03:00

89 lines
2.9 KiB
Ruby

require 'rails_helper'
# This spec was generated by rspec-rails when you ran the scaffold generator.
# It demonstrates how one might use RSpec to test the controller code that
# was generated by Rails when you ran the scaffold generator.
#
# It assumes that the implementation code is generated by the rails scaffold
# generator. If you are using any extension libraries to generate different
# controller code, this generated spec may or may not pass.
#
# It only uses APIs available in rails and/or rspec-rails. There are a number
# of tools you can use to make these specs even more expressive, but we're
# sticking to rails and rspec-rails APIs to keep things simple and stable.
RSpec.describe "/posts", type: :request do
let(:quoted_post) { create(:post) }
let(:valid_attributes) {
{
content: "Quo dolorem recusandae. Vero laborum deleniti. Qui ipsam illum.",
user_id: create(:user).id,
}
}
let(:invalid_attributes) {
{
content: "Quo dolorem recusandae. Vero laborum deleniti. Qui ipsam illum."
}
}
# This should return the minimal set of values that should be in the headers
# in order to pass any filters (e.g. authentication) defined in
# PostsController, or in your router and rack
# middleware. Be sure to keep this updated too.
let(:valid_headers) {
{}
}
describe "GET /index" do
it "renders a successful response" do
Post.create! valid_attributes
get posts_url, headers: valid_headers, as: :json
expect(response).to be_successful
end
end
describe "GET /show" do
it "renders a successful response" do
post = Post.create! valid_attributes
get post_url(post), as: :json
expect(response).to be_successful
end
end
describe "POST /create" do
context "with valid parameters" do
it "creates a new Post" do
expect {
post posts_url,
params: { post: valid_attributes }, headers: valid_headers, as: :json
}.to change(Post, :count).by(1)
end
it "renders a JSON response with the new post" do
post posts_url,
params: { post: valid_attributes }, headers: valid_headers, as: :json
expect(response).to have_http_status(:created)
expect(response.content_type).to match(a_string_including("application/json"))
end
end
context "with invalid parameters" do
it "does not create a new Post" do
expect {
post posts_url,
params: { post: invalid_attributes }, as: :json
}.to change(Post, :count).by(0)
end
it "renders a JSON response with errors for the new post" do
post posts_url,
params: { post: invalid_attributes }, headers: valid_headers, as: :json
expect(response).to have_http_status(:unprocessable_entity)
expect(response.content_type).to match(a_string_including("application/json"))
end
end
end
end