]> git.openstreetmap.org Git - rails.git/blob - test/integration/client_application_test.rb
Merge 16070:16110 from trunk.
[rails.git] / test / integration / client_application_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2
3 class ClientApplicationTest < ActionController::IntegrationTest
4   fixtures :users, :client_applications
5
6   ##
7   # run through the procedure of creating a client application and checking
8   # that it shows up on the user's account page.
9   def test_create_application
10     post '/login', {'user[email]' => "test@example.com", 'user[password]' => "test", :referer => '/user/test/account'}
11     assert_response :redirect
12     follow_redirect!
13     assert_response :success
14     assert_template 'user/account'
15
16     # check that the form to allow new client application creations exists
17     assert_in_body do
18       assert_select "h2", "Application Developers" 
19       assert_select "a[href='/oauth_clients/new']"
20     end
21
22     # now we follow the link to the new oauth client page
23     get '/oauth_clients/new'
24     assert_response :success
25     assert_in_body do
26       assert_select "h1", "Register a new application"
27       assert_select "form[action='/oauth_clients']" do
28         [ :name, :url, :callback_url, :support_url ].each do |inp|
29           assert_select "input[name=?]", "client_application[#{inp}]"
30         end
31         ClientApplication.all_permissions.each do |perm|
32           assert_select "input[name=?]", "client_application[#{perm}]"
33         end
34       end
35     end
36
37     post '/oauth_clients', {
38       'client_application[name]' => 'My New App',
39       'client_application[url]' => 'http://my.new.app.org/',
40       'client_application[callback_url]' => 'http://my.new.app.org/callback',
41       'client_application[support_url]' => 'http://my.new.app.org/support'}
42     assert_response :redirect
43     follow_redirect!
44     assert_response :success
45     assert_template 'oauth_clients/show'
46     assert_equal 'Registered the information successfully', flash[:notice]
47
48     # now go back to the account page and check its listed under this user
49     get '/user/test/account'
50     assert_response :success
51     assert_template 'user/account'
52     assert_in_body { assert_select "li>div>a", "My New App" }
53   end
54
55   ##
56   # fake client workflow.
57   # this acts like a 3rd party client trying to access the site.
58   def test_3rd_party_token
59     # apparently the oauth gem doesn't really support being used inside integration
60     # tests, as its too tied into the HTTP headers and stuff that it signs.
61   end
62
63   ##
64   # utility method to make the HTML screening easier to read.
65   def assert_in_body
66     assert_select "html:root" do
67       assert_select "body" do
68         assert_select "div#content" do
69           yield
70         end
71       end
72     end
73   end
74
75 end