- token = parse_token(response)
- assert_instance_of RequestToken, token
- assert_not_nil token.created_at
- assert_nil token.authorized_at
- assert_nil token.invalidated_at
- assert_allowed token, client.permissions
+
+ 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"
+ assert_response :success
+
+ oauth10a_without_callback(client)
+ oauth10a_refused(client)
+ end
+
+ private
+
+ def oauth10_without_callback(client)
+ token = get_request_token(client)
+
+ get "/oauth/authorize", :oauth_token => token.token
+ assert_response :success
+ assert_template :authorize