OSDN Git Service

Merge branch 'v06' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / spec / models / author_spec.rb
index f839919..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
@@ -64,54 +87,87 @@ describe Author do
   describe '所持判定に於いて' do
     before do
       @other_user = FactoryGirl.create :user_yas
-#アカウントを作ると連動して作家ができる      @other_author = FactoryGirl.create :author_yas, :user_id => @other_user.id
+      @other_author = @other_user.author
     end
-    it '作家自身ならyes' do
-      @author.own?(@author).should == true
+    context '事前チェックする' do
+      it '自身にロールリストからの作家取得を依頼している' do
+        Author.should_receive(:get_author_from_roles).with(any_args).exactly(1)
+        r = @author.own?([@author])
+      end
     end
-    it '作家自身でなければno' do
-      @author.own?(@other_author).should == false
+    context 'ロール内作家が取得できるとき' do
+      before do
+      end
+      it 'ロール内作家のidが自身の作家idと一致するなら許可する' do
+        Author.stub(:get_author_from_roles).with(any_args).and_return(@author)
+        r = @author.own?([@author])
+        r.should be_true
+      end
+      it 'ロール内作家のidが自身の作家idと一致しないならno' do
+        Author.stub(:get_author_from_roles).with(any_args).and_return(@other_author)
+        @author.own?(@other_author).should be_false
+      end
     end
-    it 'パラメータが作家でないならno' do
-      @author.own?(nil).should == false
+    context 'ロール内作家が取得できないとき' do
+      before do
+        Author.stub(:get_author_from_roles).with(any_args).and_return(nil)
+      end
+      it 'Falseを返す' do
+        r = @author.own?([@author])
+        r.should be_false
+      end
     end
   end
   
   describe '閲覧許可に於いて' do
     before do
     end
-    context '検査対象がnil(ゲスト)のとき' do
-      context 'クローズドモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 1
-        end
-        it '不許可を返す。' do
-          r = @author.visible?(nil)
-          r.should be_false
-        end
-      end
-      context 'オープンモードのとき' do
-        before do
-          MagicNumber['run_mode'] = 0
-        end
-        it '許可する' do
-          r = @author.visible?(nil)
-          r.should be_true
-        end
-      end
-    end
-    context '検査対象が作家のとき' do
-      it '許可する' do
-        r = @author.visible?(@author)
-        r.should == true
+    context 'オープンモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 0
+      end
+      it '自身にゲスト用ロールチェックを問い合わせしている' do
+        Author.any_instance.stub(:guest_role_check).and_return(true)
+        Author.any_instance.should_receive(:guest_role_check).with(any_args).exactly(1)
+        r = @author.visible?([@author])
+      end
+      it 'ゲスト用ロールチェックが失敗したとき、falseを返す' do
+        Author.any_instance.stub(:guest_role_check).and_return(false)
+        r = @author.visible?([@author])
+        r.should be_false
       end
     end
-    context '検査対象がそれ以外のとき' do
-      it '不許可を返す。' do
-        r = @author.visible?(@admin)
+    context 'クローズドモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 1
+      end
+      it '自身に読者用ロールチェックを問い合わせしている' do
+        Author.any_instance.stub(:reader_role_check).and_return(true)
+        Author.any_instance.should_receive(:reader_role_check).with(any_args).exactly(1)
+        r = @author.visible?([@author])
+      end
+      it '読者用ロールチェックが失敗したとき、falseを返す' do
+        Author.any_instance.stub(:reader_role_check).and_return(false)
+        r = @author.visible?([@author])
         r.should be_false
       end
     end
+    context '事前チェックする' do
+      before do
+        MagicNumber['run_mode'] = 1
+        Author.any_instance.stub(:reader_role_check).and_return(true)
+      end
+    end
+    context 'つつがなく終わるとき' do
+      before do
+        MagicNumber['run_mode'] = 1
+        Author.any_instance.stub(:reader_role_check).and_return(true)
+      end
+      it '許可する' do
+        r = @author.visible?([@author])
+        r.should be_true
+      end
+    end
   end
   
   describe '絵師作家判定に於いて' do
@@ -216,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
@@ -368,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
@@ -396,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
@@ -410,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
@@ -424,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