OSDN Git Service

t#30169:show, index action create all resource
[pettanr/pettanr.git] / spec / controllers / ground_pictures_controller_spec.rb
index eabcf27..1520253 100644 (file)
@@ -1,6 +1,6 @@
 # -*- encoding: utf-8 -*-
 require 'spec_helper'
-#コマの画像背景
+#絵地
 
 describe GroundPicturesController do
   before do
@@ -54,7 +54,7 @@ describe GroundPicturesController do
         get :index
         response.should be_success 
       end
-      it 'コマの画像背景モデルに一覧を問い合わせている' do
+      it '絵地モデルに一覧を問い合わせている' do
         GroundPicture.should_receive(:list).exactly(1)
         get :index
       end
@@ -73,7 +73,7 @@ describe GroundPicturesController do
           get :index, :format => :json
           lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
         end
-        it 'コマの画像背景モデルにjson一覧出力オプションを問い合わせている' do
+        it '絵地モデルにjson一覧出力オプションを問い合わせている' do
           GroundPicture.should_receive(:list_json_opt).exactly(1)
           get :index, :format => :json
         end
@@ -82,7 +82,7 @@ describe GroundPicturesController do
           json = JSON.parse response.body
           json.should have_at_least(3).items
         end
-        it 'ã\83ªã\82¹ã\83\88ã\81®å\85\88é ­ã\81\8fã\82\89ã\81\84ã\81¯ç\94»å\83\8fè\83\8cæ\99¯っぽいものであって欲しい' do
+        it 'ã\83ªã\82¹ã\83\88ã\81®å\85\88é ­ã\81\8fã\82\89ã\81\84ã\81¯çµµå\9c°っぽいものであって欲しい' do
           get :index, :format => :json
           json = JSON.parse response.body
           json.first.has_key?("panel_id").should be_true
@@ -118,4 +118,74 @@ describe GroundPicturesController do
     end
   end
   
+  describe '単体表示に於いて' do
+    before do
+      sign_in @user
+      @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
+      GroundPicture.stub(:show).and_return(@gp)
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :show, :id => @gp.id
+        response.should be_success
+      end
+      it '絵地モデルに単体取得を問い合わせている' do
+        GroundPicture.should_receive(:show).exactly(1)
+        get :show
+      end
+      it '@ground_pictureにアレを取得している' do
+        get :show, :id => @gp.id
+        assigns(:ground_picture).should eq(@gp)
+      end
+      context 'html形式' do
+        it 'showテンプレートを描画する' do
+          get :show, :id => @gp.id
+          response.should render_template("show")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :show, :id => @gp.id, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+        it '絵地モデルにjson単体出力オプションを問い合わせている' do
+          GroundPicture.should_receive(:show_json_opt).exactly(1)
+          get :show, :id => @gp.id, :format => :json
+        end
+        it 'データがアレになっている' do
+          get :show, :id => @gp.id, :format => :json
+          json = JSON.parse response.body
+          json["panel_id"].should_not be_nil
+          json["z"].should_not be_nil
+          json["picture_id"].should_not be_nil
+        end
+      end
+    end
+    context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
+      context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          get :show, :id => @gp.id
+          response.status.should eq 302
+        end
+        it 'サインインページへ遷移する' do
+          get :show, :id => @gp.id
+          response.body.should redirect_to '/users/sign_in'
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          get :show, :id => @gp.id, :format => :json
+          response.status.should eq 401
+        end
+        it '応答メッセージにUnauthorizedを返す' do
+          get :show, :id => @gp.id, :format => :json
+          response.message.should match(/Unauthorized/)
+        end
+      end
+    end
+  end
+  
 end