OSDN Git Service

t#32046:
[pettanr/pettanr.git] / spec / models / author_spec.rb
index 7550611..dd65266 100644 (file)
@@ -4,6 +4,7 @@ require 'spec_helper'
 
 describe Author do
   before do
+    SpeechBalloonTemplate.delete_all
     @admin = FactoryGirl.create :admin
     @user = FactoryGirl.create( :user_yas)
     @author = FactoryGirl.create :author, :user_id => @user.id
@@ -16,6 +17,7 @@ describe Author do
     context 'オーソドックスなデータのとき' do
       it '下限データが通る' do
         @author.name = 'a'
+        @author.working_panel_id = 0
         @author.should be_valid
       end
       it '上限データが通る' do
@@ -34,6 +36,12 @@ describe Author do
         @author.should_not be_valid
       end
     end
+    context 'working_panel_idを検証するとき' do
+      it '数値でなければ失敗する' do
+        @author.working_panel_id = 'a'
+        @author.should_not be_valid
+      end
+    end
     context 'user_idを検証するとき' do
       it 'nullなら失敗する' do
         @author.user_id = nil
@@ -50,6 +58,21 @@ describe Author do
     end
   end
   
+  describe '文字コード検証に於いて' do
+    before do
+    end
+    
+    context 'nameを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @author.name = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @author.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+    
+  end
+  
   describe 'デフォルト値補充に於いて' do
     it '名前がno nameになっている' do
       @author = FactoryGirl.build :author, :name => nil
@@ -249,43 +272,30 @@ describe Author do
         r.should eq [@author]
       end
     end
-    context 'DBに5件あって1ページの件数を0件に変えたとして' do
-      before do
-        @other_user2 = FactoryGirl.create :user_yas
-        @author2 = FactoryGirl.create :author, :user_id => @other_user2.id
-        @author2.created_at = Time.now + 100
-        @author2.save
-        @other_user3 = FactoryGirl.create :user_yas
-        @author3 = FactoryGirl.create :author, :user_id => @other_user3.id
-        @author3.created_at = Time.now + 200
-        @author3.save
-        @other_user4 = FactoryGirl.create :user_yas
-        @author4 = FactoryGirl.create :author, :user_id => @other_user4.id
-        @author4.created_at = Time.now + 300
-        @author4.save
-        @other_user5 = FactoryGirl.create :user_yas
-        @author5 = FactoryGirl.create :author, :user_id => @other_user5.id
-        @author5.created_at = Time.now + 400
-        @author5.save
-        Author.stub(:default_page_size).and_return(2)
-      end
-      it '通常は全件(5件)を返す' do
-        r = Author.list 5, 0
-        r.should have(5).items 
-      end
+  end
+  
+  describe '一覧ページ制御に於いて' do
+    before do
+      Author.stub(:count).with(any_args).and_return(100)
+    end
+    it 'ページ制御を返す' do
+      r = Author.list_paginate
+      r.is_a?(Kaminari::PaginatableArray).should be_true
+    end
+    it 'ページ件数10のとき、3ページ目のオフセットは20から始まる' do
+      r = Author.list_paginate 3, 10
+      r.limit_value.should eq 10
+      r.offset_value.should eq 20
     end
   end
+  
   describe '一覧取得オプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = Author.list_opt
-      r.has_key?(:include).should be_true
-    end
     it '1つの項目を含んでいる' do
-      r = Author.list_opt[:include]
+      r = Author.list_opt
       r.should have(1).items
     end
     it '絵師を含んでいる' do
-      r = Author.list_opt[:include]
+      r = Author.list_opt
       r.has_key?(:artist).should be_true
     end
   end
@@ -401,6 +411,34 @@ describe Author do
   describe 'マイリストページ制御パラメータに於いて' do
     before do
     end
+    context 'スクロールpage_size補正について' do
+      it '文字列から数値に変換される' do
+        Author.scroll_page_size('7').should eq 7
+      end
+      it 'nilの場合はAuthor.default_scroll_page_sizeになる' do
+        Author.scroll_page_size().should eq Author.default_scroll_page_size
+      end
+      it '0以下の場合はAuthor.default_scroll_page_sizeになる' do
+        Author.scroll_page_size('0').should eq Author.default_scroll_page_size
+      end
+      it 'Author.scroll_max_page_sizeを超えた場合はAuthor.scroll_max_page_sizeになる' do
+        Author.scroll_page_size('1000').should eq Author.scroll_max_page_size
+      end
+    end
+    context 'スクコマpage_size補正について' do
+      it '文字列から数値に変換される' do
+        Author.scroll_panel_page_size('7').should eq 7
+      end
+      it 'nilの場合はAuthor.default_scroll_panel_page_sizeになる' do
+        Author.scroll_panel_page_size().should eq Author.default_scroll_panel_page_size
+      end
+      it '0以下の場合はAuthor.default_scroll_panel_page_sizeになる' do
+        Author.scroll_panel_page_size('0').should eq Author.default_scroll_panel_page_size
+      end
+      it 'Author.scroll_panel_max_page_sizeを超えた場合はAuthor.scroll_panel_max_page_sizeになる' do
+        Author.scroll_panel_page_size('1000').should eq Author.scroll_panel_max_page_size
+      end
+    end
     context 'コミックpage_size補正について' do
       it '文字列から数値に変換される' do
         Author.comic_page_size('7').should eq 7
@@ -429,7 +467,49 @@ describe Author do
         Author.story_page_size('1000').should eq Author.story_max_page_size
       end
     end
-    context 'コマ絵page_size補正について' do
+    context 'スト紙page_size補正について' do
+      it '文字列から数値に変換される' do
+        Author.story_sheet_page_size('7').should eq 7
+      end
+      it 'nilの場合はAuthor.default_story_sheet_page_sizeになる' do
+        Author.story_sheet_page_size().should eq Author.default_story_sheet_page_size
+      end
+      it '0以下の場合はAuthor.default_story_sheet_page_sizeになる' do
+        Author.story_sheet_page_size('0').should eq Author.default_story_sheet_page_size
+      end
+      it 'Author.story_sheet_max_page_sizeを超えた場合はAuthor.story_sheet_max_page_sizeになる' do
+        Author.story_sheet_page_size('1000').should eq Author.story_sheet_max_page_size
+      end
+    end
+    context '用紙page_size補正について' do
+      it '文字列から数値に変換される' do
+        Author.sheet_page_size('7').should eq 7
+      end
+      it 'nilの場合はAuthor.default_sheet_page_sizeになる' do
+        Author.sheet_page_size().should eq Author.default_sheet_page_size
+      end
+      it '0以下の場合はAuthor.default_sheet_page_sizeになる' do
+        Author.sheet_page_size('0').should eq Author.default_sheet_page_size
+      end
+      it 'Author.sheet_max_page_sizeを超えた場合はAuthor.sheet_max_page_sizeになる' do
+        Author.sheet_page_size('1000').should eq Author.sheet_max_page_size
+      end
+    end
+    context '紙コマpage_size補正について' do
+      it '文字列から数値に変換される' do
+        Author.sheet_panel_page_size('7').should eq 7
+      end
+      it 'nilの場合はAuthor.default_sheet_panel_page_sizeになる' do
+        Author.sheet_panel_page_size().should eq Author.default_sheet_panel_page_size
+      end
+      it '0以下の場合はAuthor.default_sheet_panel_page_sizeになる' do
+        Author.sheet_panel_page_size('0').should eq Author.default_sheet_panel_page_size
+      end
+      it 'Author.sheet_panel_max_page_sizeを超えた場合はAuthor.sheet_panel_max_page_sizeになる' do
+        Author.sheet_panel_page_size('1000').should eq Author.sheet_panel_max_page_size
+      end
+    end
+    context 'コマpage_size補正について' do
       it '文字列から数値に変換される' do
         Author.panel_page_size('7').should eq 7
       end
@@ -443,7 +523,7 @@ describe Author do
         Author.panel_page_size('1000').should eq Author.panel_max_page_size
       end
     end
-    context '景色素材page_size補正について' do
+    context 'コマ素材page_size補正について' do
       it '文字列から数値に変換される' do
         Author.panel_picture_page_size('7').should eq 7
       end
@@ -457,6 +537,20 @@ describe Author do
         Author.panel_picture_page_size('1000').should eq Author.panel_picture_max_page_size
       end
     end
+    context 'フキダシpage_size補正について' do
+      it '文字列から数値に変換される' do
+        Author.speech_balloon_page_size('7').should eq 7
+      end
+      it 'nilの場合はAuthor.default_speech_balloon_page_sizeになる' do
+        Author.speech_balloon_page_size().should eq Author.default_speech_balloon_page_size
+      end
+      it '0以下の場合はAuthor.default_speech_balloon_page_sizeになる' do
+        Author.speech_balloon_page_size('0').should eq Author.default_speech_balloon_page_size
+      end
+      it 'Author.speech_balloon_max_page_sizeを超えた場合はAuthor.speech_balloon_max_page_sizeになる' do
+        Author.speech_balloon_page_size('1000').should eq Author.speech_balloon_max_page_size
+      end
+    end
     context '景色カラーpage_size補正について' do
       it '文字列から数値に変換される' do
         Author.ground_picture_page_size('7').should eq 7