OSDN Git Service

t#30473:fix authenticate
[pettanr/pettanr.git] / spec / controllers / ground_colors_controller_spec.rb
index ecbc9bc..fb689b8 100644 (file)
@@ -1,6 +1,6 @@
 # -*- encoding: utf-8 -*-
 require 'spec_helper'
-#コマの間接背景
+#選択色地
 
 describe GroundColorsController do
   before do
@@ -9,12 +9,13 @@ describe GroundColorsController do
     @sp = FactoryGirl.create :system_picture
     @lg = FactoryGirl.create :license_group, :name => 'peta'
     @license = FactoryGirl.create :license, :license_group_id => @lg.id, :system_picture_id => @sp.id
-    @author = @user.author
+    @author = FactoryGirl.create :author, :user_id => @user.id
     @artist = FactoryGirl.create :artist_yas, :author_id => @author.id
     @panel = FactoryGirl.create :panel, :author_id => @author.id
     @color = FactoryGirl.create :color
   end
 
+if MagicNumber['run_mode'] == 1
   describe '一覧表示に於いて' do
     before do
       sign_in @user
@@ -52,7 +53,7 @@ describe GroundColorsController do
         get :index
         response.should be_success 
       end
-      it 'é\96\93æ\8e¥è\83\8cæ\99¯モデルに一覧を問い合わせている' do
+      it 'é\81¸æ\8a\9eè\89²å\9c°モデルに一覧を問い合わせている' do
         GroundColor.should_receive(:list).exactly(1)
         get :index
       end
@@ -71,7 +72,7 @@ describe GroundColorsController do
           get :index, :format => :json
           lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
         end
-        it 'é\96\93æ\8e¥è\83\8cæ\99¯モデルにjson一覧出力オプションを問い合わせている' do
+        it 'é\81¸æ\8a\9eè\89²å\9c°モデルにjson一覧出力オプションを問い合わせている' do
           GroundColor.should_receive(:list_json_opt).exactly(1)
           get :index, :format => :json
         end
@@ -80,7 +81,7 @@ describe GroundColorsController 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¯é\96\93æ\8e¥è\83\8cæ\99¯っぽいものであって欲しい' do
+        it 'ã\83ªã\82¹ã\83\88ã\81®å\85\88é ­ã\81\8fã\82\89ã\81\84ã\81¯é\81¸æ\8a\9eè\89²å\9c°っぽいものであって欲しい' do
           get :index, :format => :json
           json = JSON.parse response.body
           json.first.has_key?("panel_id").should be_true
@@ -114,6 +115,192 @@ describe GroundColorsController do
         end
       end
     end
+    context '作家権限はないが管理者権限があるとき' do
+      before do
+        sign_out @user
+        sign_in @admin
+      end
+      it 'ステータスコード200 OKを返す' do
+        get :index
+        response.should be_success 
+      end
+    end
+  end
+  
+  describe '単体表示に於いて' do
+    before do
+      sign_in @user
+      @gc = FactoryGirl.create :ground_color
+      GroundColor.stub(:show).and_return(@gc)
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :show, :id => @gc.id
+        response.should be_success
+      end
+      it '選択色地モデルに単体取得を問い合わせている' do
+        GroundColor.should_receive(:show).exactly(1)
+        get :show
+      end
+      it '@ground_colorにアレを取得している' do
+        get :show, :id => @gc.id
+        assigns(:ground_color).should eq(@gc)
+      end
+      context 'html形式' do
+        it 'showテンプレートを描画する' do
+          get :show, :id => @gc.id
+          response.should render_template("show")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :show, :id => @gc.id, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+        it '選択色地モデルにjson単体出力オプションを問い合わせている' do
+          GroundColor.should_receive(:show_json_opt).exactly(1)
+          get :show, :id => @gc.id, :format => :json
+        end
+        it 'データがアレになっている' do
+          get :show, :id => @gc.id, :format => :json
+          json = JSON.parse response.body
+          json["panel_id"].should_not be_nil
+          json["z"].should_not be_nil
+          json["color_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 => @gc.id
+          response.status.should eq 302
+        end
+        it 'サインインページへ遷移する' do
+          get :show, :id => @gc.id
+          response.body.should redirect_to '/users/sign_in'
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          get :show, :id => @gc.id, :format => :json
+          response.status.should eq 401
+        end
+        it '応答メッセージにUnauthorizedを返す' do
+          get :show, :id => @gc.id, :format => :json
+          response.message.should match(/Unauthorized/)
+        end
+      end
+    end
+    context '作家権限はないが管理者権限があるとき' do
+      before do
+        sign_out @user
+        sign_in @admin
+      end
+      it 'ステータスコード200 OKを返す' do
+        get :show, :id => @gc.id
+        response.should be_success 
+      end
+    end
   end
   
+else
+  describe '一覧表示に於いて' do
+    before do
+      sign_in @user
+      @gc = FactoryGirl.create :ground_color
+      GroundColor.stub(:list).and_return([@gc, @gc, @gc])
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :index
+        response.should be_success 
+      end
+      context 'html形式' do
+        it 'indexテンプレートを描画する' do
+          get :index
+          response.should render_template("index")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :index, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+      end
+    end
+    context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
+      it 'ステータスコード200 OKを返す' do
+        get :index
+        response.should be_success 
+      end
+      context 'html形式' do
+        it 'indexテンプレートを描画する' do
+          get :index
+          response.should render_template("index")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :index, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+      end
+    end
+  end
+  
+  describe '単体表示に於いて' do
+    before do
+      sign_in @user
+      @gc = FactoryGirl.create :ground_color
+      GroundColor.stub(:show).and_return(@gc)
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :show, :id => @gc.id
+        response.should be_success
+      end
+      context 'html形式' do
+        it 'showテンプレートを描画する' do
+          get :show, :id => @gc.id
+          response.should render_template("show")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :show, :id => @gc.id, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+      end
+    end
+    context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
+      it 'ステータスコード200 OKを返す' do
+        get :show, :id => @gc.id
+        response.should be_success
+      end
+      context 'html形式' do
+        it 'showテンプレートを描画する' do
+          get :show, :id => @gc.id
+          response.should render_template("show")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :show, :id => @gc.id, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+      end
+    end
+  end
+  
+end
 end