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

Unified Diff: pkg/json_rpc_2/test/server/batch_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/json_rpc_2/test/peer_test.dart ('k') | pkg/json_rpc_2/test/server/invalid_request_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/json_rpc_2/test/server/batch_test.dart
diff --git a/pkg/json_rpc_2/test/server/batch_test.dart b/pkg/json_rpc_2/test/server/batch_test.dart
deleted file mode 100644
index 7dda84f345f3946b5975c6efa13ea97dd19d99ed..0000000000000000000000000000000000000000
--- a/pkg/json_rpc_2/test/server/batch_test.dart
+++ /dev/null
@@ -1,94 +0,0 @@
-// Copyright (c) 2014, 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 json_rpc_2.test.server.batch_test;
-
-import 'dart:convert';
-
-import 'package:unittest/unittest.dart';
-import 'package:json_rpc_2/error_code.dart' as error_code;
-import 'package:json_rpc_2/json_rpc_2.dart' as json_rpc;
-
-import 'utils.dart';
-
-void main() {
- var controller;
- setUp(() {
- controller = new ServerController();
- controller.server
- ..registerMethod('foo', () => 'foo')
- ..registerMethod('id', (params) => params.value)
- ..registerMethod('arg', (params) => params['arg'].value);
- });
-
- test('handles a batch of requests', () {
- expect(controller.handleRequest([
- {'jsonrpc': '2.0', 'method': 'foo', 'id': 1},
- {'jsonrpc': '2.0', 'method': 'id', 'params': ['value'], 'id': 2},
- {'jsonrpc': '2.0', 'method': 'arg', 'params': {'arg': 'value'}, 'id': 3}
- ]), completion(equals([
- {'jsonrpc': '2.0', 'result': 'foo', 'id': 1},
- {'jsonrpc': '2.0', 'result': ['value'], 'id': 2},
- {'jsonrpc': '2.0', 'result': 'value', 'id': 3}
- ])));
- });
-
- test('handles errors individually', () {
- expect(controller.handleRequest([
- {'jsonrpc': '2.0', 'method': 'foo', 'id': 1},
- {'jsonrpc': '2.0', 'method': 'zap', 'id': 2},
- {'jsonrpc': '2.0', 'method': 'arg', 'params': {'arg': 'value'}, 'id': 3}
- ]), completion(equals([
- {'jsonrpc': '2.0', 'result': 'foo', 'id': 1},
- {
- 'jsonrpc': '2.0',
- 'id': 2,
- 'error': {
- 'code': error_code.METHOD_NOT_FOUND,
- 'message': 'Unknown method "zap".',
- 'data': {'request': {'jsonrpc': '2.0', 'method': 'zap', 'id': 2}},
- }
- },
- {'jsonrpc': '2.0', 'result': 'value', 'id': 3}
- ])));
- });
-
- test('handles notifications individually', () {
- expect(controller.handleRequest([
- {'jsonrpc': '2.0', 'method': 'foo', 'id': 1},
- {'jsonrpc': '2.0', 'method': 'id', 'params': ['value']},
- {'jsonrpc': '2.0', 'method': 'arg', 'params': {'arg': 'value'}, 'id': 3}
- ]), completion(equals([
- {'jsonrpc': '2.0', 'result': 'foo', 'id': 1},
- {'jsonrpc': '2.0', 'result': 'value', 'id': 3}
- ])));
- });
-
- test('returns nothing if every request is a notification', () {
- expect(controller.handleRequest([
- {'jsonrpc': '2.0', 'method': 'foo'},
- {'jsonrpc': '2.0', 'method': 'id', 'params': ['value']},
- {'jsonrpc': '2.0', 'method': 'arg', 'params': {'arg': 'value'}}
- ]), completion(isNull));
- });
-
- test('returns an error if the batch is empty', () {
- expectErrorResponse(controller, [], error_code.INVALID_REQUEST,
- 'A batch must contain at least one request.');
- });
-
- test('disallows nested batches', () {
- expect(controller.handleRequest([
- [{'jsonrpc': '2.0', 'method': 'foo', 'id': 1}]
- ]), completion(equals([{
- 'jsonrpc': '2.0',
- 'id': null,
- 'error': {
- 'code': error_code.INVALID_REQUEST,
- 'message': 'Request must be an Array or an Object.',
- 'data': {'request': [{'jsonrpc': '2.0', 'method': 'foo', 'id': 1}]}
- }
- }])));
- });
-}
« no previous file with comments | « pkg/json_rpc_2/test/peer_test.dart ('k') | pkg/json_rpc_2/test/server/invalid_request_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698