OSDN Git Service

Merge branch 'v05' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v05
[pettanr/pettanr.git] / spec / models / license_group_spec.rb
index 46a225f..a1c4f70 100644 (file)
@@ -13,21 +13,27 @@ describe LicenseGroup do
   end
   describe '検証に於いて' do
     before do
+      @lg = FactoryGirl.build :license_group
     end
     
-    it 'オーソドックスなデータなら通る' do
-      @lg = Factory.build :license_group
-      @lg.should be_valid
-    end
-    
-    context 'nameを検証するとき' do
-      before do
-        @lg = Factory.build :license_group
+    context 'オーソドックスなデータのとき' do
+      it '下限データが通る' do
+        @lg.name = 'a'
+        @lg.classname = 'a'
+        @lg.caption = 'a'
+        @lg.url = 'http://test.jp/'
+        @lg.should be_valid
       end
-      it 'テストデータの確認' do
+      it '上限データが通る' do
         @lg.name = 'a'*50
+        @lg.classname = 'a'*50
+        @lg.caption = 'a'*30
+        @lg.url = 'http://test.jp/aaaaa' + 'a' * 180
         @lg.should be_valid
       end
+    end
+    
+    context 'nameを検証するとき' do
       it 'nullなら失敗する' do
         @lg.name = ''
         @lg.should_not be_valid
@@ -37,18 +43,11 @@ describe LicenseGroup do
         @lg.should_not be_valid
       end
       it '重複していたら失敗する' do
-        l = Factory :license_group
+        l = FactoryGirl.create :license_group
         @lg.should_not be_valid
       end
     end
     context 'classnameを検証するとき' do
-      before do
-        @lg = Factory.build :license_group
-      end
-      it 'テストデータの確認' do
-        @lg.classname = 'a'*50
-        @lg.should be_valid
-      end
       it 'nullなら失敗する' do
         @lg.classname = ''
         @lg.should_not be_valid
@@ -59,13 +58,6 @@ describe LicenseGroup do
       end
     end
     context 'captionを検証するとき' do
-      before do
-        @lg = Factory.build :license_group
-      end
-      it 'テストデータの確認' do
-        @lg.caption = 'a'*30
-        @lg.should be_valid
-      end
       it 'nullなら失敗する' do
         @lg.caption = ''
         @lg.should_not be_valid
@@ -76,13 +68,6 @@ describe LicenseGroup do
       end
     end
     context 'urlを検証するとき' do
-      before do
-        @lg = Factory.build :license_group
-      end
-      it 'テストデータの確認' do
-        @lg.url = 'http://test.com/'
-        @lg.should be_valid
-      end
       it 'nullなら失敗する' do
         @lg.url = ''
         @lg.should_not be_valid
@@ -98,10 +83,192 @@ describe LicenseGroup do
     end
   end
   
+  describe '文字コード検証に於いて' do
+    before do
+      @lg = FactoryGirl.build :license_group
+    end
+    
+    context 'nameを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @lg.name = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @lg.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+    
+    context 'classnameを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @lg.classname = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @lg.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+    
+    context 'captionを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @lg.caption = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @lg.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+    
+    context 'urlを検証するとき' do
+      it 'Shift JISなら失敗する' do
+        @lg.url = "\x83G\x83r\x83]\x83D"
+        lambda{
+          @lg.valid_encode
+        }.should raise_error(Pettanr::BadRequest)
+      end
+    end
+  end
+  
+  describe 'デフォルト値補充に於いて' do
+    it 'defined' do
+      @lg = FactoryGirl.build :license_group, :name => "1"
+      @lg.supply_default
+    end
+  end
+  
+  describe '上書き補充に於いて' do
+    it 'defined' do
+      @lg = FactoryGirl.build :license_group, :name => "1"
+      @lg.overwrite
+    end
+  end
+  
+  describe '閲覧許可に於いて' do
+    #ライセンスグループは作家作成する前から存在するので、閲覧制限の意味がない
+  end
+  
+  describe '一覧取得に於いて' do
+    before do
+      @lg = FactoryGirl.create :license_group, :name => "1"
+    end
+    context 'つつがなく終わるとき' do
+      it '一覧取得オプションを利用している' do
+        LicenseGroup.stub(:list_opt).with(any_args).and_return({})
+        LicenseGroup.should_receive(:list_opt).with(any_args).exactly(1)
+        r = LicenseGroup.list
+      end
+    end
+    it 'リストを返す' do
+      l = LicenseGroup.list
+      l.should eq [@lg]
+    end
+    it '名前順で並んでいる' do
+      @lg2 = FactoryGirl.create :license_group, :name => "5", :url => 'http://test.ptn/10'
+      l = LicenseGroup.list
+      l.should eq [@lg, @lg2]
+    end
+  end
+  describe '一覧取得オプションに於いて' do
+    it 'includeキーを含んでいる' do
+      r = LicenseGroup.list_opt
+      r.has_key?(:include).should be_true
+    end
+    it '1つの項目を含んでいる' do
+      r = LicenseGroup.list_opt[:include]
+      r.should have(1).items
+    end
+    it 'ライセンスを含んでいる' do
+      r = LicenseGroup.list_opt[:include]
+      r.has_key?(:licenses).should be_true
+    end
+  end
+  describe 'json一覧出力オプションに於いて' do
+    before do
+      @sp = FactoryGirl.create :system_picture
+      @lg = FactoryGirl.create :license_group
+      @license = FactoryGirl.create :license, :license_group_id => @lg.id, :system_picture_id => @sp.id
+      @user = FactoryGirl.create( :user_yas)
+      @author = FactoryGirl.create :author, :user_id => @user.id
+      @artist = FactoryGirl.create :artist_yas, :author_id => @author.id
+      @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
+      @comic = FactoryGirl.create :comic, :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
+    end
+    it 'ライセンスを含んでいる' do
+      r = LicenseGroup.list.to_json LicenseGroup.list_json_opt
+      j = JSON.parse r
+      i = j.first
+      i.has_key?('licenses').should be_true
+    end
+  end
+  
+  describe '単体取得に於いて' do
+    before do
+      @lg = FactoryGirl.create :license_group
+    end
+    context 'つつがなく終わるとき' do
+      it '単体取得オプションを利用している' do
+        LicenseGroup.stub(:show_opt).with(any_args).and_return({})
+        LicenseGroup.should_receive(:show_opt).with(any_args).exactly(1)
+        r = LicenseGroup.show @lg.id
+      end
+    end
+    it '指定のコマを返す' do
+      l = LicenseGroup.show @lg.id
+      l.should eq @lg
+    end
+    context '存在しないライセンスグループを開こうとしたとき' do
+      it '404RecordNotFound例外を返す' do
+        lambda{
+          LicenseGroup.show 110
+        }.should raise_error(ActiveRecord::RecordNotFound)
+      end
+    end
+  end
+  describe '単体取得オプションに於いて' do
+    it 'includeキーを含んでいる' do
+      r = LicenseGroup.show_opt
+      r.has_key?(:include).should be_true
+    end
+    it '1つの項目を含んでいる' do
+      r = LicenseGroup.show_opt[:include]
+      r.should have(1).items
+    end
+    it 'ライセンスを含んでいる' do
+      r = LicenseGroup.show_opt[:include]
+      r.has_key?(:licenses).should be_true
+    end
+  end
+  describe 'json単体出力オプションに於いて' do
+    before do
+      @sp = FactoryGirl.create :system_picture
+      @lg = FactoryGirl.create :license_group
+      @license = FactoryGirl.create :license, :license_group_id => @lg.id, :system_picture_id => @sp.id
+      @user = FactoryGirl.create( :user_yas)
+      @author = FactoryGirl.create :author, :user_id => @user.id
+      @artist = FactoryGirl.create :artist_yas, :author_id => @author.id
+      @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
+      @comic = FactoryGirl.create :comic, :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
+    end
+    it 'ライセンスを含んでいる' do
+      r = LicenseGroup.show(@lg.id).to_json LicenseGroup.show_json_opt
+      j = JSON.parse r
+      i = j
+      i.has_key?('licenses').should be_true
+    end
+  end
+  
   describe '更新に於いて' do
     before do
       @n = @j.keys.first
       @a = @j.values.first
+      @imager = ImagerTest.load("abc\ndef\nghi")
+      PettanImager.stub(:load).with(any_args).and_return(@imager)
     end
     context 'つつがなく終わるとき' do
       it 'データ更新準備を依頼する' do
@@ -263,78 +430,4 @@ describe LicenseGroup do
     end
   end
   
-  describe '単体取得に於いて' do
-    before do
-      @lg = Factory :license_group
-    end
-    it '指定のコマを返す' do
-      l = LicenseGroup.show @lg.id
-      l.should eq @lg
-    end
-  end
-  describe '関連テーブルプションに於いて' do
-    context 'オプションがないとき' do
-      it 'ライセンスを含んでいる' do
-        r = LicenseGroup.show_include_opt
-        r.has_key?(:licenses).should be_true
-      end
-    end
-  end
-  describe 'json単体出力オプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = LicenseGroup.show_json_include_opt
-      r.has_key?(:include).should be_true
-    end
-    it '1つの項目を含んでいる' do
-      r = LicenseGroup.show_json_include_opt[:include]
-      r.should have(1).items
-    end
-    it 'ライセンスを含んでいる' do
-      r = LicenseGroup.show_json_include_opt[:include]
-      r.has_key?(:licenses).should be_true
-    end
-  end
-  describe '一覧取得に於いて' do
-    before do
-      @lg = Factory :license_group, :name => "1"
-    end
-    it 'リストを返す' do
-      l = LicenseGroup.list
-      l.should eq [@lg]
-    end
-    it '名前順で並んでいる' do
-      @lg2 = Factory :license_group, :name => "5", :url => 'http://test.ptn/10'
-      l = LicenseGroup.list
-      l.should eq [@lg, @lg2]
-    end
-  end
-  describe 'list関連テーブルプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = LicenseGroup.list_opt
-      r.has_key?(:include).should be_true
-    end
-    it '1つの項目を含んでいる' do
-      r = LicenseGroup.list_opt[:include]
-      r.should have(1).items
-    end
-    it 'ライセンスを含んでいる' do
-      r = LicenseGroup.list_opt[:include]
-      r.has_key?(:licenses).should be_true
-    end
-  end
-  describe 'json一覧出力オプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = LicenseGroup.list_json_opt
-      r.has_key?(:include).should be_true
-    end
-    it '1つの項目を含んでいる' do
-      r = LicenseGroup.list_json_opt[:include]
-      r.should have(1).items
-    end
-    it 'ライセンスを含んでいる' do
-      r = LicenseGroup.list_json_opt[:include]
-      r.has_key?(:licenses).should be_true
-    end
-  end
-  
 end