Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(670)

Unified Diff: pkg/oauth2/test/authorization_code_grant_test.dart

Issue 812253002: Delete a bunch of packages that are now on GitHub. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Un-delete http Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/oauth2/pubspec.yaml ('k') | pkg/oauth2/test/client_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/oauth2/test/authorization_code_grant_test.dart
diff --git a/pkg/oauth2/test/authorization_code_grant_test.dart b/pkg/oauth2/test/authorization_code_grant_test.dart
deleted file mode 100644
index 2c3265e21ec107a526d70dd637adfdb3da400df3..0000000000000000000000000000000000000000
--- a/pkg/oauth2/test/authorization_code_grant_test.dart
+++ /dev/null
@@ -1,194 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library authorization_code_grant_test;
-
-import 'dart:async';
-import 'dart:convert';
-
-import 'package:unittest/unittest.dart';
-import 'package:http/http.dart' as http;
-import 'package:oauth2/oauth2.dart' as oauth2;
-
-import 'utils.dart';
-
-final redirectUrl = Uri.parse('http://example.com/redirect');
-
-ExpectClient client;
-
-oauth2.AuthorizationCodeGrant grant;
-
-void createGrant() {
- client = new ExpectClient();
- grant = new oauth2.AuthorizationCodeGrant(
- 'identifier',
- 'secret',
- Uri.parse('https://example.com/authorization'),
- Uri.parse('https://example.com/token'),
- httpClient: client);
-}
-
-void main() {
- group('.getAuthorizationUrl', () {
- setUp(createGrant);
-
- test('builds the correct URL', () {
- expect(grant.getAuthorizationUrl(redirectUrl).toString(),
- equals('https://example.com/authorization'
- '?response_type=code'
- '&client_id=identifier'
- '&redirect_uri=http%3A%2F%2Fexample.com%2Fredirect'));
- });
-
- test('builds the correct URL with scopes', () {
- var authorizationUrl = grant.getAuthorizationUrl(
- redirectUrl, scopes: ['scope', 'other/scope']);
- expect(authorizationUrl.toString(),
- equals('https://example.com/authorization'
- '?response_type=code'
- '&client_id=identifier'
- '&redirect_uri=http%3A%2F%2Fexample.com%2Fredirect'
- '&scope=scope+other%2Fscope'));
- });
-
- test('builds the correct URL with state', () {
- var authorizationUrl = grant.getAuthorizationUrl(
- redirectUrl, state: 'state');
- expect(authorizationUrl.toString(),
- equals('https://example.com/authorization'
- '?response_type=code'
- '&client_id=identifier'
- '&redirect_uri=http%3A%2F%2Fexample.com%2Fredirect'
- '&state=state'));
- });
-
- test('merges with existing query parameters', () {
- grant = new oauth2.AuthorizationCodeGrant(
- 'identifier',
- 'secret',
- Uri.parse('https://example.com/authorization?query=value'),
- Uri.parse('https://example.com/token'),
- httpClient: client);
-
- var authorizationUrl = grant.getAuthorizationUrl(redirectUrl);
- expect(authorizationUrl.toString(),
- equals('https://example.com/authorization'
- '?query=value'
- '&response_type=code'
- '&client_id=identifier'
- '&redirect_uri=http%3A%2F%2Fexample.com%2Fredirect'));
- });
-
- test("can't be called twice", () {
- grant.getAuthorizationUrl(redirectUrl);
- expect(() => grant.getAuthorizationUrl(redirectUrl), throwsStateError);
- });
- });
-
- group('.handleAuthorizationResponse', () {
- setUp(createGrant);
-
- test("can't be called before .getAuthorizationUrl", () {
- expect(grant.handleAuthorizationResponse({}), throwsStateError);
- });
-
- test("can't be called twice", () {
- grant.getAuthorizationUrl(redirectUrl);
- expect(grant.handleAuthorizationResponse({'code': 'auth code'}),
- throwsFormatException);
- expect(grant.handleAuthorizationResponse({'code': 'auth code'}),
- throwsStateError);
- });
-
- test('must have a state parameter if the authorization URL did', () {
- grant.getAuthorizationUrl(redirectUrl, state: 'state');
- expect(grant.handleAuthorizationResponse({'code': 'auth code'}),
- throwsFormatException);
- });
-
- test('must have the same state parameter the authorization URL did', () {
- grant.getAuthorizationUrl(redirectUrl, state: 'state');
- expect(grant.handleAuthorizationResponse({
- 'code': 'auth code',
- 'state': 'other state'
- }), throwsFormatException);
- });
-
- test('must have a code parameter', () {
- grant.getAuthorizationUrl(redirectUrl);
- expect(grant.handleAuthorizationResponse({}), throwsFormatException);
- });
-
- test('with an error parameter throws an AuthorizationException', () {
- grant.getAuthorizationUrl(redirectUrl);
- expect(
- grant.handleAuthorizationResponse({'error': 'invalid_request'}),
- throwsA((e) => e is oauth2.AuthorizationException));
- });
-
- test('sends an authorization code request', () {
- grant.getAuthorizationUrl(redirectUrl);
- client.expectRequest((request) {
- expect(request.method, equals('POST'));
- expect(request.url.toString(), equals(grant.tokenEndpoint.toString()));
- expect(request.bodyFields, equals({
- 'grant_type': 'authorization_code',
- 'code': 'auth code',
- 'redirect_uri': redirectUrl.toString(),
- 'client_id': 'identifier',
- 'client_secret': 'secret'
- }));
-
- return new Future.value(new http.Response(JSON.encode({
- 'access_token': 'access token',
- 'token_type': 'bearer',
- }), 200, headers: {'content-type': 'application/json'}));
- });
-
- expect(grant.handleAuthorizationResponse({'code': 'auth code'})
- .then((client) => client.credentials.accessToken),
- completion(equals('access token')));
- });
- });
-
- group('.handleAuthorizationCode', () {
- setUp(createGrant);
-
- test("can't be called before .getAuthorizationUrl", () {
- expect(grant.handleAuthorizationCode('auth code'), throwsStateError);
- });
-
- test("can't be called twice", () {
- grant.getAuthorizationUrl(redirectUrl);
- expect(grant.handleAuthorizationCode('auth code'), throwsFormatException);
- expect(grant.handleAuthorizationCode('auth code'), throwsStateError);
- });
-
- test('sends an authorization code request', () {
- grant.getAuthorizationUrl(redirectUrl);
- client.expectRequest((request) {
- expect(request.method, equals('POST'));
- expect(request.url.toString(), equals(grant.tokenEndpoint.toString()));
- expect(request.bodyFields, equals({
- 'grant_type': 'authorization_code',
- 'code': 'auth code',
- 'redirect_uri': redirectUrl.toString(),
- 'client_id': 'identifier',
- 'client_secret': 'secret'
- }));
-
- return new Future.value(new http.Response(JSON.encode({
- 'access_token': 'access token',
- 'token_type': 'bearer',
- }), 200, headers: {'content-type': 'application/json'}));
- });
-
- expect(grant.handleAuthorizationCode('auth code'),
- completion(predicate((client) {
- expect(client.credentials.accessToken, equals('access token'));
- return true;
- })));
- });
- });
-}
« no previous file with comments | « pkg/oauth2/pubspec.yaml ('k') | pkg/oauth2/test/client_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698