OSDN Git Service

t#31223:add them contents list for author and artist
[pettanr/pettanr.git] / spec / controllers / artists_controller_spec.rb
index d1f7a3a..f36d754 100644 (file)
@@ -256,6 +256,134 @@ if MagicNumber['run_mode'] == 1
 =end
   end
   
+  describe '対象絵師の素材一覧表示に於いて' do
+    before do
+      @other_user = FactoryGirl.create( :user_yas)
+      @other_author = FactoryGirl.create :author, :user_id => @other_user.id
+      @other_artist = FactoryGirl.create :artist_yas, :author_id => @other_author.id
+      @op = FactoryGirl.create :original_picture, :artist_id => @other_artist.id
+      @p = FactoryGirl.create :picture, :original_picture_id => @op.id, :license_id => @license.id, :artist_id => @other_artist.id
+      @rp = FactoryGirl.create :resource_picture, :artist_id => @other_artist.id, :license_id => @license.id, :original_picture_id => @op.id, :picture_id => @p.id
+      ResourcePicture.stub(:mylist).and_return([@rp, @rp, @rp])
+      sign_in @user
+    end
+    context 'パラメータpageについて' do
+      it '@pageに値が入る' do
+        get :resource_pictures, :id => @other_artist.id, :page => 5
+        assigns(:page).should eq 5
+      end
+      it '省略されると@pageに1値が入る' do
+        get :resource_pictures, :id => @other_artist.id
+        assigns(:page).should eq 1
+      end
+      it '与えられたpage_sizeがセットされている' do
+        get :resource_pictures, :id => @other_artist.id, :page_size => 15
+        assigns(:page_size).should eq 15
+      end
+      it '省略されると@page_sizeにデフォルト値が入る' do
+        get :resource_pictures, :id => @other_artist.id
+        assigns(:page_size).should eq Author.default_resource_picture_page_size
+      end
+      it '最大を超えると@page_sizeにデフォルト最大値が入る' do
+        get :resource_pictures, :id => @other_artist.id, :page_size => 1500
+        assigns(:page_size).should eq Author.resource_picture_max_page_size
+      end
+      it '不正な値が入ると@page_sizeにデフォルト最大値が入る' do
+        get :resource_pictures, :id => @other_artist.id, :page_size => 0
+        assigns(:page_size).should eq Author.default_resource_picture_page_size
+      end
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :resource_pictures, :id => @other_artist.id
+        response.should be_success 
+      end
+      it '絵師モデルに単体取得を問い合わせている' do
+        Artist.should_receive(:show).exactly(1)
+        get :resource_pictures, :id => @other_artist.id
+      end
+      it '素材モデルに一覧を問い合わせている' do
+        ResourcePicture.should_receive(:mylist).exactly(1)
+        get :resource_pictures, :id => @other_artist.id
+      end
+      it '@resource_picturesにリストを取得している' do
+        get :resource_pictures, :id => @other_artist.id
+        assigns(:resource_pictures).should have_at_least(3).items
+      end
+      context 'html形式' do
+        it 'resource_pictureテンプレートを描画する' do
+          get :resource_pictures, :id => @other_artist.id
+          response.should render_template("resource_pictures")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :resource_pictures, :id => @other_artist.id, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+        it '素材モデルにコマリストのjson出力を問い合わせている' do
+          ResourcePicture.should_receive(:list_json_opt).exactly(1)
+          get :resource_pictures, :id => @other_artist.id, :format => :json
+        end
+        it 'データがリスト構造になっている' do
+          get :resource_pictures, :id => @other_artist.id, :format => :json
+          json = JSON.parse response.body
+          json.should have_at_least(3).items
+        end
+        it 'リストの先頭くらいは素材っぽいものであって欲しい' do
+          get :resource_pictures, :id => @other_artist.id, :format => :json
+          json = JSON.parse response.body
+          json.first.has_key?("original_picture_id").should be_true
+          json.first.has_key?("license_id").should be_true
+        end
+      end
+    end
+    context 'ユーザ権限がないとき' do
+      before do
+        sign_out @user
+      end
+      context 'html形式' do
+        it 'ステータスコード302 Foundを返す' do
+          get :resource_pictures, :id => @other_artist.id
+          response.status.should eq 302
+        end
+        it 'サインインページへ遷移する' do
+          get :resource_pictures, :id => @other_artist.id
+          response.should redirect_to '/users/sign_in'
+        end
+      end
+      context 'json形式' do
+        it 'ステータスコード401 Unauthorizedを返す' do
+          get :resource_pictures, :id => @other_artist.id, :format => :json
+          response.status.should eq 401
+        end
+        it '応答メッセージにUnauthorizedを返す' do
+          get :resource_pictures, :id => @other_artist.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 :resource_pictures, :id => @other_artist.id
+        response.should be_success 
+      end
+    end
+    context 'ユーザだが作家登録していないとき' do
+      before do
+        @artist.destroy
+      end
+      it 'ステータスコード200 OKを返す' do
+        get :resource_pictures, :id => @other_artist.id
+        response.should be_success 
+      end
+    end
+  end
+  
   describe '絵師数取得に於いて' do
     before do
       Artist.should_receive(:visible_count).and_return(3)
@@ -857,6 +985,58 @@ else
     end
   end
   
+  describe '対象絵師の素材一覧表示に於いて' do
+    before do
+      @other_user = FactoryGirl.create( :user_yas)
+      @other_author = FactoryGirl.create :author, :user_id => @other_user.id
+      @other_artist = FactoryGirl.create :artist_yas, :author_id => @other_author.id
+      @op = FactoryGirl.create :original_picture, :artist_id => @other_artist.id
+      @p = FactoryGirl.create :picture, :original_picture_id => @op.id, :license_id => @license.id, :artist_id => @other_artist.id
+      @rp = FactoryGirl.create :resource_picture, :artist_id => @other_artist.id, :license_id => @license.id, :original_picture_id => @op.id, :picture_id => @p.id
+      ResourcePicture.stub(:mylist).and_return([@rp, @rp, @rp])
+      sign_in @user
+    end
+    context 'つつがなく終わるとき' do
+      it 'ステータスコード200 OKを返す' do
+        get :resource_pictures, :id => @other_artist.id
+        response.should be_success 
+      end
+      context 'html形式' do
+        it 'resource_pictureテンプレートを描画する' do
+          get :resource_pictures, :id => @other_artist.id
+          response.should render_template("resource_pictures")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :resource_pictures, :id => @other_artist.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 :resource_pictures, :id => @other_artist.id
+        response.should be_success 
+      end
+      context 'html形式' do
+        it 'resource_pictureテンプレートを描画する' do
+          get :resource_pictures, :id => @other_artist.id
+          response.should render_template("resource_pictures")
+        end
+      end
+      context 'json形式' do
+        it 'jsonデータを返す' do
+          get :resource_pictures, :id => @other_artist.id, :format => :json
+          lambda{JSON.parse(response.body)}.should_not raise_error(JSON::ParserError)
+        end
+      end
+    end
+  end
+  
   describe '絵師数取得に於いて' do
     before do
       Artist.should_receive(:visible_count).and_return(3)