OSDN Git Service

fix test
[pettanr/pettanr.git] / spec / manifests / speech_balloon_template_spec.rb
index c3024f0..f49133e 100644 (file)
@@ -9,7 +9,7 @@ describe SpeechBalloonTemplate do
   
   describe 'ペタナイズに於いて' do
     it 'スクコマを閉じるためのバインダーである' do
-      expect(@model.ancestors.include?(Peta::Binder)).to eq true
+      expect(@model.ancestors.include?(Peta::Template)).to eq true
     end
     it '親モデルは持たない' do
       expect(@model.my_peta.parent_model_name).to be_blank
@@ -26,14 +26,14 @@ describe SpeechBalloonTemplate do
     before do
       @controller = @model.my_controller
     end
-    it 'ã\82¹ã\82¯ã\83­ã\83¼ã\83«のためのコントローラである' do
-      expect(@model.item_name).to eq 'scroll'
+    it 'ã\83\95ã\82­ã\83\80ã\82·ã\83\86ã\83³ã\83\97ã\83¬ã\83¼ã\83\88のためのコントローラである' do
+      expect(@model.item_name).to eq 'speech_balloon_template'
     end
     describe 'actionに於いて' do
       before do
         @actions = @controller.actions
-        @actions_names = ['index', 'by_author', 'by_panel', 'play', 'show', 
-          'count', 'count_by_author', 'count_by_panel', 
+        @actions_names = ['index', 'by_panel', 'show', 
+          'count', 'count_by_panel', 
           'new', 'edit', 'create', 'update', 'destroy']
       end
       it 'これらのアクションが定義されている' do
@@ -49,20 +49,8 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'list'
         end
         it 'マニフェストから設定を取り出している' do
-          # スクロールの公開リストを返すように定義している
-          set_list_action? @action, 'scroll', 'public'
-        end
-      end
-      describe 'by_authorに於いて' do
-        before do
-          @action = @actions['by_author']
-        end
-        it 'listタイプのアクションである' do
-          expect(@action.type).to eq 'list'
-        end
-        it 'マニフェストから設定を取り出している' do
-          # スクロールの作家フィルタリストを返すように定義している
-          set_list_action? @action, 'scroll', 'by_author'
+          # フキダシテンプレートの公開リストを返すように定義している
+          set_list_action? @action, 'speech_balloon_template', 'public'
         end
       end
       describe 'by_panelに於いて' do
@@ -73,8 +61,8 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'list'
         end
         it 'マニフェストから設定を取り出している' do
-          #ã\82¹ã\82¯ã\83­ã\83¼ã\83«のコマフィルタリストを返すように定義している
-          set_list_action? @action, 'scroll', 'by_panel'
+          #ã\83\95ã\82­ã\83\80ã\82·ã\83\86ã\83³ã\83\97ã\83¬ã\83¼ã\83\88のコマフィルタリストを返すように定義している
+          set_list_action? @action, 'speech_balloon_template', 'by_panel'
         end
       end
       describe 'countに於いて' do
@@ -85,20 +73,16 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'count'
         end
         it 'マニフェストから設定を取り出している' do
-          #ã\82¹ã\82¯ã\83­ã\83¼ã\83«の公開リストのカウントを返すように定義している
-          set_list_action? @action, 'scroll', 'public'
+          #ã\83\95ã\82­ã\83\80ã\82·ã\83\86ã\83³ã\83\97ã\83¬ã\83¼ã\83\88の公開リストのカウントを返すように定義している
+          set_list_action? @action, 'speech_balloon_template', 'public'
         end
       end
-      describe 'count_by_authorに於いて' do
+      describe 'showに於いて' do
         before do
-          @action = @actions['count_by_author']
-        end
-        it 'countタイプのアクションである' do
-          expect(@action.type).to eq 'count'
+          @action = @actions['show']
         end
-        it 'マニフェストから設定を取り出している' do
-          # スクロールの作家フィルタリストのカウントを返すように定義している
-          set_list_action? @action, 'scroll', 'by_author'
+        it 'showタイプのアクションである' do
+          expect(@action.type).to eq 'show'
         end
       end
       describe 'count_by_panelに於いて' do
@@ -109,8 +93,8 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'count'
         end
         it 'マニフェストから設定を取り出している' do
-          # ã\82¹ã\82¯ã\83­ã\83¼ã\83«のコマフィルタリストのカウントを返すように定義している
-          set_list_action? @action, 'scroll', 'by_panel'
+          # ã\83\95ã\82­ã\83\80ã\82·ã\83\86ã\83³ã\83\97ã\83¬ã\83¼ã\83\88のコマフィルタリストのカウントを返すように定義している
+          set_list_action? @action, 'speech_balloon_template', 'by_panel'
         end
       end
       describe 'newに於いて' do
@@ -121,7 +105,7 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'new'
         end
         it 'type' do
-          expect(@action.item_name).to eq 'scroll'
+          expect(@action.item_name).to eq 'speech_balloon_template'
         end
       end
       describe 'editに於いて' do
@@ -132,7 +116,7 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'edit'
         end
         it 'type' do
-          expect(@action.item_name).to eq 'scroll'
+          expect(@action.item_name).to eq 'speech_balloon_template'
         end
       end
       describe 'createに於いて' do
@@ -143,7 +127,7 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'create'
         end
         it 'type' do
-          expect(@action.item_name).to eq 'scroll'
+          expect(@action.item_name).to eq 'speech_balloon_template'
         end
       end
       describe 'updateに於いて' do
@@ -154,7 +138,7 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'update'
         end
         it 'type' do
-          expect(@action.item_name).to eq 'scroll'
+          expect(@action.item_name).to eq 'speech_balloon_template'
         end
       end
       describe 'destroyに於いて' do
@@ -165,7 +149,7 @@ describe SpeechBalloonTemplate do
           expect(@action.type).to eq 'destroy'
         end
         it 'type' do
-          expect(@action.item_name).to eq 'scroll'
+          expect(@action.item_name).to eq 'speech_balloon_template'
         end
       end
     end
@@ -177,57 +161,57 @@ describe SpeechBalloonTemplate do
       @my_manifest = @model.my_manifest
     end
     it 'サポート機能が動作している' do
-      expect(@my_manifest.model_name).to eq 'scroll'
+      expect(@my_manifest.model_name).to eq 'speech_balloon_template'
       expect(@my_manifest.classify).to eq @model
-      expect(@my_manifest.table_name).to eq 'scrolls'
+      expect(@my_manifest.table_name).to eq 'speech_balloon_templates'
     end
     
     describe 'associationsに於いて' do
       describe 'belongs_toに於いて' do
         before do
           @belongs_to = @my_manifest.associations.belongs_to
-          @names = ['author']
+          @names = ['system_picture']
         end
         it 'これらのモデルに所属している' do
           set_associations? @belongs_to, @names
         end
-        describe 'authorに於いて' do
+        describe 'system_pictureに於いて' do
           before do
-            @mani = @belongs_to['author']
+            @mani = @belongs_to['system_picture']
           end
           it 'マニフェストから設定を取り出している' do
             # モデル名と外部キーが定義あるいはデフォルト値補充されている
-            expect(@mani.model_name).to eq 'author'
-            expect(@mani.id_column).to eq 'author_id'
+            expect(@mani.model_name).to eq 'system_picture'
+            expect(@mani.id_column).to eq 'system_picture_id'
           end
           it 'サポート機能が動作している' do
             # モデルを再現できている
-            expect(@mani.model).to eq Author
+            expect(@mani.model).to eq SystemPicture
           end
         end
       end
       describe 'has_manyに於いて' do
         before do
           @has_many = @model.my_manifest.associations.has_many
-          @names = ['scroll_panels', 'panels']
+          @names = ['speech_balloons', 'panels']
         end
         it 'これらのモデルを所持している' do
           set_associations? @has_many, @names
         end
-        describe 'scroll_panelsに於いて' do
+        describe 'speech_balloonsに於いて' do
           before do
-            @mani = @has_many['scroll_panels']
+            @mani = @has_many['speech_balloons']
           end
           it 'マニフェストから設定を取り出している' do
             # モデル名, 外部キーと中間モデルが定義あるいはデフォルト値補充されている
-            expect(@mani.model_name).to eq 'scroll_panel'
-            expect(@mani.foreign_key).to eq 'scroll_id'
+            expect(@mani.model_name).to eq 'speech_balloon'
+            expect(@mani.foreign_key).to eq 'speech_balloon_template_id'
             expect(@mani.through).to be nil
           end
           it 'サポート機能が動作している' do
             # モデルを再現できている, 中間モデルフラグ
             expect(@mani.through?).to be false
-            expect(@mani.model).to eq ScrollPanel
+            expect(@mani.model).to eq SpeechBalloon
           end
         end
         describe 'panelsに於いて' do
@@ -237,8 +221,8 @@ describe SpeechBalloonTemplate do
           it 'マニフェストから設定を取り出している' do
             # モデル名, 外部キーと中間モデルが定義あるいはデフォルト値補充されている
             expect(@mani.model_name).to eq 'panel'
-            expect(@mani.foreign_key).to eq 'scroll_id'
-            expect(@mani.through).to eq 'scroll_panels'
+            expect(@mani.foreign_key).to eq 'speech_balloon_template_id'
+            expect(@mani.through).to eq 'speech_balloons'
           end
           it 'サポート機能が動作している' do
             # モデルを再現できている, 中間モデルフラグ
@@ -255,45 +239,57 @@ describe SpeechBalloonTemplate do
       end
       it 'これらのカラムを定義している' do
         set_attributes? @attributes, 
-          ['id', 'title', 'description', 'visible', 'author_id', 
+          ['id', 'name', 'module_name', 'caption', 't', 'system_picture_id', 'settings', 
           'created_at', 'updated_at']
       end
-      describe 'titleに於いて' do
+      describe 'nameに於いて' do
         before do
-          @attribute = @attributes['title']
+          @attribute = @attributes['name']
         end
         it 'textタイプである' do
           expect(@attribute.type).to eq 'text'
         end
       end
-      describe 'descriptionに於いて' do
+      describe 'module_nameに於いて' do
         before do
-          @attribute = @attributes['description']
+          @attribute = @attributes['module_name']
         end
         it 'textタイプである' do
           expect(@attribute.type).to eq 'text'
         end
       end
-      describe 'visibleに於いて' do
+      describe 'captionに於いて' do
         before do
-          @attribute = @attributes['visible']
+          @attribute = @attributes['caption']
+        end
+        it 'textタイプである' do
+          expect(@attribute.type).to eq 'text'
+        end
+      end
+      describe 'tに於いて' do
+        before do
+          @attribute = @attributes['t']
         end
         it 'numberタイプである' do
           expect(@attribute.type).to eq 'number'
         end
-        it '選択肢を定数から取得できるように定義している' do
-          expect(@attribute.source.type).to eq 'magic_number'
-          expect(@attribute.source.select_item_name).to eq 'scroll_visible_items'
-        end
       end
-      describe 'author_idに於いて' do
+      describe 'system_picture_idに於いて' do
         before do
-          @attribute = @attributes['author_id']
+          @attribute = @attributes['system_picture_id']
         end
         it 'numberタイプである' do
           expect(@attribute.type).to eq 'number'
         end
       end
+      describe 'settingsに於いて' do
+        before do
+          @attribute = @attributes['settings']
+        end
+        it 'textタイプである' do
+          expect(@attribute.type).to eq 'text'
+        end
+      end
     end
     
   end