OSDN Git Service

t#32046:
[pettanr/pettanr.git] / spec / models / ground_picture_spec.rb
index ab72eb2..886982a 100644 (file)
@@ -4,6 +4,7 @@ require 'spec_helper'
 
 describe GroundPicture do
   before do
+    SpeechBalloonTemplate.delete_all
     @admin = FactoryGirl.create :admin
     @user = FactoryGirl.create( :user_yas)
     @author = FactoryGirl.create :author, :user_id => @user.id
@@ -31,6 +32,7 @@ describe GroundPicture do
         @gp.x = -99999
         @gp.y = -99999
         @gp.z = 1
+        @gp.t = 0
         @gp.should be_valid
       end
       it '上限データが通る' do
@@ -38,6 +40,7 @@ describe GroundPicture do
         @gp.x = 99999
         @gp.y = 99999
         @gp.z = 99999
+        @gp.t = 99999
         @gp.should be_valid
       end
     end
@@ -119,6 +122,35 @@ describe GroundPicture do
         @gp.should_not be_valid
       end
     end
+    context 'tを検証するとき' do
+      it 'nullなら失敗する' do
+        @gp.t = nil
+        @gp.should_not be_valid
+      end
+      it '数値でなければ失敗する' do
+        @gp.t = 'a'
+        @gp.should_not be_valid
+      end
+      it '負なら失敗する' do
+        @gp.t = -1
+        @gp.should_not be_valid
+      end
+    end
+  end
+  
+  describe '文字コード検証に於いて' do
+    before do
+      @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
+    end
+    
+    context 'captionを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @gp.caption = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @gp.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
   end
   
   describe 'デフォルト値補充に於いて' do
@@ -140,9 +172,10 @@ describe GroundPicture do
   end
   
   describe '上書き補充に於いて' do
-    it 'defined' do
+    it 'panel_idが設定されている' do
       @gp = FactoryGirl.build :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
-      @gp.overwrite
+      @gp.overwrite  @panel.id
+      @gp.panel_id.should eq @panel.id
     end
   end
   
@@ -150,58 +183,79 @@ describe GroundPicture do
     before do
       @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
     end
-    context '検査対象がnil(ゲスト)のとき' do
-      context 'クローズドモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 1
-        end
-        it '不許可を返す。' do
-          r = @gp.visible?(nil)
-          r.should be_false
-        end
-      end
-      context 'オープンモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 0
-        end
-        it '公開されたコマの絵地なら許可する' do
-          Panel.any_instance.stub(:publish?).with(any_args).and_return(true)
-          r = @gp.visible?(nil)
-          r.should be_true
-        end
-        it 'れ以外なら不許可を返す' do
-          Panel.any_instance.stub(:publish?).with(any_args).and_return(false)
-          r = @gp.visible?(nil)
-          r.should be_false
-        end
-      end
-    end
-    context '検査対象が作家のとき' do
-      it '公開されたコマの絵地なら許可する' do
-        Panel.any_instance.stub(:publish?).with(any_args).and_return(true)
-        r = @gp.visible?(@author)
-        r.should be_true
+    context 'オープンモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 0
       end
-      it 'れ以外なら不許可を返す' do
-        Panel.any_instance.stub(:publish?).with(any_args).and_return(false)
-        r = @gp.visible?(@author)
+      it '自身にゲスト用ロールチェックを問い合わせしている' do
+        GroundPicture.any_instance.stub(:guest_role_check).and_return(true)
+        GroundPicture.any_instance.should_receive(:guest_role_check).with(any_args).exactly(1)
+        r = @gp.visible?([@author])
+      end
+      it 'ゲスト用ロールチェックが失敗したとき、falseを返す' do
+        GroundPicture.any_instance.stub(:guest_role_check).and_return(false)
+        r = @gp.visible?([@author])
         r.should be_false
       end
     end
-    context '検査対象が管理者のとき' do
-      it '許可を返す。' do
-        Panel.any_instance.stub(:publish?).with(any_args).and_return(false)
-        r = @gp.visible?(@admin)
-        r.should be_true
+    context 'クローズドモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 1
+      end
+      it '自身に読者用ロールチェックを問い合わせしている' do
+        GroundPicture.any_instance.stub(:reader_role_check).and_return(true)
+        GroundPicture.any_instance.should_receive(:reader_role_check).with(any_args).exactly(1)
+        r = @gp.visible?([@author])
+      end
+      it '読者用ロールチェックが失敗したとき、falseを返す' do
+        GroundPicture.any_instance.stub(:reader_role_check).and_return(false)
+        r = @gp.visible?([@author])
+        r.should be_false
       end
     end
-    context '検査対象がそれ以外のとき' do
-      it '不許可を返す。' do
-        r = @gp.visible?(1)
+    context '事前チェックする' do
+      before do
+        MagicNumber['run_mode'] = 1
+        GroundPicture.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 = @gp.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 = @gp.visible?([@author])
+      end
+    end
+    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 = @gp.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 = @gp.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 = @gp.visible?([@author])
+        r.should be_true
+      end
     end
   end
+  
   describe '一覧取得に於いて' do
     before do
       @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
@@ -281,47 +335,199 @@ describe GroundPicture do
         pl.should eq [@gp]
       end
     end
-    context 'DBに5件あって1ページの件数を0件に変えたとして' do
+  end
+  
+  describe '自分のコマで使った絵地一覧取得に於いて' do
+    before do
+      @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
+    end
+    context 'つつがなく終わるとき' do
+      it '一覧取得オプションを利用している' do
+        GroundPicture.stub(:list_opt).with(any_args).and_return({:include => :panel})
+        GroundPicture.should_receive(:list_opt).with(any_args).exactly(1)
+        r = GroundPicture.mylist @author
+      end
+    end
+    it 'リストを返す' do
+      pl = GroundPicture.mylist @author
+      pl.should eq [@gp]
+    end
+    it '時系列で並んでいる' do
+      npl = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id, :z => 2, :updated_at => Time.now + 100
+      pl = GroundPicture.mylist @author
+      pl.should eq [npl, @gp]
+    end
+    it '他人のコマの絵地は公開でも含まない' do
+      hpl = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 1
+      npl = FactoryGirl.create :ground_picture, :panel_id => hpl.id, :picture_id => @p.id
+      pl = GroundPicture.mylist @author
+      pl.should eq [@gp]
+    end
+    it '自分のコマの絵地は非公開でも含んでいる' do
+      hpl = FactoryGirl.create :panel, :author_id => @author.id, :publish => 0
+      npl = FactoryGirl.create :ground_picture, :panel_id => hpl.id, :picture_id => @p.id, :z => 2, :updated_at => Time.now + 100
+      pl = GroundPicture.mylist @author
+      pl.should eq [npl, @gp]
+    end
+    context 'DBに5件あって1ページの件数を2件に変えたとして' do
       before do
         @gp2 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 1, :picture_id => @p.id, :updated_at => Time.now + 100
         @gp3 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 2, :picture_id => @p.id, :updated_at => Time.now + 200
         @gp4 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 3, :picture_id => @p.id, :updated_at => Time.now + 300
         @gp5 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 4, :picture_id => @p.id, :updated_at => Time.now + 400
-        GroundPicture.stub(:default_page_size).and_return(2)
       end
-      it '通常は全件(5件)を返す' do
-        r = GroundPicture.list 5, 0
-        r.should have(5).items 
+      it '通常は2件を返す' do
+        c = GroundPicture.mylist @author, 1, 2
+        c.should have(2).items 
+      end
+      it 'page=1なら末尾2件を返す' do
+        #時系列で並んでいる
+        c = GroundPicture.mylist(@author, 1, 2)
+        c.should eq [@gp5, @gp4]
+      end
+      it 'page=2なら中間2件を返す' do
+        c = GroundPicture.mylist(@author, 2, 2)
+        c.should eq [@gp3, @gp2]
+      end
+      it 'page=3なら先頭1件を返す' do
+        c = GroundPicture.mylist(@author, 3, 2)
+        c.should eq [@gp]
       end
     end
   end
-  describe '一覧取得オプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = GroundPicture.list_opt
-      r.has_key?(:include).should be_true
+  
+  describe '他作家の絵地一覧取得に於いて' do
+    before do
+      @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
+      @other_panel = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 1
+      @other_gp = FactoryGirl.create :ground_picture, :panel_id => @other_panel.id, :picture_id => @p.id
+    end
+    it 'リストを返す' do
+      r = GroundPicture.himlist @other_author
+      r.should eq [@other_gp]
+    end
+    it '時系列で並んでいる' do
+      new_panel = FactoryGirl.create :panel, :author_id => @other_author.id, :updated_at => Time.now + 100
+      new_gp = FactoryGirl.create :ground_picture, :panel_id => new_panel.id, :picture_id => @p.id, :updated_at => Time.now + 100
+      r = GroundPicture.himlist @other_author
+      r.should eq [new_gp, @other_gp]
+    end
+    it '公開コマに限る' do
+      hidden_panel = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 0
+      hidden_gp = FactoryGirl.create :ground_picture, :panel_id => hidden_panel.id, :picture_id => @p.id, :updated_at => Time.now + 100
+      r = GroundPicture.himlist @other_author
+      r.should eq [@other_gp]
+    end
+    context 'DBに5件あって1ページの件数を2件に変えたとして' do
+      before do
+        @other_gp2 = FactoryGirl.create :ground_picture, :panel_id => @other_panel.id, :picture_id => @p.id, :updated_at => Time.now + 100
+        @other_gp3 = FactoryGirl.create :ground_picture, :panel_id => @other_panel.id, :picture_id => @p.id, :updated_at => Time.now + 200
+        @other_gp4 = FactoryGirl.create :ground_picture, :panel_id => @other_panel.id, :picture_id => @p.id, :updated_at => Time.now + 300
+        @other_gp5 = FactoryGirl.create :ground_picture, :panel_id => @other_panel.id, :picture_id => @p.id, :updated_at => Time.now + 400
+      end
+      it '通常は2件を返す' do
+        pl = GroundPicture.himlist @other_author, 1, 2
+        pl.should have(2).items 
+      end
+      it 'page=1なら末尾2件を返す' do
+        #時系列で並んでいる
+        pl = GroundPicture.himlist @other_author, 1, 2
+        pl.should eq [@other_gp5, @other_gp4]
+      end
+      it 'page=2なら中間2件を返す' do
+        pl = GroundPicture.himlist @other_author, 2, 2
+        pl.should eq [@other_gp3, @other_gp2]
+      end
+      it 'page=3なら先頭1件を返す' do
+        pl = GroundPicture.himlist @other_author, 3, 2
+        pl.should eq [@other_gp]
+      end
     end
+  end
+  
+  describe '絵地一覧ページ制御に於いて' do
+    before do
+      GroundPicture.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = GroundPicture.list_paginate 
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it '絵地一覧の取得条件を利用している' do
+      GroundPicture.stub(:list_where).with(any_args).and_return('')
+      GroundPicture.should_receive(:list_where).with(any_args).exactly(1)
+      r = GroundPicture.list_paginate 
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = GroundPicture.list_paginate 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '自分の絵地一覧ページ制御に於いて' do
+    before do
+      GroundPicture.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = GroundPicture.mylist_paginate @author
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it '自分の絵地一覧の取得条件を利用している' do
+      GroundPicture.stub(:mylist_where).with(any_args).and_return('')
+      GroundPicture.should_receive(:mylist_where).with(any_args).exactly(1)
+      r = GroundPicture.mylist_paginate @author
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = GroundPicture.mylist_paginate @author, 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
+    end
+  end
+  
+  describe '他作家の絵地一覧ページ制御に於いて' do
+    before do
+      GroundPicture.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = GroundPicture.himlist_paginate @other_author
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it '他作家の絵地一覧の取得条件を利用している' do
+      GroundPicture.stub(:himlist_where).with(any_args).and_return('')
+      GroundPicture.should_receive(:himlist_where).with(any_args).exactly(1)
+      r = GroundPicture.himlist_paginate @other_author
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = GroundPicture.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 = GroundPicture.list_opt[:include]
+      r = GroundPicture.list_opt
       r.should have(2).items
     end
     it 'コマを含んでいる' do
-      r = GroundPicture.list_opt[:include]
+      r = GroundPicture.list_opt
       r.has_key?(:panel).should be_true
     end
       it 'コマは作家を含んでいる' do
-        r = GroundPicture.list_opt[:include]
+        r = GroundPicture.list_opt
         r[:panel].has_key?(:author).should be_true
       end
     it '実素材を含んでいる' do
-      r = GroundPicture.list_opt[:include]
+      r = GroundPicture.list_opt
       r.has_key?(:picture).should be_true
     end
       it '実素材は絵師を含んでいる' do
-        r = GroundPicture.list_opt[:include]
+        r = GroundPicture.list_opt
         r[:picture].has_key?(:artist).should be_true
       end
       it '実素材はライセンスを含んでいる' do
-        r = GroundPicture.list_opt[:include]
+        r = GroundPicture.list_opt
         r[:picture].has_key?(:license).should be_true
       end
   end
@@ -331,9 +537,9 @@ describe GroundPicture do
       @p = FactoryGirl.create :picture, :original_picture_id => @op.id, :license_id => @license.id, :artist_id => @artist.id
       @rp = FactoryGirl.create :resource_picture, :artist_id => @artist.id, :license_id => @license.id, :original_picture_id => @op.id, :picture_id => @p.id
       @sbt = FactoryGirl.create :speech_balloon_template
-      @comic = FactoryGirl.create :comic, :author_id => @author.id, :visible => 1
+      @scroll = FactoryGirl.create :scroll, :author_id => @author.id, :visible => 1
       @panel = FactoryGirl.create :panel, :author_id => @author.id, :publish => 1
-      @story = FactoryGirl.create :story, :author_id => @author.id, :comic_id => @comic.id, :panel_id => @panel.id
+      @scroll_panel = FactoryGirl.create :scroll_panel, :author_id => @author.id, :scroll_id => @scroll.id, :panel_id => @panel.id
       @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
     end
     it 'コマを含んでいる' do
@@ -371,78 +577,6 @@ describe GroundPicture do
       end
   end
   
-  describe '自分のコマで使った絵地一覧取得に於いて' do
-    before do
-      @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id
-    end
-    context 'つつがなく終わるとき' do
-      it '一覧取得オプションを利用している' do
-        GroundPicture.stub(:list_opt).with(any_args).and_return({:include => :panel})
-        GroundPicture.should_receive(:list_opt).with(any_args).exactly(1)
-        r = GroundPicture.mylist @author
-      end
-    end
-    it 'リストを返す' do
-      pl = GroundPicture.mylist @author
-      pl.should eq [@gp]
-    end
-    it '時系列で並んでいる' do
-      npl = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id, :z => 2, :updated_at => Time.now + 100
-      pl = GroundPicture.mylist @author
-      pl.should eq [npl, @gp]
-    end
-    it '他人のコマの絵地は公開でも含まない' do
-      hpl = FactoryGirl.create :panel, :author_id => @other_author.id, :publish => 1
-      npl = FactoryGirl.create :ground_picture, :panel_id => hpl.id, :picture_id => @p.id
-      pl = GroundPicture.mylist @author
-      pl.should eq [@gp]
-    end
-    it '自分のコマの絵地は非公開でも含んでいる' do
-      hpl = FactoryGirl.create :panel, :author_id => @author.id, :publish => 0
-      npl = FactoryGirl.create :ground_picture, :panel_id => hpl.id, :picture_id => @p.id, :z => 2, :updated_at => Time.now + 100
-      pl = GroundPicture.mylist @author
-      pl.should eq [npl, @gp]
-    end
-    context 'DBに5件あって1ページの件数を2件に変えたとして' do
-      before do
-        @gp2 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 1, :picture_id => @p.id, :updated_at => Time.now + 100
-        @gp3 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 2, :picture_id => @p.id, :updated_at => Time.now + 200
-        @gp4 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 3, :picture_id => @p.id, :updated_at => Time.now + 300
-        @gp5 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 4, :picture_id => @p.id, :updated_at => Time.now + 400
-      end
-      it '通常は2件を返す' do
-        c = GroundPicture.mylist @author, 1, 2
-        c.should have(2).items 
-      end
-      it 'page=1なら末尾2件を返す' do
-        #時系列で並んでいる
-        c = GroundPicture.mylist(@author, 1, 2)
-        c.should eq [@gp5, @gp4]
-      end
-      it 'page=2なら中間2件を返す' do
-        c = GroundPicture.mylist(@author, 2, 2)
-        c.should eq [@gp3, @gp2]
-      end
-      it 'page=3なら先頭1件を返す' do
-        c = GroundPicture.mylist(@author, 3, 2)
-        c.should eq [@gp]
-      end
-    end
-    context 'DBに5件あって1ページの件数を0件に変えたとして' do
-      before do
-        @gp2 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 1, :picture_id => @p.id, :updated_at => Time.now + 100
-        @gp3 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 2, :picture_id => @p.id, :updated_at => Time.now + 200
-        @gp4 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 3, :picture_id => @p.id, :updated_at => Time.now + 300
-        @gp5 = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :z => 4, :picture_id => @p.id, :updated_at => Time.now + 400
-        Author.stub(:default_ground_picture_page_size).and_return(2)
-      end
-      it '通常は全件(5件)を返す' do
-        r = GroundPicture.mylist @author, 5, 0
-        r.should have(5).items 
-      end
-    end
-  end
-  
   describe '単体取得に於いて' do
     before do
       @gp = FactoryGirl.create :ground_picture, :panel_id => @panel.id, :picture_id => @p.id