OSDN Git Service

t#32046:
[pettanr/pettanr.git] / spec / models / panel_picture_spec.rb
index f9c1a28..77eb490 100644 (file)
@@ -3,12 +3,13 @@ require 'spec_helper'
 #コマ絵
 describe PanelPicture do
   before do
-    FactoryGirl.create :admin
+    SpeechBalloonTemplate.delete_all
+    @admin = FactoryGirl.create :admin
     @user = FactoryGirl.create( :user_yas)
-    @author = @user.author
+    @author = FactoryGirl.create :author, :user_id => @user.id
     @artist = FactoryGirl.create :artist_yas, :author_id => @author.id
     @other_user = FactoryGirl.create( :user_yas)
-    @other_author = @other_user.author
+    @other_author = FactoryGirl.create :author, :user_id => @other_user.id
     @other_artist = FactoryGirl.create :artist_yas, :author_id => @other_author.id
     @sp = FactoryGirl.create :system_picture
     @lg = FactoryGirl.create :license_group
@@ -68,8 +69,8 @@ describe PanelPicture do
         @pp.should_not be_valid
       end
       it 'url形式でないなら失敗する' do
-        @pp.link = 'a'*200\r
-        @pp.should_not be_valid\r
+        @pp.link = 'a'*200
+        @pp.should_not be_valid
       end
     end
     context 'xを検証するとき' do
@@ -289,6 +290,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 'オープンモードのとき' do
+      before do
+        MagicNumber['run_mode'] = 0
+      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
+      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 '読者用ロールチェックが失敗したとき、falseを返す' do
+        PanelPicture.any_instance.stub(:reader_role_check).and_return(false)
+        r = @pp.visible?([@author])
+        r.should be_false
+      end
+    end
+    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
+      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,
@@ -319,13 +424,13 @@ describe PanelPicture do
         PanelPicture.page_size('1000').should eq PanelPicture.max_page_size
       end
     end
-    context 'つつがなく終わるとき' do\r
-      it '一覧取得オプションを利用している' do\r
-        PanelPicture.stub(:list_opt).with(any_args).and_return({:include => :panel})\r
-        PanelPicture.should_receive(:list_opt).with(any_args).exactly(1)\r
+    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.list
-      end\r
-    end\r
+      end
+    end
     it 'リストを返す' do
       r = PanelPicture.list
       r.should eq [@pp]
@@ -338,7 +443,7 @@ describe PanelPicture do
       r = PanelPicture.list
       r.should eq [npl, @pp]
     end
-    it '非公開のコマのコマ絵は自分のコマであっても含まない' do
+    it '非公開のコマのコマ絵は自分のコマであっても含まない' do
       hpl = FactoryGirl.create :panel, :author_id => @author.id, :publish => 0
       npl = FactoryGirl.create :panel_picture, :panel_id => hpl.id, :picture_id => @p.id,
         :width => @p.width, :height => @p.height
@@ -375,7 +480,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
@@ -385,53 +528,171 @@ 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
   describe 'json一覧出力オプションに於いて' do
     before do
-      @op = FactoryGirl.create :original_picture, :artist_id => @artist.id\r
-      @p = FactoryGirl.create :picture, :original_picture_id => @op.id, :license_id => @license.id, :artist_id => @artist.id\r
-      @rp = FactoryGirl.create :resource_picture, :artist_id => @artist.id, :license_id => @license.id, :original_picture_id => @op.id, :picture_id => @p.id\r
-      @sbt = FactoryGirl.create :speech_balloon_template\r
-      @comic = FactoryGirl.create :comic, :author_id => @author.id, :visible => 1
+      @op = FactoryGirl.create :original_picture, :artist_id => @artist.id
+      @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
       @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
       @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
         :width => @p.width, :height => @p.height
     end
@@ -470,88 +731,116 @@ describe PanelPicture do
       end
   end
   
-  describe '自分のコマ一覧取得に於いて' do
+  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\r
-      it '一覧取得オプションを利用している' do\r
-        PanelPicture.stub(:list_opt).with(any_args).and_return({:include => :panel})\r
-        PanelPicture.should_receive(:list_opt).with(any_args).exactly(1)\r
-        r = PanelPicture.mylist @author
-      end\r
-    end\r
-    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]
+    context 'つつがなく終わるとき' do
+      it '単体取得オプションを利用している' do
+        PanelPicture.stub(:show_opt).with(any_args).and_return({:include => :panel})
+        PanelPicture.should_receive(:show_opt).with(any_args).exactly(1)
+        r = PanelPicture.show @pp.id, @author
+      end
+      it '閲覧許可を問い合わせている' do
+        PanelPicture.any_instance.stub(:visible?).with(any_args).and_return(true)
+        PanelPicture.any_instance.should_receive(:visible?).with(any_args).exactly(1)
+        r = PanelPicture.show @pp.id, @author
+      end
     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]
+    it '指定のコマ絵を返す' do
+      PanelPicture.any_instance.stub(:visible?).and_return(true)
+      pl = PanelPicture.show @pp.id, @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]
+    context '閲覧許可が出なかったとき' do
+      it '403Forbidden例外を返す' do
+        PanelPicture.any_instance.stub(:visible?).and_return(false)
+        lambda{
+          PanelPicture.show @pp.id, @author
+        }.should raise_error(ActiveRecord::Forbidden)
+      end
     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
+    context '存在しないコマ絵を開こうとしたとき' do
+      it '404RecordNotFound例外を返す' do
+        lambda{
+          PanelPicture.show 110, @author
+        }.should raise_error(ActiveRecord::RecordNotFound)
       end
-      it '通常は2件を返す' do
-        r = PanelPicture.mylist @author, 1, 2
-        r.should have(2).items 
+    end
+  end
+  describe '単体取得オプションに於いて' do
+    it 'includeキーを含んでいる' do
+      r = PanelPicture.show_opt
+      r.has_key?(:include).should be_true
+    end
+    it '2つの項目を含んでいる' do
+      r = PanelPicture.show_opt[:include]
+      r.should have(2).items
+    end
+    it 'コマを含んでいる' do
+      r = PanelPicture.show_opt[:include]
+      r.has_key?(:panel).should be_true
+    end
+      it 'コマは作家を含んでいる' do
+        r = PanelPicture.show_opt[:include]
+        r[:panel].has_key?(:author).should be_true
       end
-      it 'page=1なら末尾2件を返す' do
-        #時系列で並んでいる
-        r = PanelPicture.mylist(@author, 1, 2)
-        r.should eq [@npl5, @npl4]
+    it '実素材を含んでいる' do
+      r = PanelPicture.show_opt[:include]
+      r.has_key?(:picture).should be_true
+    end
+      it '実素材は絵師を含んでいる' do
+        r = PanelPicture.show_opt[:include]
+        r[:picture].has_key?(:artist).should be_true
       end
-      it 'page=2なら中間2件を返す' do
-        r = PanelPicture.mylist(@author, 2, 2)
-        r.should eq [@npl3, @npl2]
+      it '実素材はライセンスを含んでいる' do
+        r = PanelPicture.show_opt[:include]
+        r[:picture].has_key?(:license).should be_true
       end
-      it 'page=3なら先頭1件を返す' do
-        r = PanelPicture.mylist(@author, 3, 2)
-        r.should eq [@pp]
+  end
+  describe 'json単体出力オプションに於いて' do
+    before do
+      @op = FactoryGirl.create :original_picture, :artist_id => @artist.id
+      @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
+      @panel = FactoryGirl.create :panel, :author_id => @author.id, :publish => 1
+      @pp = FactoryGirl.create :panel_picture, :panel_id => @panel.id, :picture_id => @p.id,
+        :width => @p.width, :height => @p.height
+    end
+    it 'コマを含んでいる' do
+      r = PanelPicture.show(@pp.id, @author).to_json PanelPicture.show_json_opt
+      j = JSON.parse r
+      i = j
+      i.has_key?('panel').should be_true
+    end
+      it 'コマは作家を含んでいる' do
+        r = PanelPicture.show(@pp.id, @author).to_json PanelPicture.show_json_opt
+        j = JSON.parse r
+        i = j
+        s = i['panel']
+        s.has_key?('author').should be_true
       end
+    it '実素材を含んでいる' do
+      r = PanelPicture.show(@pp.id, @author).to_json PanelPicture.show_json_opt
+      j = JSON.parse r
+      i = j
+      i.has_key?('picture').should be_true
     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)\r
+      it '実素材は絵師を含んでいる' do
+        r = PanelPicture.show(@pp.id, @author).to_json PanelPicture.show_json_opt
+        j = JSON.parse r
+        i = j
+        s = i['picture']
+        s.has_key?('artist').should be_true
       end
-      it '通常は全件(5件)を返す' do
-        r = PanelPicture.mylist @author, 5, 0
-        r.should have(5).items 
+      it '実素材はライセンスを含んでいる' do
+        r = PanelPicture.show(@pp.id, @author).to_json PanelPicture.show_json_opt
+        j = JSON.parse r
+        i = j
+        s = i['picture']
+        s.has_key?('license').should be_true
       end
-    end
   end
-  
 end