+ oauth10_without_callback(client)
+ oauth10_with_callback(client, "http://another.web.app.example.org/callback")
+ oauth10_refused(client)
+ end
+
+ def test_oauth10_desktop_app
+ client = create(:client_application, :allow_read_prefs => true, :allow_write_api => true, :allow_read_gpx => true)
+
+ post "/login", :params => { :username => client.user.email, :password => "test" }
+ follow_redirect!
+ follow_redirect!
+ assert_response :success
+
+ oauth10_without_callback(client)
+ oauth10_refused(client)
+ end
+
+ def test_oauth10a_web_app
+ client = create(:client_application, :callback_url => "http://some.web.app.example.org/callback", :allow_read_prefs => true, :allow_write_api => true, :allow_read_gpx => true)
+
+ post "/login", :params => { :username => client.user.email, :password => "test" }
+ follow_redirect!
+ follow_redirect!