Merge remote-tracking branch 'upstream/pull/4359'
This commit is contained in:
commit
d90f353e5f
16 changed files with 273 additions and 137 deletions
|
@ -5,6 +5,14 @@ module Api
|
|||
##
|
||||
# test all routes which lead to this controller
|
||||
def test_routes
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/changeset_comments", :method => :get },
|
||||
{ :controller => "api/changeset_comments", :action => "index" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/changeset_comments.json", :method => :get },
|
||||
{ :controller => "api/changeset_comments", :action => "index", :format => "json" }
|
||||
)
|
||||
assert_routing(
|
||||
{ :path => "/api/0.6/changeset/1/comment", :method => :post },
|
||||
{ :controller => "api/changeset_comments", :action => "create", :id => "1" }
|
||||
|
@ -31,6 +39,46 @@ module Api
|
|||
)
|
||||
end
|
||||
|
||||
def test_index
|
||||
user1 = create(:user)
|
||||
user2 = create(:user)
|
||||
changeset1 = create(:changeset, :closed, :user => user2)
|
||||
comment11 = create(:changeset_comment, :changeset => changeset1, :author => user1, :created_at => "2023-01-01", :body => "changeset 1 question")
|
||||
comment12 = create(:changeset_comment, :changeset => changeset1, :author => user2, :created_at => "2023-02-01", :body => "changeset 1 answer")
|
||||
changeset2 = create(:changeset, :closed, :user => user1)
|
||||
comment21 = create(:changeset_comment, :changeset => changeset2, :author => user1, :created_at => "2023-03-01", :body => "changeset 2 note")
|
||||
comment22 = create(:changeset_comment, :changeset => changeset2, :author => user1, :created_at => "2023-04-01", :body => "changeset 2 extra note")
|
||||
comment23 = create(:changeset_comment, :changeset => changeset2, :author => user2, :created_at => "2023-05-01", :body => "changeset 2 review")
|
||||
|
||||
get api_changeset_comments_path
|
||||
assert_response :success
|
||||
assert_comments_in_order [comment23, comment22, comment21, comment12, comment11]
|
||||
|
||||
get api_changeset_comments_path(:limit => 3)
|
||||
assert_response :success
|
||||
assert_comments_in_order [comment23, comment22, comment21]
|
||||
|
||||
get api_changeset_comments_path(:from => "2023-03-15T00:00:00Z")
|
||||
assert_response :success
|
||||
assert_comments_in_order [comment23, comment22]
|
||||
|
||||
get api_changeset_comments_path(:from => "2023-01-15T00:00:00Z", :to => "2023-04-15T00:00:00Z")
|
||||
assert_response :success
|
||||
assert_comments_in_order [comment22, comment21, comment12]
|
||||
|
||||
get api_changeset_comments_path(:user => user1.id)
|
||||
assert_response :success
|
||||
assert_comments_in_order [comment22, comment21, comment11]
|
||||
|
||||
get api_changeset_comments_path(:from => "2023-03-15T00:00:00Z", :format => "json")
|
||||
assert_response :success
|
||||
js = ActiveSupport::JSON.decode(@response.body)
|
||||
assert_not_nil js
|
||||
assert_equal 2, js["comments"].count
|
||||
assert_equal comment23.id, js["comments"][0]["id"]
|
||||
assert_equal comment22.id, js["comments"][1]["id"]
|
||||
end
|
||||
|
||||
def test_create_by_unauthorized
|
||||
assert_no_difference "ChangesetComment.count" do
|
||||
post changeset_comment_path(create(:changeset, :closed), :text => "This is a comment")
|
||||
|
@ -422,5 +470,20 @@ module Api
|
|||
assert_response :success
|
||||
assert comment.reload.visible
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
##
|
||||
# check that certain comments exist in the output in the specified order
|
||||
def assert_comments_in_order(comments)
|
||||
assert_dom "osm > comment", comments.size do |dom_comments|
|
||||
comments.zip(dom_comments).each do |comment, dom_comment|
|
||||
assert_dom dom_comment, "> @id", comment.id.to_s
|
||||
assert_dom dom_comment, "> @uid", comment.author.id.to_s
|
||||
assert_dom dom_comment, "> @user", comment.author.display_name
|
||||
assert_dom dom_comment, "> text", comment.body
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1066,6 +1066,37 @@ module Api
|
|||
assert_select "gpx", :count => 1 do
|
||||
assert_select "wpt", :count => 1
|
||||
end
|
||||
|
||||
user2 = create(:user)
|
||||
get search_api_notes_path(:user => user2.id, :format => "xml")
|
||||
assert_response :success
|
||||
assert_equal "application/xml", @response.media_type
|
||||
assert_select "osm", :count => 1 do
|
||||
assert_select "note", :count => 0
|
||||
end
|
||||
end
|
||||
|
||||
def test_search_by_time_success
|
||||
note1 = create(:note, :created_at => "2020-02-01T00:00:00Z", :updated_at => "2020-04-01T00:00:00Z")
|
||||
note2 = create(:note, :created_at => "2020-03-01T00:00:00Z", :updated_at => "2020-05-01T00:00:00Z")
|
||||
|
||||
get search_api_notes_path(:from => "2020-02-15T00:00:00Z", :to => "2020-04-15T00:00:00Z", :format => "xml")
|
||||
assert_response :success
|
||||
assert_equal "application/xml", @response.media_type
|
||||
assert_select "osm", :count => 1 do
|
||||
assert_select "note", :count => 1 do
|
||||
assert_select "id", note2.id.to_s
|
||||
end
|
||||
end
|
||||
|
||||
get search_api_notes_path(:from => "2020-02-15T00:00:00Z", :to => "2020-04-15T00:00:00Z", :sort => "updated_at", :format => "xml")
|
||||
assert_response :success
|
||||
assert_equal "application/xml", @response.media_type
|
||||
assert_select "osm", :count => 1 do
|
||||
assert_select "note", :count => 1 do
|
||||
assert_select "id", note1.id.to_s
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_search_by_bbox_success
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue