mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-05-14 11:15:48 -04:00
181 lines
5.9 KiB
Ruby
181 lines
5.9 KiB
Ruby
require 'spec_helper'
|
|
|
|
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
|
# It demonstrates how one might use RSpec to specify 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.
|
|
#
|
|
# Compared to earlier versions of this generator, there is very limited use of
|
|
# stubs and message expectations in this spec. Stubs are only used when there
|
|
# is no simpler way to get a handle on the object needed for the example.
|
|
# Message expectations are only used when there is no simpler way to specify
|
|
# that an instance is receiving a specific message.
|
|
|
|
describe PostsController do
|
|
|
|
login_user
|
|
|
|
# This should return the minimal set of attributes required to create a valid
|
|
# Post. As you add validations to Post, be sure to
|
|
# update the return value of this method accordingly.
|
|
def valid_attributes
|
|
{ :user_id => 1, :subject => "blah", :body => "blah blah" }
|
|
end
|
|
|
|
# The parameters required to be passed to a Web request.
|
|
def valid_web_attributes
|
|
{ :subject => "blah", :body => "blah blah" }
|
|
end
|
|
|
|
# This should return the minimal set of values that should be in the session
|
|
# in order to pass any filters (e.g. authentication) defined in
|
|
# PostsController. Be sure to keep this updated too.
|
|
def valid_session
|
|
{}
|
|
end
|
|
|
|
describe "GET index" do
|
|
it "assigns all posts as @posts" do
|
|
post = Post.create! valid_attributes
|
|
get :index, {}
|
|
assigns(:posts).should eq([post])
|
|
end
|
|
end
|
|
|
|
describe "GET RSS feed" do
|
|
it "returns an RSS feed" do
|
|
get :index, :format => "rss"
|
|
response.should be_success
|
|
response.should render_template("posts/index")
|
|
response.content_type.should eq("application/rss+xml")
|
|
end
|
|
end
|
|
|
|
describe "GET show" do
|
|
it "assigns the requested post as @post" do
|
|
post = Post.create! valid_attributes
|
|
get :show, {:id => post.slug}
|
|
assigns(:post).should eq(post)
|
|
end
|
|
end
|
|
|
|
describe "GET new" do
|
|
it "assigns a new post as @post" do
|
|
get :new, {}
|
|
assigns(:post).should be_a_new(Post)
|
|
end
|
|
end
|
|
|
|
describe "GET edit" do
|
|
it "assigns the requested post as @post" do
|
|
post = Post.create! valid_attributes
|
|
get :edit, {:id => post.slug}
|
|
assigns(:post).should eq(post)
|
|
end
|
|
end
|
|
|
|
describe "POST create" do
|
|
describe "with valid params" do
|
|
it "creates a new Post" do
|
|
expect {
|
|
post :create, {:post => valid_web_attributes}
|
|
}.to change(Post, :count).by(1)
|
|
end
|
|
|
|
it "assigns a newly created post as @post" do
|
|
post :create, {:post => valid_web_attributes}
|
|
assigns(:post).should be_a(Post)
|
|
assigns(:post).should be_persisted
|
|
end
|
|
|
|
it "redirects to the created post" do
|
|
post :create, {:post => valid_web_attributes}
|
|
response.should redirect_to(Post.last)
|
|
end
|
|
end
|
|
|
|
describe "with invalid params" do
|
|
it "assigns a newly created but unsaved post as @post" do
|
|
# Trigger the behavior that occurs when invalid params are submitted
|
|
Post.any_instance.stub(:save).and_return(false)
|
|
post :create, {:post => {}}
|
|
assigns(:post).should be_a_new(Post)
|
|
end
|
|
|
|
it "re-renders the 'new' template" do
|
|
# Trigger the behavior that occurs when invalid params are submitted
|
|
Post.any_instance.stub(:save).and_return(false)
|
|
post :create, {:post => {}}
|
|
response.should render_template("new")
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "PUT post" do
|
|
describe "with valid params" do
|
|
it "updates the requested post" do
|
|
post = Post.create! valid_attributes
|
|
# Assuming there are no other posts in the database, this
|
|
# specifies that the Post created on the previous line
|
|
# receives the :update_attributes message with whatever params are
|
|
# submitted in the request.
|
|
Post.any_instance.should_receive(:update_attributes).with({'these' => 'params'})
|
|
put :update, {:id => post.slug, :post => {'these' => 'params'}}
|
|
end
|
|
|
|
it "assigns the requested post as @post" do
|
|
post = Post.create! valid_attributes
|
|
put :update, {:id => post.slug, :post => valid_attributes}
|
|
assigns(:post).should eq(post)
|
|
end
|
|
|
|
it "redirects to the post" do
|
|
post = Post.create! valid_attributes
|
|
put :update, {:id => post.slug, :post => valid_attributes}
|
|
response.should redirect_to(post)
|
|
end
|
|
end
|
|
|
|
describe "with invalid params" do
|
|
it "assigns the post as @post" do
|
|
post = Post.create! valid_attributes
|
|
# Trigger the behavior that occurs when invalid params are submitted
|
|
Post.any_instance.stub(:save).and_return(false)
|
|
put :update, {:id => post.slug, :post => {}}
|
|
assigns(:post).should eq(post)
|
|
end
|
|
|
|
it "re-renders the 'edit' template" do
|
|
post = Post.create! valid_attributes
|
|
# Trigger the behavior that occurs when invalid params are submitted
|
|
Post.any_instance.stub(:save).and_return(false)
|
|
put :update, {:id => post.slug, :post => {}}
|
|
response.should render_template("edit")
|
|
end
|
|
end
|
|
end
|
|
|
|
describe "DELETE destroy" do
|
|
it "destroys the requested post" do
|
|
post = Post.create! valid_attributes
|
|
expect {
|
|
delete :destroy, {:id => post.slug}
|
|
}.to change(Post, :count).by(-1)
|
|
end
|
|
|
|
it "redirects to the posts list" do
|
|
post = Post.create! valid_attributes
|
|
delete :destroy, {:id => post.slug}
|
|
response.should redirect_to(posts_url)
|
|
end
|
|
end
|
|
|
|
end
|