OSDN Git Service

t#31470:create pager
[pettanr/pettanr.git] / spec / models / panel_picture_spec.rb
index 29a214c..364a032 100644 (file)
@@ -289,63 +289,110 @@ describe PanelPicture do
       end
     end
   end
+  
+  describe '文字コード検証に於いて' do
+    before do
+      @pp = FactoryGirl.build :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height
+    end
+    
+    context 'linkを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @pp.link = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @pp.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+    
+    context 'captionを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @pp.caption = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @pp.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+  end
+  
   describe '閲覧許可に於いて' do
     before do
       @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
         :width => @p.width, :height => @p.height
     end
-    context '検査対象がnil(ゲスト)のとき' do
-      context 'クローズドモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 1
-        end
-        it '不許可を返す。' do
-          r = @pp.visible?(nil)
-          r.should be_false
-        end
+    context 'オープンモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 0
       end
-      context 'オープンモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 0
-        end
-        it '公開されたコマのコマ絵なら許可する' do
-          Panel.any_instance.stub(:publish?).with(any_args).and_return(true)
-          r = @pp.visible?(nil)
-          r.should be_true
-        end
-        it 'れ以外なら不許可を返す' do
-          Panel.any_instance.stub(:publish?).with(any_args).and_return(false)
-          r = @pp.visible?(nil)
-          r.should be_false
-        end
+      it '自身にゲスト用ロールチェックを問い合わせしている' do
+        PanelPicture.any_instance.stub(:guest_role_check).and_return(true)
+        PanelPicture.any_instance.should_receive(:guest_role_check).with(any_args).exactly(1)
+        r = @pp.visible?([@author])
+      end
+      it 'ゲスト用ロールチェックが失敗したとき、falseを返す' do
+        PanelPicture.any_instance.stub(:guest_role_check).and_return(false)
+        r = @pp.visible?([@author])
+        r.should be_false
       end
     end
-    context '検査対象が作家のとき' do
-      it '公開されたコマのコマ絵なら許可する' do
-        Panel.any_instance.stub(:publish?).with(any_args).and_return(true)
-        r = @pp.visible?(@author)
-        r.should be_true
+    context 'クローズドモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 1
+      end
+      it '自身に読者用ロールチェックを問い合わせしている' do
+        PanelPicture.any_instance.stub(:reader_role_check).and_return(true)
+        PanelPicture.any_instance.should_receive(:reader_role_check).with(any_args).exactly(1)
+        r = @pp.visible?([@author])
       end
-      it 'れ以外なら不許可を返す' do
-        Panel.any_instance.stub(:publish?).with(any_args).and_return(false)
-        r = @pp.visible?(@author)
+      it '読者用ロールチェックが失敗したとき、falseを返す' do
+        PanelPicture.any_instance.stub(:reader_role_check).and_return(false)
+        r = @pp.visible?([@author])
         r.should be_false
       end
     end
-    context '検査対象が管理者のとき' do
-      it '許可を返す。' do
-        Panel.any_instance.stub(:publish?).with(any_args).and_return(false)
-        r = @pp.visible?(@admin)
-        r.should be_true
+    context '事前チェックする' do
+      before do
+        MagicNumber['run_mode'] = 1
+        PanelPicture.any_instance.stub(:reader_role_check).and_return(true)
+      end
+      it '自身のコマに所持判定を問い合わせしている' do
+        Panel.any_instance.stub(:own?).and_return(true)
+        Panel.any_instance.should_receive(:own?).with(any_args).exactly(1)
+        r = @pp.visible?([@author])
+      end
+      it '自身のコマに閲覧許可を問い合わせしている' do
+        Panel.any_instance.stub(:own?).and_return(false)
+        Panel.any_instance.stub(:visible?).and_return(true)
+        Panel.any_instance.should_receive(:visible?).with(any_args).exactly(1)
+        r = @pp.visible?([@author])
       end
     end
-    context '検査対象がそれ以外のとき' do
-      it '不許可を返す。' do
-        r = @pp.visible?(1)
+    context 'つつがなく終わるとき' do
+      before do
+        MagicNumber['run_mode'] = 1
+        Panel.any_instance.stub(:reader_role_check).and_return(true)
+      end
+      it '自分のコマのコマ絵なら許可する' do
+        Panel.any_instance.stub(:own?).and_return(true)
+        Panel.any_instance.stub(:visible?).and_return(false)
+        r = @pp.visible?([@author])
+        r.should be_true
+      end
+      it '他人の非公開コマのコマ絵なら許可しない' do
+        Panel.any_instance.stub(:own?).and_return(false)
+        Panel.any_instance.stub(:visible?).and_return(false)
+        r = @pp.visible?([@author])
         r.should be_false
       end
+      it '他人のコマのコマ絵でも公開なら許可する' do
+        Panel.any_instance.stub(:own?).and_return(false)
+        Panel.any_instance.stub(:visible?).and_return(true)
+        r = @pp.visible?([@author])
+        r.should be_true
+      end
     end
   end
+  
   describe '一覧取得に於いて' do
     before do
       @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
@@ -432,7 +479,45 @@ describe PanelPicture do
         pl.should eq [@pp]
       end
     end
-    context 'DBに5件あって1ページの件数を0件に変えたとして' do
+  end
+  
+  describe '自分のコマ絵一覧取得に於いて' do
+    before do
+      @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height
+    end
+    context 'つつがなく終わるとき' do
+      it '一覧取得オプションを利用している' do
+        PanelPicture.stub(:list_opt).with(any_args).and_return({:include => :panel})
+        PanelPicture.should_receive(:list_opt).with(any_args).exactly(1)
+        r = PanelPicture.mylist @author
+      end
+    end
+    it 'リストを返す' do
+      pl = PanelPicture.mylist @author
+      pl.should eq [@pp]
+    end
+    it '時系列で並んでいる' do
+      npl = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 1, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
+      pl = PanelPicture.mylist @author
+      pl.should eq [npl, @pp]
+    end
+    it '他人のコマのコマ絵は公開コマでも含まない' do
+      hpl = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 1
+      npl = FactoryGirl.create :panel_picture, :panel_id => hpl.id, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height
+      pl = PanelPicture.mylist @author
+      pl.should eq [@pp]
+    end
+    it '自分のコマのコマ絵は非公開コマでも含んでいる' do
+      pl = FactoryGirl.create :panel, :author_id => @author.id, :publish => 0
+      ni = FactoryGirl.create :panel_picture, :panel_id => pl.id, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
+      r = PanelPicture.mylist @author
+      r.should eq [ni, @pp]
+    end
+    context 'DBに5件あって1ページの件数を2件に変えたとして' do
       before do
         @npl2 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 1, :picture_id => @p.id,
           :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
@@ -442,41 +527,161 @@ describe PanelPicture do
           :width => @p.width, :height => @p.height, :updated_at => Time.now + 300
         @npl5 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 4, :picture_id => @p.id,
           :width => @p.width, :height => @p.height, :updated_at => Time.now + 400
-        PanelPicture.stub(:default_page_size).and_return(2)
       end
-      it '通常は全件(5件)を返す' do
-        r = PanelPicture.list 5, 0
-        r.should have(5).items 
+      it '通常は2件を返す' do
+        r = PanelPicture.mylist @author, 1, 2
+        r.should have(2).items 
+      end
+      it 'page=1なら末尾2件を返す' do
+        #時系列で並んでいる
+        r = PanelPicture.mylist(@author, 1, 2)
+        r.should eq [@npl5, @npl4]
+      end
+      it 'page=2なら中間2件を返す' do
+        r = PanelPicture.mylist(@author, 2, 2)
+        r.should eq [@npl3, @npl2]
+      end
+      it 'page=3なら先頭1件を返す' do
+        r = PanelPicture.mylist(@author, 3, 2)
+        r.should eq [@pp]
       end
     end
   end
-  describe '一覧取得オプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = PanelPicture.list_opt
-      r.has_key?(:include).should be_true
+  
+  describe '他作家のコマ絵一覧取得に於いて' do
+    before do
+      @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height
+      @other_panel = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 1
+      @other_pp = FactoryGirl.create :panel_picture, :panel_id => @other_panel.id, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height
+    end
+    it 'リストを返す' do
+      r = PanelPicture.himlist @other_author
+      r.should eq [@other_pp]
+    end
+    it '時系列で並んでいる' do
+      new_panel = FactoryGirl.create :panel, :author_id => @other_author.id, :updated_at => Time.now + 100
+      new_pc = FactoryGirl.create :panel_picture, :panel_id => new_panel.id, :picture_id => @p.id, :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
+      r = PanelPicture.himlist @other_author
+      r.should eq [new_pc, @other_pp]
+    end
+    it '公開コマに限る' do
+      hidden_panel = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 0
+      hidden_pp = FactoryGirl.create :panel_picture, :panel_id => hidden_panel.id, :picture_id => @p.id, :width => @p.width, :height => @p.height
+      r = PanelPicture.himlist @other_author
+      r.should eq [@other_pp]
     end
+    context 'DBに5件あって1ページの件数を2件に変えたとして' do
+      before do
+        @other_pp2 = FactoryGirl.create :panel_picture, :panel_id => @other_panel.id, :t => 1, :picture_id => @p.id, :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
+        @other_pp3 = FactoryGirl.create :panel_picture, :panel_id => @other_panel.id, :t => 2, :picture_id => @p.id, :width => @p.width, :height => @p.height, :updated_at => Time.now + 200
+        @other_pp4 = FactoryGirl.create :panel_picture, :panel_id => @other_panel.id, :t => 3, :picture_id => @p.id, :width => @p.width, :height => @p.height, :updated_at => Time.now + 300
+        @other_pp5 = FactoryGirl.create :panel_picture, :panel_id => @other_panel.id, :t => 4, :picture_id => @p.id, :width => @p.width, :height => @p.height, :updated_at => Time.now + 400
+      end
+      it '通常は2件を返す' do
+        pl = PanelPicture.himlist @other_author, 1, 2
+        pl.should have(2).items 
+      end
+      it 'page=1なら末尾2件を返す' do
+        #時系列で並んでいる
+        pl = PanelPicture.himlist @other_author, 1, 2
+        pl.should eq [@other_pp5, @other_pp4]
+      end
+      it 'page=2なら中間2件を返す' do
+        pl = PanelPicture.himlist @other_author, 2, 2
+        pl.should eq [@other_pp3, @other_pp2]
+      end
+      it 'page=3なら先頭1件を返す' do
+        pl = PanelPicture.himlist @other_author, 3, 2
+        pl.should eq [@other_pp]
+      end
+    end
+  end
+  
+  describe 'コマ絵一覧ページ制御に於いて' do
+    before do
+      PanelPicture.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = PanelPicture.list_paginate 
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it 'コマ絵一覧の取得条件を利用している' do
+      PanelPicture.stub(:list_where).with(any_args).and_return('')
+      PanelPicture.should_receive(:list_where).with(any_args).exactly(1)
+      r = PanelPicture.list_paginate 
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = PanelPicture.list_paginate 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '自分のコマ絵一覧ページ制御に於いて' do
+    before do
+      PanelPicture.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = PanelPicture.mylist_paginate @author
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it '自分のコマ絵一覧の取得条件を利用している' do
+      PanelPicture.stub(:mylist_where).with(any_args).and_return('')
+      PanelPicture.should_receive(:mylist_where).with(any_args).exactly(1)
+      r = PanelPicture.mylist_paginate @author
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = PanelPicture.mylist_paginate @author, 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '他作家のコマ絵一覧ページ制御に於いて' do
+    before do
+      PanelPicture.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = PanelPicture.himlist_paginate @other_author
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it '他作家のコマ絵一覧の取得条件を利用している' do
+      PanelPicture.stub(:himlist_where).with(any_args).and_return('')
+      PanelPicture.should_receive(:himlist_where).with(any_args).exactly(1)
+      r = PanelPicture.himlist_paginate @other_author
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = PanelPicture.himlist_paginate @other_author, 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '一覧取得オプションに於いて' do
     it '2つの項目を含んでいる' do
-      r = PanelPicture.list_opt[:include]
+      r = PanelPicture.list_opt
       r.should have(2).items
     end
     it 'コマを含んでいる' do
-      r = PanelPicture.list_opt[:include]
+      r = PanelPicture.list_opt
       r.has_key?(:panel).should be_true
     end
       it 'コマは作家を含んでいる' do
-        r = PanelPicture.list_opt[:include]
+        r = PanelPicture.list_opt
         r[:panel].has_key?(:author).should be_true
       end
     it '実素材を含んでいる' do
-      r = PanelPicture.list_opt[:include]
+      r = PanelPicture.list_opt
       r.has_key?(:picture).should be_true
     end
       it '実素材は絵師を含んでいる' do
-        r = PanelPicture.list_opt[:include]
+        r = PanelPicture.list_opt
         r[:picture].has_key?(:artist).should be_true
       end
       it '実素材はライセンスを含んでいる' do
-        r = PanelPicture.list_opt[:include]
+        r = PanelPicture.list_opt
         r[:picture].has_key?(:license).should be_true
       end
   end
@@ -525,90 +730,6 @@ describe PanelPicture do
       end
   end
   
-  describe '自分のコマ絵一覧取得に於いて' do
-    before do
-      @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
-        :width => @p.width, :height => @p.height
-    end
-    context 'つつがなく終わるとき' do
-      it '一覧取得オプションを利用している' do
-        PanelPicture.stub(:list_opt).with(any_args).and_return({:include => :panel})
-        PanelPicture.should_receive(:list_opt).with(any_args).exactly(1)
-        r = PanelPicture.mylist @author
-      end
-    end
-    it 'リストを返す' do
-      pl = PanelPicture.mylist @author
-      pl.should eq [@pp]
-    end
-    it '時系列で並んでいる' do
-      npl = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 1, :picture_id => @p.id,
-        :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
-      pl = PanelPicture.mylist @author
-      pl.should eq [npl, @pp]
-    end
-    it '他人のコマのコマ絵は公開コマでも含まない' do
-      hpl = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 1
-      npl = FactoryGirl.create :panel_picture, :panel_id => hpl.id, :picture_id => @p.id,
-        :width => @p.width, :height => @p.height
-      pl = PanelPicture.mylist @author
-      pl.should eq [@pp]
-    end
-    it '自分のコマのコマ絵は非公開コマでも含んでいる' do
-      pl = FactoryGirl.create :panel, :author_id => @author.id, :publish => 0
-      ni = FactoryGirl.create :panel_picture, :panel_id => pl.id, :picture_id => @p.id,
-        :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
-      r = PanelPicture.mylist @author
-      r.should eq [ni, @pp]
-    end
-    context 'DBに5件あって1ページの件数を2件に変えたとして' do
-      before do
-        @npl2 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 1, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
-        @npl3 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 2, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 200
-        @npl4 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 3, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 300
-        @npl5 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 4, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 400
-      end
-      it '通常は2件を返す' do
-        r = PanelPicture.mylist @author, 1, 2
-        r.should have(2).items 
-      end
-      it 'page=1なら末尾2件を返す' do
-        #時系列で並んでいる
-        r = PanelPicture.mylist(@author, 1, 2)
-        r.should eq [@npl5, @npl4]
-      end
-      it 'page=2なら中間2件を返す' do
-        r = PanelPicture.mylist(@author, 2, 2)
-        r.should eq [@npl3, @npl2]
-      end
-      it 'page=3なら先頭1件を返す' do
-        r = PanelPicture.mylist(@author, 3, 2)
-        r.should eq [@pp]
-      end
-    end
-    context 'DBに5件あって1ページの件数を0件に変えたとして' do
-      before do
-        @npl2 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 1, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 100
-        @npl3 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 2, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 200
-        @npl4 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 3, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 300
-        @npl5 = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :t => 4, :picture_id => @p.id,
-          :width => @p.width, :height => @p.height, :updated_at => Time.now + 400
-        Author.stub(:default_panel_picture_page_size).and_return(2)
-      end
-      it '通常は全件(5件)を返す' do
-        r = PanelPicture.mylist @author, 5, 0
-        r.should have(5).items 
-      end
-    end
-  end
-  
   describe '単体取得に於いて' do
     before do
       @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,