def setup
Object.const_set("ID_KEY", client_applications(:oauth_web_app).key)
Object.const_set("POTLATCH2_KEY", client_applications(:oauth_web_app).key)
+
+ stub_request(:get, "http://api.hostip.info/country.php?ip=0.0.0.0")
end
##
# Test the index page redirects
def test_index_redirect
+ get :index, :node => 123
+ assert_redirected_to :controller => :browse, :action => :node, :id => 123
+
+ get :index, :way => 123
+ assert_redirected_to :controller => :browse, :action => :way, :id => 123
+
+ get :index, :relation => 123
+ assert_redirected_to :controller => :browse, :action => :relation, :id => 123
+
+ get :index, :note => 123
+ assert_redirected_to :controller => :browse, :action => :note, :id => 123
+
+ get :index, :query => "test"
+ assert_redirected_to :controller => :geocoder, :action => :search, :query => "test"
+
get :index, :lat => 4, :lon => 5
assert_redirected_to :controller => :site, :action => :index, :anchor => "map=5/4/5"
# Test editing a specific note
def test_edit_with_note
user = users(:public_user)
- note = notes(:open_note)
+ note = create(:note) do |n|
+ n.comments.create(:author_id => user.id)
+ end
get :edit, { :note => note.id }, { :user => user.id }
assert_response :success