+ oauth10_without_callback(client)
+ oauth10_with_callback(client, "http://another.web.app.org/callback")
+ oauth10_refused(client)
+ end
+
+ def test_oauth10_desktop_app
+ client = client_applications(:oauth_desktop_app)
+
+ post_via_redirect "/login", :username => client.user.email, :password => "test"
+ assert_response :success
+
+ oauth10_without_callback(client)
+ oauth10_refused(client)
+ end
+
+ def test_oauth10a_web_app
+ client = client_applications(:oauth_web_app)
+
+ post_via_redirect "/login", :username => client.user.email, :password => "test"
+ assert_response :success
+
+ oauth10a_without_callback(client)
+ oauth10a_with_callback(client, "http://another.web.app.org/callback")
+ oauth10a_refused(client)
+ end
+
+ def test_oauth10a_desktop_app
+ client = client_applications(:oauth_desktop_app)
+
+ post_via_redirect "/login", :username => client.user.email, :password => "test"