OSDN Git Service

fix comic test
authoryasushiito <yasushiito@git.sourceforge.jp>
Sat, 31 Mar 2012 06:12:59 +0000 (15:12 +0900)
committeryasushiito <yasushiito@git.sourceforge.jp>
Sat, 31 Mar 2012 06:12:59 +0000 (15:12 +0900)
app/controllers/comics_controller.rb
app/models/comic.rb
spec/controllers/comics_controller_spec.rb
spec/controllers/original_pictures_controller_spec.rb

index 9ab0eb4..adad9fa 100644 (file)
@@ -42,10 +42,9 @@ class ComicsController < ApplicationController
   # GET /comics/1
   # GET /comics/1.json
   def show
-    @comic = Comic.show(params[:id])
+    @comic = Comic.show(params[:id], @author)
 
     respond_to do |format|
-      raise ActiveRecord::Forbidden unless @comic.visible?(@author)
       format.html # show.html.erb
       format.json { render json: @comic.to_json(Comic.show_json_include_opt) }
     end
@@ -103,10 +102,9 @@ class ComicsController < ApplicationController
   # GET /comics/1/edit
   # GET /comics/1.js/edit
   def edit
-    @comic = Comic.find(params[:id])
+    @comic = Comic.show(params[:id], @author)
     @comic.supply_default
     respond_to do |format|
-      raise ActiveRecord::Forbidden unless @comic.own?(@author)
       format.html 
       format.js
     end
@@ -122,7 +120,7 @@ class ComicsController < ApplicationController
     respond_to do |format|
       if @comic.save
         format.html { redirect_to @comic, notice: 'Comic was successfully created.' }
-        format.json { render json: Comic.show(@comic.id).to_json(Comic.show_json_include_opt), status: :created, location: @comic }
+        format.json { render json: Comic.show(@comic.id, @author).to_json(Comic.show_json_include_opt), status: :created, location: @comic }
       else
         format.html { render action: "new" }
         format.json { render json: @comic.errors, status: :unprocessable_entity }
@@ -134,7 +132,7 @@ class ComicsController < ApplicationController
   # PUT /comics/1.json
   def update
     params[:comic].merge! author_id: @author.id
-    @comic = Comic.find(params[:id])
+    @comic = Comic.show(params[:id], @author)
     respond_to do |format|
       raise ActiveRecord::Forbidden unless @comic.own?(@author)
       if @comic.update_attributes(params[:comic])
index f4fb836..e544d71 100644 (file)
@@ -69,8 +69,10 @@ class Comic < ActiveRecord::Base
     {:include => :author}
   end
   
-  def self.show cid, opt = {}
-    Comic.find(cid, :include => self.show_include_opt(opt))
+  def self.show cid, au, opt = {}
+    c = Comic.find(cid, :include => self.show_include_opt(opt))
+    raise ActiveRecord::Forbidden unless c.visible?(au)
+    c
   end
   
   def self.show_include_opt opt = {}
index 3f02873..40446c2 100644 (file)
@@ -2,25 +2,16 @@
 require 'spec_helper'
 
 describe ComicsController do
-  # This should return the minimal set of attributes required to create a valid
-  # Comic. As you add validations to Comic, be sure to
-  # update the return value of this method accordingly.
   before do
     Factory :admin
-      @user = Factory :user_yas\r
-      @author = @user.author    #ユーザ作成時に連動して作成される
+    @user = Factory :user_yas\r
+    @author = @user.author    #ユーザ作成時に連動して作成される
   end
   
-  def valid_attributes
-    {:title => 'test comic', :width => 100, :height => 50, :visible => 0, :editable => 0}
-  end
-
   describe '一覧表示に於いて' do
     before do
-      Factory :normal_comic, :author_id => @user.author.id
-      Factory :visible_comic, :author_id => @user.author.id
-      Factory:editable_comic, :author_id => @user.author.id
-      Factory :hidden_comic, :author_id => @user.author.id
+      @comic = Factory :normal_comic, :author_id => @user.author.id
+      Comic.stub(:list).and_return([@comic, @comic, @comic])
       sign_in @user
     end
     context '事前チェックする' do
@@ -28,12 +19,20 @@ describe ComicsController do
         get :index, :page => 5
         assigns(:page).should eq 5
       end
+      it '省略されると@pageに1値が入る' do
+        get :index
+        assigns(:page).should eq 1
+      end
     end
     context 'つつがなく終わるとき' do
       it 'ステータスコード200 OKを返す' do
         get :index
         response.should be_success 
       end
+      it 'コミックモデルに一覧を問い合わせている' do
+        Comic.should_receive(:list).exactly(1)\r
+        get :index
+      end
       it '@comicsにリストを取得している' do
         get :index
         assigns(:comics).should have_at_least(3).items
@@ -62,30 +61,25 @@ describe ComicsController do
       end
     end
     context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
       context 'html形式' do
         it 'ステータスコード302 Foundを返す' do
-          sign_out @user
           get :index
           response.status.should eq 302
         end
         it 'サインインページへ遷移する' do
-          sign_out @user
           get :index
           response.should redirect_to '/users/sign_in'
         end
       end
       context 'json形式' do
         it 'ステータスコード401 Unauthorizedを返す' do
-          sign_out @user
-            get :index, :format => :json
-          response.status.should eq 401
-        end
-        it 'jsonデータを返す' do
           get :index, :format => :json
-          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+          response.status.should eq 401
         end
         it '応答メッセージにUnauthorizedを返す' do
-          sign_out @user
           get :index, :format => :json\r
           response.message.should match(/Unauthorized/)
         end
@@ -96,6 +90,7 @@ describe ComicsController do
   describe '単体表示に於いて' do
     before do
       @comic = Factory :normal_comic, :author_id => @user.author.id
+      Comic.stub(:show).and_return(@comic)
       sign_in @user
     end
     context 'つつがなく終わるとき' do
@@ -103,6 +98,10 @@ describe ComicsController do
         get :show, :id => @comic.id
         response.should be_success
       end
+      it 'コミックモデルに単体取得を問い合わせている' do
+        Comic.should_receive(:show).exactly(1)\r
+        get :show
+      end
       it '@comicにアレを取得している' do
         get :show, :id => @comic.id
         assigns(:comic).id.should eq(@comic.id)
@@ -126,26 +125,31 @@ describe ComicsController do
       end
     end
     context '作家権限がないとき' do
-      it 'ステータスコード302 Foundを返す' do
+      before do
         sign_out @user
-        get :show, :id => @comic.id
-        response.status.should eq 302
       end
       context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          get :show, :id => @comic.id
+          response.status.should eq 302
+        end
         it 'サインインページへ遷移する' do
-          sign_out @user
           get :show, :id => @comic.id
           response.body.should redirect_to '/users/sign_in'
         end
       end
       context 'json形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          get :show, :id => @comic.id, :format => :json
+          response.status.should eq 401
+        end
         it '応答メッセージにUnauthorizedを返す' do
-          sign_out @user
           get :show, :id => @comic.id, :format => :json
           response.message.should match(/Unauthorized/)
         end
       end
     end
+=begin
     context '対象コミックがないとき' do
       context 'html形式' do
         it '例外404 not_foundを返す' do
@@ -182,6 +186,7 @@ describe ComicsController do
         end
       end
     end
+=end
   end
 
   describe 'コミック数取得に於いて' do
@@ -221,8 +226,8 @@ describe ComicsController do
         get :new
         assigns(:comic).should be_a_new(Comic)
       end
-      it '@comicにデフォルト値セットが施されている' do
-        Comic.any_instance.should_receive(:supply_default).exactly(1)
+      it 'コミックモデルにデフォルト値補充を依頼している' do
+        Comic.any_instance.should_receive(:supply_default).exactly(1)\r
         get :new
       end
       context 'html形式' do
@@ -239,26 +244,25 @@ describe ComicsController do
       end
     end
     context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
       context 'html形式' do
         it 'ステータスコード302 Foundを返す' do
-          sign_out @user
           get :new
           response.status.should eq 302
         end
         it 'サインインページへ遷移する' do
-          sign_out @user
           get :new
           response.body.should redirect_to '/users/sign_in'
         end
       end
       context 'js形式' do
         it 'ステータスコード401 Unauthorizedを返す' do
-          sign_out @user
           get :new, :format => :js
           response.status.should eq 401
         end
         it '応答メッセージにUnauthorizedを返す' do
-          sign_out @user
           get :new, :format => :js
           response.message.should match(/Unauthorized/)
         end
@@ -275,23 +279,29 @@ describe ComicsController do
         Comic.any_instance.should_receive(:save).exactly(1)
         post :create, :comic => Factory.attributes_for(:normal_comic)
       end
-      it 'ステータスコード302 Foundを返す' do
-        Comic.any_instance.stub(:save).and_return(true)
-        post :create, :comic => Factory.attributes_for(:normal_comic)
-        response.status.should eq 302
-      end
       it "@comicに作成されたコミックを保持していて、それがDBにある" do
         post :create, :comic => Factory.attributes_for(:normal_comic)
         assigns(:comic).should be_a(Comic)
         assigns(:comic).should be_persisted
       end
       context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          Comic.any_instance.stub(:save).and_return(true)
+          post :create, :comic => Factory.attributes_for(:normal_comic)
+          response.status.should eq 302
+        end
         it '作成されたコミックの表示ページへ遷移する' do
+#          Comic.any_instance.stub(:save).and_return(true)
           post :create, :comic => Factory.attributes_for(:normal_comic)
           response.should redirect_to(Comic.last)
         end
       end
       context 'json形式' do
+        it 'ステータスコード200 OKを返す' do
+#          Comic.any_instance.stub(:save).and_return(true)
+          post :create, :comic => Factory.attributes_for(:normal_comic), :format => :json
+          response.should be_success 
+        end
         it '作成されたコミックをjsonデータで返す' do
           post :create, :comic => Factory.attributes_for(:normal_comic), :format => :json
           lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
@@ -304,60 +314,56 @@ describe ComicsController do
       end
     end
     context '作家権限がないとき' do
-      it 'ステータスコード302 Foundを返す' do
+      before do
         sign_out @user
-        post :create, :comic => Factory.attributes_for(:normal_comic)
-        response.status.should eq 302
       end
       context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          post :create, :comic => Factory.attributes_for(:normal_comic)
+          response.status.should eq 302
+        end
         it 'サインインページへ遷移する' do
-          sign_out @user
           post :create, :comic => Factory.attributes_for(:normal_comic)
           response.body.should redirect_to '/users/sign_in'
         end
       end
       context 'json形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          post :create, :comic => Factory.attributes_for(:normal_comic), :format => :json
+          response.status.should eq 401
+        end
         it '応答メッセージにUnauthorizedを返す' do
-          sign_out @user
           post :create, :comic => Factory.attributes_for(:normal_comic), :format => :json
           response.message.should match(/Unauthorized/)
         end
       end
     end
     context '検証、保存に失敗した' do
-      it "未保存のコミックを保持している" do
+      before do
         Comic.any_instance.stub(:save).and_return(false)
+      end
+      it "未保存のコミックを保持している" do
         post :create, :comic => {}
         assigns(:comic).should be_a_new(Comic)
       end
       context 'html形式' do
         it 'ステータスコード200 OKを返す' do
-          Comic.any_instance.stub(:save).and_return(false)
           post :create, :comic => {}
           response.status.should eq 200
         end
         it '新規ページを描画する' do
-          Comic.any_instance.stub(:save).and_return(false)
           post :create, :comic => {}
           response.should render_template("new")
         end
       end
       context 'json形式' do
         it 'ステータスコード422 unprocessable_entity を返す' do
-          Comic.any_instance.stub(:save).and_return(false)
           post :create, :comic => {}, :format => :json
           response.status.should eq 422
         end
-        it 'jsonデータを返す' do
-          Comic.any_instance.stub(:save).and_return(false)
+        it '応答メッセージUnprocessable Entityを返す' do
           post :create, :comic => {}, :format => :json
-          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
-        end
-        it 'データがアレになっている' do
-          Comic.any_instance.stub(:save).and_return(false)
-          post :create, :comic => {}, :format => :json
-          json = JSON.parse response.body
-          json.should eq( {})
+          response.message.should match(/Unprocessable/)
         end
       end
     end
@@ -367,20 +373,21 @@ describe ComicsController do
     before do
       @comic = Factory :normal_comic, :author_id => @user.author.id
       sign_in @user
+      Comic.stub(:show).and_return(@comic)
     end
     context 'つつがなく終わるとき' do
       it 'ステータスコード200 OKを返す' do
         get :edit, :id => @comic.id
         response.should be_success 
       end
+      it 'コミックモデルに単体取得を問い合わせている' do
+        Comic.should_receive(:show).exactly(1)\r
+        get :edit, :id => @comic.id
+      end
       it '@comicにデータを用意している' do
         get :edit, :id => @comic.id
         assigns(:comic).should eq @comic
       end
-      it '@comicにデフォルト値セットが施されている' do
-        Comic.any_instance.should_receive(:supply_default).exactly(1)
-        get :edit, :id => @comic.id\r
-      end
       context 'html形式' do
         it 'editテンプレートを描画する' do
           get :edit, :id => @comic.id
@@ -395,65 +402,30 @@ describe ComicsController do
       end
     end
     context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
       context 'html形式' do
         it 'ステータスコード302 Foundを返す' do
-          sign_out @user
           get :edit, :id => @comic.id
           response.status.should eq 302
         end
         it 'サインインページへ遷移する' do
-          sign_out @user
           get :edit, :id => @comic.id
           response.body.should redirect_to '/users/sign_in'
         end
       end
       context 'js形式' do
         it 'ステータスコード401 Unauthorizedを返す' do
-          sign_out @user
           get :edit, :id => @comic.id, :format => :js
           response.status.should eq 401
         end
         it '応答メッセージにUnauthorizedを返す' do
-          sign_out @user
           get :edit, :id => @comic.id, :format => :js
           response.message.should match(/Unauthorized/)
         end
       end
     end
-    context '対象コミックがないとき' do
-      context 'html形式' do
-        it '例外404 not_foundを返す' do
-          lambda{\r
-            get :edit, :id => 0\r
-          }.should raise_error(ActiveRecord::RecordNotFound)
-        end
-      end
-      context 'js形式' do
-        it '例外404 not_foundを返す' do
-          lambda{ \r
-            get :edit, :id => 0, :format => :js\r
-          }.should raise_error(ActiveRecord::RecordNotFound)
-        end
-      end
-    end
-    context '自分のコミックでないとき' do
-      context 'html形式' do
-        it '例外403 forbiddenを返す' do
-          other = Factory :visible_comic, :author_id => 0
-          lambda{\r
-            get :edit, :id => other.id
-          }.should raise_error(ActiveRecord::Forbidden)
-        end
-      end
-      context 'json形式' do
-        it '例外403 forbiddenを返す' do
-          other = Factory :visible_comic, :author_id => 0
-          lambda{\r
-            get :edit, :id => other.id
-          }.should raise_error(ActiveRecord::Forbidden)
-        end
-      end
-    end
   end
 
   describe '更新に於いて' do
@@ -462,6 +434,11 @@ describe ComicsController do
       sign_in @user
     end
     context '事前チェックしておく' do
+      it 'コミックモデルに単体取得を問い合わせている' do
+        Comic.stub(:show).with(any_args()).and_return @comic\r
+        Comic.should_receive(:show).exactly(1)\r
+        put :update, :id => @comic.id, :comic => Factory.attributes_for(:normal_comic)
+      end
       it 'モデルに更新を依頼する' do
         Comic.any_instance.should_receive(:update_attributes).with(any_args)
         put :update, :id => @comic.id, :comic => Factory.attributes_for(:normal_comic)
@@ -472,22 +449,27 @@ describe ComicsController do
       end
     end
     context 'つつがなく終わるとき' do
-      it 'ステータスコード302 Foundを返す' do
-        Comic.any_instance.stub(:update_attributes).with(any_args()).and_return(true)
-        put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)
-        response.status.should eq 302
-      end
       it '更新される' do\r
         put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)\r
         Comic.find(@comic.id).visible.should eq 0
       end
       context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          Comic.any_instance.stub(:update_attributes).with(any_args()).and_return(true)
+          put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)
+          response.status.should eq 302
+        end
         it '更新されたコミックの表示ページへ遷移する' do
           put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)
           response.should redirect_to(@comic)
         end
       end
       context 'json形式' do
+        it 'ステータスコード200 OKを返す' do
+          Comic.any_instance.stub(:update_attributes).with(any_args()).and_return(true)
+          put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic), :format => :json
+          response.should be_success 
+        end
         it 'ページ本体は特に返さない' do
           Comic.any_instance.stub(:update_attributes).with(any_args()).and_return(true)
           put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic), :format => :json
@@ -496,64 +478,36 @@ describe ComicsController do
       end
     end
     context '作家権限がないとき' do
-      it 'ステータスコード302 Foundを返す' do
+      before do
         sign_out @user
+      end
+      it 'ステータスコード302 Foundを返す' do
         put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)
         response.status.should eq 302
       end
       context 'html形式' do
         it 'サインインページへ遷移する' do
-          sign_out @user
           put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)
           response.body.should redirect_to '/users/sign_in'
         end
       end
       context 'json形式' do
         it '応答メッセージにUnauthorizedを返す' do
-          sign_out @user
           put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic), :format => :json
           response.message.should match(/Unauthorized/)
         end
       end
     end
-    context '対象コミックがないとき' do
-      context 'html形式' do
-        it '例外404 not_foundを返す' do
-          lambda{\r
-            put :update, :id => 0, :comic => Factory.attributes_for(:hidden_comic)
-          }.should raise_error(ActiveRecord::RecordNotFound)
-        end
-      end
-      context 'json形式' do
-        it '例外404 not_foundを返す' do
-          lambda{ \r
-            put :update, :id => 0, :comic => Factory.attributes_for(:hidden_comic), :format => :json
-          }.should raise_error(ActiveRecord::RecordNotFound)
-        end
+    context '検証、保存に失敗したとき' do
+      before do
+        Comic.any_instance.stub(:update_attributes).and_return(false)
       end
-    end
-    context '他人のコミックを編集しようとしたとき' do
       context 'html形式' do
-        it '例外403 forbiddenを返す' do
-          other = Factory :visible_comic, :author_id => 0
-          lambda{\r
-            put :update, :id => other.id, :comic => Factory.attributes_for(:hidden_comic)
-          }.should raise_error(ActiveRecord::Forbidden)
-        end
-      end
-      context 'json形式' do
-        it '例外403 forbiddenを返す' do
-          other = Factory :visible_comic, :author_id => 0
-          lambda{\r
-            put :update, :id => other.id, :comic => Factory.attributes_for(:hidden_comic), :format => :json
-          }.should raise_error(ActiveRecord::Forbidden)
+        it 'ステータスコード200 Okを返す' do
+          put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)
+          response.status.should eq 200
         end
-      end
-    end
-    context '検証、保存に失敗したとき' do
-      context 'html形式' do
         it '編集ページを描画する' do
-          Comic.any_instance.stub(:update_attributes).and_return(false)
           put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic)
           response.should render_template("edit")
         end
@@ -564,18 +518,9 @@ describe ComicsController do
           put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic), :format => :json
           response.status.should eq 422
         end
-        it 'jsonデータを返す' do
-          Comic.any_instance.stub(:update_attributes).and_return(false)
+        it '応答メッセージUnprocessable Entityを返す' do
           put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic), :format => :json
-          lambda{\r
-            JSON.parse(response.body)\r
-          }.should_not raise_error(JSON::ParserError)
-        end
-        it 'データがアレになっている' do
-          Comic.any_instance.stub(:update_attributes).and_return(false)
-          put :update, :id => @comic.id, :comic => Factory.attributes_for(:hidden_comic), :format => :json
-          json = JSON.parse response.body
-          json.should eq( {})\r
+          response.message.should match(/Unprocessable/)
         end
       end
     end
index 5500ba5..8c57dda 100644 (file)
@@ -496,7 +496,7 @@ describe OriginalPicturesController do
       end
       it '原画モデルに単体取得を問い合わせている' do
         OriginalPicture.should_receive(:show).exactly(1)\r
-        get :show
+        get :edit, :id => @pic.id
       end
       it '@original_pictureにデータを用意している' do
         get :edit, :id => @pic.id