X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ef7f3d800cbdd49b692df10d312e5fd880e2e938..eaf4b32a7f6bf0cdc47dfc0c8b5ddb3358110ee4:/test/integration/client_application_test.rb diff --git a/test/integration/client_application_test.rb b/test/integration/client_application_test.rb index 9aa1bc56a..f74e3dc22 100644 --- a/test/integration/client_application_test.rb +++ b/test/integration/client_application_test.rb @@ -1,4 +1,4 @@ -require 'test_helper' +require "test_helper" class ClientApplicationTest < ActionDispatch::IntegrationTest fixtures :users, :client_applications @@ -7,19 +7,19 @@ class ClientApplicationTest < ActionDispatch::IntegrationTest # run through the procedure of creating a client application and checking # that it shows up on the user's account page. def test_create_application - get '/login' + get "/login" assert_response :redirect assert_redirected_to "controller" => "user", "action" => "login", "cookie_test" => "true" follow_redirect! assert_response :success - post '/login', 'username' => "test@example.com", 'password' => "test", :referer => '/user/test2' + post "/login", "username" => "test@example.com", "password" => "test", :referer => "/user/test2" assert_response :redirect follow_redirect! assert_response :success - assert_template 'user/view' - get '/user/test2/account' + assert_template "user/view" + get "/user/test2/account" assert_response :success - assert_template 'user/account' + assert_template "user/account" # check that the form to allow new client application creations exists assert_in_heading do @@ -27,14 +27,14 @@ class ClientApplicationTest < ActionDispatch::IntegrationTest end # now we follow the link to the oauth client list - get '/user/test2/oauth_clients' + get "/user/test2/oauth_clients" assert_response :success assert_in_body do assert_select "a[href='/user/test2/oauth_clients/new']" end # now we follow the link to the new oauth client page - get '/user/test2/oauth_clients/new' + get "/user/test2/oauth_clients/new" assert_response :success assert_in_heading do assert_select "h1", "Register a new application" @@ -50,20 +50,20 @@ class ClientApplicationTest < ActionDispatch::IntegrationTest end end - post '/user/test2/oauth_clients', 'client_application[name]' => 'My New App', - 'client_application[url]' => 'http://my.new.app.org/', - 'client_application[callback_url]' => 'http://my.new.app.org/callback', - 'client_application[support_url]' => 'http://my.new.app.org/support' + post "/user/test2/oauth_clients", "client_application[name]" => "My New App", + "client_application[url]" => "http://my.new.app.org/", + "client_application[callback_url]" => "http://my.new.app.org/callback", + "client_application[support_url]" => "http://my.new.app.org/support" assert_response :redirect follow_redirect! assert_response :success - assert_template 'oauth_clients/show' - assert_equal 'Registered the information successfully', flash[:notice] + assert_template "oauth_clients/show" + assert_equal "Registered the information successfully", flash[:notice] # now go back to the account page and check its listed under this user - get '/user/test2/oauth_clients' + get "/user/test2/oauth_clients" assert_response :success - assert_template 'oauth_clients/index' + assert_template "oauth_clients/index" assert_in_body { assert_select "div>a", "My New App" } end