Files
postter/spec/requests/posts_spec.rb
João Victor Geonizeli e465123190 implement current_user
2022-02-28 09:48:51 -03:00

90 lines
2.8 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(:user) { create(:user) }
let(:valid_attributes) {
{
content: "Quo dolorem recusandae. Vero laborum deleniti. Qui ipsam illum.",
}
}
let(:invalid_attributes) {
{
content: nil,
}
}
# 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) {
{
Cookie: "user_id=#{user.id}"
}
}
describe "GET /index" do
it "renders a successful response" do
create(:post)
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 = create(:post)
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