OSDN Git Service

Merge branch 'v06jq' of git.sourceforge.jp:/gitroot/pettanr/pettanr into v06
[pettanr/pettanr.git] / spec / models / license_group_spec.rb
index 97cc5d2..a1c4f70 100644 (file)
@@ -83,6 +83,48 @@ 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"
@@ -105,13 +147,13 @@ describe LicenseGroup do
     before do
       @lg = FactoryGirl.create :license_group, :name => "1"
     end
-    context 'つつがなく終わるとき' do\r
-      it '一覧取得オプションを利用している' do\r
-        LicenseGroup.stub(:list_opt).with(any_args).and_return({})\r
-        LicenseGroup.should_receive(:list_opt).with(any_args).exactly(1)\r
+    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\r
-    end\r
+      end
+    end
     it 'リストを返す' do
       l = LicenseGroup.list
       l.should eq [@lg]
@@ -122,7 +164,7 @@ describe LicenseGroup do
       l.should eq [@lg, @lg2]
     end
   end
-  describe 'list関連テーブルプションに於いて' do
+  describe '一覧取得オプションに於いて' do
     it 'includeキーを含んでいる' do
       r = LicenseGroup.list_opt
       r.has_key?(:include).should be_true
@@ -137,17 +179,26 @@ describe LicenseGroup do
     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
+    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_json_opt[:include]
-      r.has_key?(:licenses).should be_true
+      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
   
@@ -155,26 +206,26 @@ describe LicenseGroup do
     before do
       @lg = FactoryGirl.create :license_group
     end
-    context 'つつがなく終わるとき' do\r
-      it '単体取得オプションを利用している' do\r
-        LicenseGroup.stub(:show_opt).with(any_args).and_return({})\r
-        LicenseGroup.should_receive(:show_opt).with(any_args).exactly(1)\r
+    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\r
-    end\r
+      end
+    end
     it '指定のコマを返す' do
       l = LicenseGroup.show @lg.id
       l.should eq @lg
     end
-    context '存在しないライセンスグループを開こうとしたとき' do\r
-      it '404RecordNotFound例外を返す' do\r
-        lambda{\r
-          LicenseGroup.show 110\r
-        }.should raise_error(ActiveRecord::RecordNotFound)\r
-      end\r
-    end\r
+    context '存在しないライセンスグループを開こうとしたとき' do
+      it '404RecordNotFound例外を返す' do
+        lambda{
+          LicenseGroup.show 110
+        }.should raise_error(ActiveRecord::RecordNotFound)
+      end
+    end
   end
-  describe 'å\8d\98ä½\93å\87ºå\8a\9bオプションに於いて' do
+  describe 'å\8d\98ä½\93å\8f\96å¾\97オプションに於いて' do
     it 'includeキーを含んでいる' do
       r = LicenseGroup.show_opt
       r.has_key?(:include).should be_true
@@ -189,17 +240,26 @@ describe LicenseGroup do
     end
   end
   describe 'json単体出力オプションに於いて' do
-    it 'includeキーを含んでいる' do
-      r = LicenseGroup.show_json_opt
-      r.has_key?(:include).should be_true
-    end
-    it '1つの項目を含んでいる' do
-      r = LicenseGroup.show_json_opt[:include]
-      r.should have(1).items
+    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_json_opt[:include]
-      r.has_key?(:licenses).should be_true
+      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