]> git.openstreetmap.org Git - rails.git/commitdiff
Replace changeset_comments fixtures with a factory.
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 12 Oct 2016 14:43:54 +0000 (15:43 +0100)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 12 Oct 2016 14:44:27 +0000 (15:44 +0100)
There's little point in testing ChangesetComment.count so I've removed that
test.

test/controllers/browse_controller_test.rb
test/controllers/changeset_controller_test.rb
test/factories/changeset_comments.rb [new file with mode: 0644]
test/fixtures/changeset_comments.yml [deleted file]
test/integration/user_changeset_comments_test.rb
test/models/changeset_comment_test.rb
test/test_helper.rb

index f4e157f6607e082e13c3deefabb1c53237da044f..c5f1eef5c93bc1d1327707e296e91757596588dd 100644 (file)
@@ -75,6 +75,9 @@ class BrowseControllerTest < ActionController::TestCase
   end
 
   def test_read_changeset_hidden_comments
+    create_list(:changeset_comment, 3)
+    create(:changeset_comment, :visible => false)
+
     browse_check "changeset", changesets(:normal_user_closed_change).id, "browse/changeset"
     assert_select "div.changeset-comments ul li", :count => 3
 
index c996bbaab3c2297e8effe87b41158b58b1610721..a9a838aff9da8749f41575ab78b32cad826ee2e3 100644 (file)
@@ -3,7 +3,7 @@ require "changeset_controller"
 
 class ChangesetControllerTest < ActionController::TestCase
   api_fixtures
-  fixtures :changeset_comments, :changesets_subscribers
+  fixtures :changesets_subscribers
 
   ##
   # test all routes which lead to this controller
@@ -197,6 +197,7 @@ class ChangesetControllerTest < ActionController::TestCase
     assert_select "osm>changeset>discussion>comment", 0
 
     changeset_id = changesets(:normal_user_closed_change).id
+    create_list(:changeset_comment, 3, :changeset_id => changeset_id)
 
     get :read, :id => changeset_id, :include_discussion => true
     assert_response :success, "cannot get closed changeset with comments"
@@ -2149,7 +2150,7 @@ EOF
   # test hide comment fail
   def test_hide_comment_fail
     # unauthorized
-    comment = changeset_comments(:normal_comment_1)
+    comment = create(:changeset_comment)
     assert_equal true, comment.visible
 
     post :hide_comment, :id => comment.id
@@ -2174,7 +2175,7 @@ EOF
   ##
   # test hide comment succes
   def test_hide_comment_success
-    comment = changeset_comments(:normal_comment_1)
+    comment = create(:changeset_comment)
     assert_equal true, comment.visible
 
     basic_authorization(users(:moderator_user).email, "test")
@@ -2188,7 +2189,7 @@ EOF
   # test unhide comment fail
   def test_unhide_comment_fail
     # unauthorized
-    comment = changeset_comments(:hidden_comment)
+    comment = create(:changeset_comment, :visible => false)
     assert_equal false, comment.visible
 
     post :unhide_comment, :id => comment.id
@@ -2213,7 +2214,7 @@ EOF
   ##
   # test unhide comment succes
   def test_unhide_comment_success
-    comment = changeset_comments(:hidden_comment)
+    comment = create(:changeset_comment, :visible => false)
     assert_equal false, comment.visible
 
     basic_authorization(users(:moderator_user).email, "test")
@@ -2226,6 +2227,8 @@ EOF
   ##
   # test comments feed
   def test_comments_feed
+    create_list(:changeset_comment, 3, :changeset_id => changesets(:normal_user_closed_change).id)
+
     get :comments_feed, :format => "rss"
     assert_response :success
     assert_equal "application/rss+xml", @response.content_type
diff --git a/test/factories/changeset_comments.rb b/test/factories/changeset_comments.rb
new file mode 100644 (file)
index 0000000..5fb2621
--- /dev/null
@@ -0,0 +1,12 @@
+FactoryGirl.define do
+  factory :changeset_comment do
+    sequence(:body) { |n| "Changeset comment #{n}" }
+    visible true
+
+    # FIXME: needs changeset factory
+    changeset_id 3
+
+    # FIXME: needs user factory
+    author_id 1
+  end
+end
diff --git a/test/fixtures/changeset_comments.yml b/test/fixtures/changeset_comments.yml
deleted file mode 100644 (file)
index cd7076f..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-normal_comment_1:
-  id: 1
-  changeset_id: 3
-  created_at: 2007-01-01 00:00:00
-  author_id: 1
-  body: 'A comment from a logged-in user'
-  visible: true
-
-normal_comment_2:
-  id: 2
-  changeset_id: 3
-  created_at: 2007-02-01 00:00:00
-  author_id: 4
-  body: 'A comment from another logged-in user'
-  visible: true
-
-normal_comment_3:
-  id: 4
-  changeset_id: 3
-  created_at: 2007-02-01 00:00:00
-  author_id: 4
-  body: 'A comment from another logged-in user'
-  visible: true
-
-hidden_comment:
-  id: 3
-  changeset_id: 3
-  created_at: 2007-02-01 00:00:00
-  author_id: 4
-  body: 'A non-visible comment'
-  visible: false
\ No newline at end of file
index d183e4d564e848e57a2ae313792f5fa1bc09b8e6..5dbcaa0b413bea1ce52f5a94a10dfef7cc8c5162 100644 (file)
@@ -1,7 +1,7 @@
 require "test_helper"
 
 class UserChangesetCommentsTest < ActionDispatch::IntegrationTest
-  fixtures :users, :changesets, :changeset_comments
+  fixtures :users, :changesets
 
   # Test 'log in to comment' message for nonlogged in user
   def test_log_in_message
index 10901f70171f75381a6ea4959e21eaac433c0d87..8215ce129f842956fe0bda591b95b3547394103e 100644 (file)
@@ -2,15 +2,11 @@
 require "test_helper"
 
 class ChangesetCommentTest < ActiveSupport::TestCase
-  fixtures :changesets, :changeset_comments
-
-  def test_changeset_comment_count
-    assert_equal 4, ChangesetComment.count
-  end
+  fixtures :changesets
 
   # validations
   def test_does_not_accept_invalid_author
-    comment = changeset_comments(:normal_comment_1)
+    comment = create(:changeset_comment)
 
     comment.author = nil
     assert !comment.valid?
@@ -20,7 +16,7 @@ class ChangesetCommentTest < ActiveSupport::TestCase
   end
 
   def test_does_not_accept_invalid_changeset
-    comment = changeset_comments(:normal_comment_1)
+    comment = create(:changeset_comment)
 
     comment.changeset = nil
     assert !comment.valid?
@@ -30,13 +26,14 @@ class ChangesetCommentTest < ActiveSupport::TestCase
   end
 
   def test_does_not_accept_empty_visible
-    comment = changeset_comments(:normal_comment_1)
+    comment = create(:changeset_comment)
 
     comment.visible = nil
     assert !comment.valid?
   end
 
   def test_comments_of_changeset_count
+    create_list(:changeset_comment, 3, :changeset_id => changesets(:normal_user_closed_change).id)
     assert_equal 3, Changeset.find(changesets(:normal_user_closed_change).id).comments.count
   end
 
@@ -47,13 +44,13 @@ class ChangesetCommentTest < ActiveSupport::TestCase
            "foo\ufffebar", "foo\uffffbar"]
 
     ok.each do |body|
-      changeset_comment = changeset_comments(:normal_comment_1)
+      changeset_comment = create(:changeset_comment)
       changeset_comment.body = body
       assert changeset_comment.valid?, "#{body} is invalid, when it should be"
     end
 
     bad.each do |body|
-      changeset_comment = changeset_comments(:normal_comment_1)
+      changeset_comment = create(:changeset_comment)
       changeset_comment.body = body
       assert !changeset_comment.valid?, "#{body} is valid when it shouldn't be"
     end
index 42b7cc498bb1b085e842f7fd2e368f651b5ac7e7..e3d9f0ff86ad692006898cb0ce458ce64b22b1fc 100644 (file)
@@ -14,7 +14,7 @@ module ActiveSupport
     def self.api_fixtures
       # print "setting up the api_fixtures"
       fixtures :users, :user_roles, :user_blocks
-      fixtures :changesets, :changeset_tags, :changeset_comments
+      fixtures :changesets, :changeset_tags
 
       fixtures :current_nodes, :nodes
       set_fixture_class :current_nodes => Node