]> git.openstreetmap.org Git - rails.git/blobdiff - test/factories/notes.rb
Test resolving deleted user's note issue
[rails.git] / test / factories / notes.rb
index 77b4245aa5b037fdf5eb491d565e63f2017d93d0..268a2bfb7a489a4f679e0f3f03e71a38be0b245f 100644 (file)
@@ -2,7 +2,20 @@ FactoryBot.define do
   factory :note do
     latitude { 1 * GeoRecord::SCALE }
     longitude { 1 * GeoRecord::SCALE }
-    # tile { QuadTile.tile_for_point(1,1) }
+    description { "Default note's description" }
+
+    trait :closed do
+      transient do
+        closed_by { nil }
+      end
+
+      status { "closed" }
+      closed_at { Time.now.utc }
+
+      after(:create) do |note, context|
+        create(:note_comment, :author => context.closed_by, :body => "Closing comment", :event => "closed", :note => note)
+      end
+    end
 
     factory :note_with_comments do
       transient do
@@ -10,7 +23,8 @@ FactoryBot.define do
       end
 
       after(:create) do |note, evaluator|
-        create_list(:note_comment, evaluator.comments_count, :note => note)
+        create(:note_comment, :event => "opened", :note => note)
+        create_list(:note_comment, evaluator.comments_count - 1, :note => note)
       end
     end
   end