X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/fc9df968fc1403a2130e5774552c430b2c0acf59..0c8ad2f86edefed72052b402742cadedb0d674d9:/test/integration/client_application_test.rb diff --git a/test/integration/client_application_test.rb b/test/integration/client_application_test.rb index 8e08cbda0..f34a9c430 100644 --- a/test/integration/client_application_test.rb +++ b/test/integration/client_application_test.rb @@ -12,15 +12,18 @@ class ClientApplicationTest < ActionController::IntegrationTest assert_redirected_to "controller" => "user", "action" => "login", "cookie_test" => "true" follow_redirect! assert_response :success - post '/login', {'user[email]' => "test@example.com", 'user[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_response :success + assert_template 'user/account' # check that the form to allow new client application creations exists - assert_in_body do - assert_select "a[href='/user/test2/oauth_clients']" + assert_in_heading do + assert_select "ul.secondary-actions li a[href='/user/test2/oauth_clients']" end # now we follow the link to the oauth client list @@ -33,8 +36,10 @@ class ClientApplicationTest < ActionController::IntegrationTest # now we follow the link to the new oauth client page get '/user/test2/oauth_clients/new' assert_response :success - assert_in_body do + assert_in_heading do assert_select "h1", "Register a new application" + end + assert_in_body do assert_select "form[action='/user/test2/oauth_clients']" do [ :name, :url, :callback_url, :support_url ].each do |inp| assert_select "input[name=?]", "client_application[#{inp}]" @@ -71,6 +76,20 @@ class ClientApplicationTest < ActionController::IntegrationTest # tests, as its too tied into the HTTP headers and stuff that it signs. end + ## + # utility method to make the HTML screening easier to read. + def assert_in_heading + assert_select "html:root" do + assert_select "body" do + assert_select "div.wrapper" do + assert_select "div.content-heading" do + yield + end + end + end + end + end + ## # utility method to make the HTML screening easier to read. def assert_in_body