OSDN Git Service

fix peta test
[pettanr/pettanr.git] / spec / models / ground_picture_spec.rb
index a48dfc0..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
   
@@ -302,19 +335,6 @@ describe GroundPicture do
         pl.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
-        GroundPicture.stub(:default_page_size).and_return(2)
-      end
-      it '通常は全件(5件)を返す' do
-        r = GroundPicture.list 5, 0
-        r.should have(5).items 
-      end
-    end
   end
   
   describe '自分のコマで使った絵地一覧取得に於いて' do
@@ -374,19 +394,6 @@ describe GroundPicture do
         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
@@ -436,48 +443,91 @@ describe GroundPicture do
         pl.should eq [@other_gp]
       end
     end
-    context 'DBに5件あって1ページの件数を0件に変えたとして' 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
-        Author.stub(:default_ground_picture_page_size).and_return(2)
-      end
-      it '通常は全件(5件)を返す' do
-        r = GroundPicture.himlist @other_author, 5, 0
-        r.should have(5).items 
-      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
-    it 'includeキーを含んでいる' do
-      r = GroundPicture.list_opt
-      r.has_key?(:include).should be_true
+  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
@@ -487,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