Skip to content

Commit

Permalink
Fix some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Mar 1, 2015
1 parent 766246a commit 38a74cf
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 18 deletions.
32 changes: 16 additions & 16 deletions test/controllers/search_controller_test.rb
Expand Up @@ -24,65 +24,65 @@ def test_routes

##
# test searching nodes
def search_nodes
def test_search_nodes
get :search_nodes, :type => "test"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching of nodes is currently unavailable", response.headers["Error"]

get :search_nodes, :type => "test", :value => "yes"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching of nodes is currently unavailable", response.headers["Error"]

get :search_nodes, :name => "Test Node"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching of nodes is currently unavailable", response.headers["Error"]
end

##
# test searching ways
def search_ways
def test_search_ways
get :search_ways, :type => "test"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching for a key without value is currently unavailable", response.headers["Error"]

get :search_ways, :type => "test", :value => "yes"
assert_response :status => :success
assert_response :success
assert_select "way", 3

get :search_ways, :name => "Test Way"
assert_response :status => :success
assert_response :success
assert_select "way", 1
end

##
# test searching relations
def search_relations
def test_search_relations
get :search_relations, :type => "test"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching for a key without value is currently unavailable", response.headers["Error"]

get :search_relations, :type => "test", :value => "yes"
assert_response :status => :success
assert_response :success
assert_select "relation", 3

get :search_relations, :name => "Test Relation"
assert_response :status => :success
assert_response :success
assert_select "relation", 1
end

##
# test searching nodes, ways and relations
def search_all
def test_search_all
get :search_all, :type => "test"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching of nodes is currently unavailable", response.headers["Error"]

get :search_all, :type => "test", :value => "yes"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching of nodes is currently unavailable", response.headers["Error"]

get :search_all, :name => "Test"
assert_response :status => :service_unavailable
assert_response :service_unavailable
assert_equal "Searching of nodes is currently unavailable", response.headers["Error"]
end
end
17 changes: 16 additions & 1 deletion test/controllers/swf_controller_test.rb
@@ -1,6 +1,8 @@
require "test_helper"

class SwfControllerTest < ActionController::TestCase
api_fixtures

##
# test all routes which lead to this controller
def test_routes
Expand All @@ -13,9 +15,22 @@ def test_routes
##
# basic test that trackpoints at least returns some sort of flash movie
def test_trackpoints
get :trackpoints, :xmin => 51, :xmax => 52, :ymin => -1, :ymax => 1, :baselong => 0, :basey => 0, :masterscale => 1
get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1
assert_response :success
assert_equal "application/x-shockwave-flash", response.content_type
assert_match /^FWS/, response.body
assert_equal 80, response.body.length

get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => users(:normal_user).tokens.create.token
assert_response :success
assert_equal "application/x-shockwave-flash", response.content_type
assert_match /^FWS/, response.body
assert_equal 67, response.body.length

get :trackpoints, :xmin => -1, :xmax => 1, :ymin => 51, :ymax => 52, :baselong => 0, :basey => 0, :masterscale => 1, :token => users(:public_user).tokens.create.token
assert_response :success
assert_equal "application/x-shockwave-flash", response.content_type
assert_match /^FWS/, response.body
assert_equal 74, response.body.length
end
end
2 changes: 1 addition & 1 deletion test/fixtures/gpx_files.yml
Expand Up @@ -39,7 +39,7 @@ trackable_trace_file:

identifiable_trace_file:
id: 4
user_id: 2
user_id: 1
visible: true
name: Identifiable Trace.gpx
size: 123
Expand Down

0 comments on commit 38a74cf

Please sign in to comment.