OSDN Git Service

t#30200:update i18n devise
[pettanr/pettanr.git] / spec / controllers / authors_controller_spec.rb
index d13828e..da6819d 100644 (file)
@@ -4,12 +4,12 @@ require 'spec_helper'
 
 describe AuthorsController do
   before do
-    FactoryGirl.create :admin
+    @admin =FactoryGirl.create :admin
     @sp = FactoryGirl.create :system_picture
     @lg = FactoryGirl.create :license_group
     @license = FactoryGirl.create :license, :license_group_id => @lg.id, :system_picture_id => @sp.id
     @user = FactoryGirl.create( :user_yas)
-    @author = @user.author
+    @author = FactoryGirl.create :author, :user_id => @user.id
     @artist = FactoryGirl.create :artist_yas, :author_id => @author.id
   end
 
@@ -149,7 +149,7 @@ describe AuthorsController do
         it 'データがアレになっている' do
           get :show, :id => @author.id, :format => :json
           json = JSON.parse response.body
-          json["name"].should match(/name/)
+          json["name"].should match(/test/)
           json["user_id"].should eq @author.user_id
         end
       end
@@ -223,173 +223,370 @@ describe AuthorsController do
     end
   end
   
-  describe '編集フォーム表示に於いて' do\r
-    before do\r
-      sign_in @user\r
-      Author.stub(:edit).and_return(@author)\r
-    end\r
-    context 'つつがなく終わるとき' do\r
-      it 'ステータスコード200 OKを返す' do\r
-        get :edit, :id => @author.id\r
-        response.should be_success \r
-      end\r
-      it '作家モデルに編集取得を問い合わせている' do\r
-        Author.should_receive(:edit).exactly(1)\r
-        get :edit, :id => @author.id\r
-      end\r
+  describe '新規作成フォーム表示に於いて' do
+    before do
+      @new_user = FactoryGirl.create( :user_yas)
+      sign_in @new_user
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :new
+        response.should be_success 
+      end
+      it '@auに新規データを用意している' do
+        get :new
+        assigns(:au).should be_a_new(Author)
+      end
+      it '作家モデルにデフォルト値補充を依頼している' do
+        Author.any_instance.should_receive(:supply_default).exactly(1)
+        get :new
+      end
+      context 'html形式' do
+        it 'newテンプレートを描画する' do
+          get :new
+          response.should render_template("new")
+        end
+      end
+      context 'js形式' do
+        it 'new.jsテンプレートを描画する' do
+          get :new, :format => :js
+          response.should render_template("new")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :new, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+        it '作家モデルにjson単体出力オプションを問い合わせている' do
+          Author.should_receive(:show_json_opt).exactly(1)
+          get :new, :format => :json
+        end
+      end
+    end
+    context '作家権限がないとき' do
+      before do
+        sign_out @new_user
+      end
+      context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          get :new
+          response.status.should eq 302
+        end
+        it 'サインインページへ遷移する' do
+          get :new
+          response.body.should redirect_to '/users/sign_in'
+        end
+      end
+      context 'js形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          get :new, :format => :js
+          response.status.should eq 401
+        end
+        it '応答メッセージにUnauthorizedを返す' do
+          get :new, :format => :js
+          response.message.should match(/Unauthorized/)
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          get :new, :format => :json
+          response.status.should eq 401
+        end
+        it '応答メッセージにUnauthorizedを返す' do
+          get :new, :format => :json
+          response.message.should match(/Unauthorized/)
+        end
+      end
+    end
+  end
+
+  describe '新規作成に於いて' do
+    before do
+      @new_user = FactoryGirl.create( :user_yas)
+      sign_in @new_user
+      @attr = FactoryGirl.attributes_for(:author, :user_id => @new_user.id, :name => 'ken')
+    end
+    context '事前チェックしておく' do
+      it '作家モデルにデフォルト値補充を依頼している' do
+        Author.any_instance.should_receive(:supply_default).exactly(1)
+        post :create, :author => @attr
+      end
+      it '作家モデルにカラム値復元を依頼している' do
+        Author.any_instance.should_receive(:attributes=).exactly(1)
+        post :create, :author => @attr
+      end
+      it '作家モデルに上書き補充を依頼している' do
+        Author.any_instance.should_receive(:overwrite).exactly(1)
+        post :create, :author => @attr
+      end
+      it 'モデルに保存依頼する' do
+        Author.any_instance.should_receive(:save).exactly(1)
+        post :create, :author => @attr
+      end
+    end
+    context 'つつがなく終わるとき' do
+      it "@auに作成された作家を保持していて、それがDBにある" do
+        post :create, :author => @attr
+        assigns(:au).should be_a(Author)
+        assigns(:au).should be_persisted
+      end
+      context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          Author.any_instance.stub(:save).and_return(true)
+          post :create, :author => @attr
+          response.status.should eq 302
+        end
+        it '作成された作家の表示ページへ遷移する' do
+#          Author.any_instance.stub(:save).and_return(true)
+          post :create, :author => @attr
+          response.should redirect_to(Author.last)
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード200 OKを返す' do
+#          Author.any_instance.stub(:save).and_return(true)
+          post :create, :author => @attr, :format => :json
+          response.should be_success 
+        end
+        it '作成された作家をjsonデータで返す' do
+          post :create, :author => @attr, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+        it '作家モデルにjson単体出力オプションを問い合わせている' do
+          Author.should_receive(:show_json_opt).exactly(1)
+          post :create, :author => @attr, :format => :json
+        end
+        it 'データがアレになっている' do
+          post :create, :author => @attr, :format => :json
+          json = JSON.parse response.body
+          json["name"].should match(/ken/)
+        end
+      end
+    end
+    context '作家権限がないとき' do
+      before do
+        sign_out @new_user
+      end
+      context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          post :create, :author => @attr
+          response.status.should eq 302
+        end
+        it 'サインインページへ遷移する' do
+          post :create, :author => @attr
+          response.body.should redirect_to '/users/sign_in'
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          post :create, :author => @attr, :format => :json
+          response.status.should eq 401
+        end
+        it '応答メッセージにUnauthorizedを返す' do
+          post :create, :author => @attr, :format => :json
+          response.message.should match(/Unauthorized/)
+        end
+      end
+    end
+    context '検証、保存に失敗した' do
+      before do
+        Author.any_instance.stub(:save).and_return(false)
+      end
+      it "未保存の作家を保持している" do
+        post :create, :author => @attr
+        assigns(:au).should be_a_new(Author)
+      end
+      context 'html形式' do
+        it 'ステータスコード200 OKを返す' do
+          post :create, :author => @attr
+          response.status.should eq 200
+        end
+        it '新規ページを描画する' do
+          post :create, :author => @attr
+          response.should render_template("new")
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード422 unprocessable_entity を返す' do
+          post :create, :author => @attr, :format => :json
+          response.status.should eq 422
+        end
+        it '応答メッセージUnprocessable Entityを返す' do
+          post :create, :author => @attr, :format => :json
+          response.message.should match(/Unprocessable/)
+        end
+      end
+    end
+  end
+
+  describe '編集フォーム表示に於いて' do
+    before do
+      sign_in @user
+      Author.stub(:edit).and_return(@author)
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :edit, :id => @author.id
+        response.should be_success 
+      end
+      it '作家モデルに編集取得を問い合わせている' do
+        Author.should_receive(:edit).exactly(1)
+        get :edit, :id => @author.id
+      end
       #@authorだとログイン中のアカウントと干渉してしまう。
-      it '@auにデータを用意している' do\r
-        get :edit, :id => @author.id\r
-        assigns(:au).should eq @author\r
-      end\r
-      context 'html形式' do\r
-        it 'editテンプレートを描画する' do\r
-          get :edit, :id => @author.id\r
-          response.should render_template("edit")\r
-        end\r
-      end\r
-      context 'js形式' do\r
-        it 'edit.jsテンプレートを描画する' do\r
-          get :edit, :id => @author.id, :format => :js\r
-          response.should render_template("edit")\r
-        end\r
-      end\r
-    end\r
-    context '作家権限がないとき' do\r
-      before do\r
-        sign_out @user\r
-      end\r
-      context 'html形式' do\r
-        it 'ステータスコード302 Foundを返す' do\r
-          get :edit, :id => @author.id\r
-          response.status.should eq 302\r
-        end\r
-        it 'サインインページへ遷移する' do\r
-          get :edit, :id => @author.id\r
-          response.body.should redirect_to '/users/sign_in'\r
-        end\r
-      end\r
-      context 'js形式' do\r
-        it 'ステータスコード401 Unauthorizedを返す' do\r
-          get :edit, :id => @author.id, :format => :js\r
-          response.status.should eq 401\r
-        end\r
-        it '応答メッセージにUnauthorizedを返す' do\r
-          get :edit, :id => @author.id, :format => :js\r
-          response.message.should match(/Unauthorized/)\r
-        end\r
-      end\r
-    end\r
-  end\r
-\r
-  describe '更新に於いて' do\r
-    before do\r
+      it '@auにデータを用意している' do
+        get :edit, :id => @author.id
+        assigns(:au).should eq @author
+      end
+      context 'html形式' do
+        it 'editテンプレートを描画する' do
+          get :edit, :id => @author.id
+          response.should render_template("edit")
+        end
+      end
+      context 'js形式' do
+        it 'edit.jsテンプレートを描画する' do
+          get :edit, :id => @author.id, :format => :js
+          response.should render_template("edit")
+        end
+      end
+    end
+    context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
+      context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          get :edit, :id => @author.id
+          response.status.should eq 302
+        end
+        it 'サインインページへ遷移する' do
+          get :edit, :id => @author.id
+          response.body.should redirect_to '/users/sign_in'
+        end
+      end
+      context 'js形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          get :edit, :id => @author.id, :format => :js
+          response.status.should eq 401
+        end
+        it '応答メッセージにUnauthorizedを返す' do
+          get :edit, :id => @author.id, :format => :js
+          response.message.should match(/Unauthorized/)
+        end
+      end
+    end
+  end
+
+  describe '更新に於いて' do
+    before do
       @attr = @author.attributes
-      @attr['name'] = 'ryu'\r
-      sign_in @user\r
-    end\r
-    context '事前チェックしておく' do\r
-      it '作家モデルに編集取得を問い合わせている' do\r
-        Author.stub(:edit).with(any_args()).and_return @author\r
-        Author.should_receive(:edit).exactly(1)\r
-        put :update, :id => @author.id, :author => @attr\r
-      end\r
-      it 'モデルにpostデータ転送を依頼する' do\r
-        Author.any_instance.stub(:attributes=).with(any_args)\r
-        Author.any_instance.should_receive(:attributes=).exactly(1)\r
-        put :update, :id => @author.id, :author => @attr\r
-      end\r
-      it 'モデルに上書き補充を依頼する' do\r
-        Author.any_instance.stub(:overwrite).with(any_args)\r
-        Author.any_instance.should_receive(:overwrite).exactly(1)\r
-        put :update, :id => @author.id, :author => @attr\r
-      end\r
-      it 'モデルに更新を依頼する' do\r
-        Author.any_instance.stub(:save).with(any_args).and_return true\r
-        Author.any_instance.should_receive(:save).exactly(1)\r
-        put :update, :id => @author.id, :author => @attr\r
-      end\r
-      it '@auにアレを取得している' do\r
-        put :update, :id => @author.id, :author => @attr\r
-        assigns(:au).should eq @author\r
-      end\r
-    end\r
-    context 'つつがなく終わるとき' do\r
-      it '更新される' do\r
-        put :update, :id => @author.id, :author => @attr\r
-        Author.find(@author.id).name.should eq 'ryu'\r
-      end\r
-      context 'html形式' do\r
-        it 'ステータスコード302 Foundを返す' do\r
-          Author.any_instance.stub(:save).with(any_args()).and_return(true)\r
-          put :update, :id => @author.id, :author => @attr\r
-          response.status.should eq 302\r
-        end\r
-        it '更新された作家の表示ページへ遷移する' do\r
-          put :update, :id => @author.id, :author => @attr\r
-          response.should redirect_to(@author)\r
-        end\r
-      end\r
-      context 'json形式' do\r
-        it 'ステータスコード200 OKを返す' do\r
-          Author.any_instance.stub(:save).with(any_args()).and_return(true)\r
-          put :update, :id => @author.id, :author => @attr, :format => :json\r
-          response.should be_success \r
-        end\r
-        it 'ページ本体は特に返さない' do\r
-          Author.any_instance.stub(:save).with(any_args()).and_return(true)\r
-          put :update, :id => @author.id, :author => @attr, :format => :json\r
-          response.body.should match /./\r
-        end\r
-      end\r
-    end\r
-    context '作家権限がないとき' do\r
-      before do\r
-        sign_out @user\r
-      end\r
-      it 'ステータスコード302 Foundを返す' do\r
-        put :update, :id => @author.id, :author => @attr\r
-        response.status.should eq 302\r
-      end\r
-      context 'html形式' do\r
-        it 'サインインページへ遷移する' do\r
-          put :update, :id => @author.id, :author => @attr\r
-          response.body.should redirect_to '/users/sign_in'\r
-        end\r
-      end\r
-      context 'json形式' do\r
-        it '応答メッセージにUnauthorizedを返す' do\r
-          put :update, :id => @author.id, :author => @attr, :format => :json\r
-          response.message.should match(/Unauthorized/)\r
-        end\r
-      end\r
-    end\r
-    context '検証、保存に失敗したとき' do\r
-      before do\r
-        Author.any_instance.stub(:save).and_return(false)\r
-      end\r
-      context 'html形式' do\r
-        it 'ステータスコード200 Okを返す' do\r
-          put :update, :id => @author.id, :author => @attr\r
-          response.status.should eq 200\r
-        end\r
-        it '編集ページを描画する' do\r
-          put :update, :id => @author.id, :author => @attr\r
-          response.should render_template("edit")\r
-        end\r
-      end\r
-      context 'json形式' do\r
-        it 'ステータスコード422 unprocessable_entity を返す' do\r
-          Author.any_instance.stub(:save).and_return(false)\r
-          put :update, :id => @author.id, :author => @attr, :format => :json\r
-          response.status.should eq 422\r
-        end\r
-        it '応答メッセージUnprocessable Entityを返す' do\r
-          put :update, :id => @author.id, :author => @attr, :format => :json\r
-          response.message.should match(/Unprocessable/)\r
-        end\r
-      end\r
-    end\r
-  end\r
+      @attr['name'] = 'ryu'
+      sign_in @user
+    end
+    context '事前チェックしておく' do
+      it '作家モデルに編集取得を問い合わせている' do
+        Author.stub(:edit).with(any_args()).and_return @author
+        Author.should_receive(:edit).exactly(1)
+        put :update, :id => @author.id, :author => @attr
+      end
+      it 'モデルにpostデータ転送を依頼する' do
+        Author.any_instance.stub(:attributes=).with(any_args)
+        Author.any_instance.should_receive(:attributes=).exactly(1)
+        put :update, :id => @author.id, :author => @attr
+      end
+      it 'モデルに上書き補充を依頼する' do
+        Author.any_instance.stub(:overwrite).with(any_args)
+        Author.any_instance.should_receive(:overwrite).exactly(1)
+        put :update, :id => @author.id, :author => @attr
+      end
+      it 'モデルに更新を依頼する' do
+        Author.any_instance.stub(:save).with(any_args).and_return true
+        Author.any_instance.should_receive(:save).exactly(1)
+        put :update, :id => @author.id, :author => @attr
+      end
+      it '@auにアレを取得している' do
+        put :update, :id => @author.id, :author => @attr
+        assigns(:au).should eq @author
+      end
+    end
+    context 'つつがなく終わるとき' do
+      it '更新される' do
+        put :update, :id => @author.id, :author => @attr
+        Author.find(@author.id).name.should eq 'ryu'
+      end
+      context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          Author.any_instance.stub(:save).with(any_args()).and_return(true)
+          put :update, :id => @author.id, :author => @attr
+          response.status.should eq 302
+        end
+        it '更新された作家の表示ページへ遷移する' do
+          put :update, :id => @author.id, :author => @attr
+          response.should redirect_to(@author)
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード200 OKを返す' do
+          Author.any_instance.stub(:save).with(any_args()).and_return(true)
+          put :update, :id => @author.id, :author => @attr, :format => :json
+          response.should be_success 
+        end
+        it 'ページ本体は特に返さない' do
+          Author.any_instance.stub(:save).with(any_args()).and_return(true)
+          put :update, :id => @author.id, :author => @attr, :format => :json
+          response.body.should match /./
+        end
+      end
+    end
+    context '作家権限がないとき' do
+      before do
+        sign_out @user
+      end
+      it 'ステータスコード302 Foundを返す' do
+        put :update, :id => @author.id, :author => @attr
+        response.status.should eq 302
+      end
+      context 'html形式' do
+        it 'サインインページへ遷移する' do
+          put :update, :id => @author.id, :author => @attr
+          response.body.should redirect_to '/users/sign_in'
+        end
+      end
+      context 'json形式' do
+        it '応答メッセージにUnauthorizedを返す' do
+          put :update, :id => @author.id, :author => @attr, :format => :json
+          response.message.should match(/Unauthorized/)
+        end
+      end
+    end
+    context '検証、保存に失敗したとき' do
+      before do
+        Author.any_instance.stub(:save).and_return(false)
+      end
+      context 'html形式' do
+        it 'ステータスコード200 Okを返す' do
+          put :update, :id => @author.id, :author => @attr
+          response.status.should eq 200
+        end
+        it '編集ページを描画する' do
+          put :update, :id => @author.id, :author => @attr
+          response.should render_template("edit")
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード422 unprocessable_entity を返す' do
+          Author.any_instance.stub(:save).and_return(false)
+          put :update, :id => @author.id, :author => @attr, :format => :json
+          response.status.should eq 422
+        end
+        it '応答メッセージUnprocessable Entityを返す' do
+          put :update, :id => @author.id, :author => @attr, :format => :json
+          response.message.should match(/Unprocessable/)
+        end
+      end
+    end
+  end
 
 end