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

Unified Diff: pkg/shelf/test/pipeline_test.dart

Issue 814113004: Pull args, intl, logging, shelf, and source_maps out of the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also csslib. 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/shelf/test/message_test.dart ('k') | pkg/shelf/test/request_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/shelf/test/pipeline_test.dart
diff --git a/pkg/shelf/test/pipeline_test.dart b/pkg/shelf/test/pipeline_test.dart
deleted file mode 100644
index eda4a12964ac2afdcb283fc3bfa18c569c396e7e..0000000000000000000000000000000000000000
--- a/pkg/shelf/test/pipeline_test.dart
+++ /dev/null
@@ -1,91 +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 shelf.pipeline_test;
-
-import 'package:shelf/shelf.dart';
-import 'package:unittest/unittest.dart';
-
-import 'test_util.dart';
-
-void main() {
- test('compose middleware with Pipeline', () {
- int accessLocation = 0;
-
- var middlewareA = createMiddleware(requestHandler: (request) {
- expect(accessLocation, 0);
- accessLocation = 1;
- return null;
- }, responseHandler: (response) {
- expect(accessLocation, 4);
- accessLocation = 5;
- return response;
- });
-
- var middlewareB = createMiddleware(requestHandler: (request) {
- expect(accessLocation, 1);
- accessLocation = 2;
- return null;
- }, responseHandler: (response) {
- expect(accessLocation, 3);
- accessLocation = 4;
- return response;
- });
-
- var handler = const Pipeline()
- .addMiddleware(middlewareA)
- .addMiddleware(middlewareB)
- .addHandler((request) {
- expect(accessLocation, 2);
- accessLocation = 3;
- return syncHandler(request);
- });
-
- return makeSimpleRequest(handler).then((response) {
- expect(response, isNotNull);
- expect(accessLocation, 5);
- });
- });
-
- test('Pipeline can be used as middleware', () {
- int accessLocation = 0;
-
- var middlewareA = createMiddleware(requestHandler: (request) {
- expect(accessLocation, 0);
- accessLocation = 1;
- return null;
- }, responseHandler: (response) {
- expect(accessLocation, 4);
- accessLocation = 5;
- return response;
- });
-
- var middlewareB = createMiddleware(requestHandler: (request) {
- expect(accessLocation, 1);
- accessLocation = 2;
- return null;
- }, responseHandler: (response) {
- expect(accessLocation, 3);
- accessLocation = 4;
- return response;
- });
-
- var innerPipeline = const Pipeline()
- .addMiddleware(middlewareA)
- .addMiddleware(middlewareB);
-
- var handler = const Pipeline()
- .addMiddleware(innerPipeline.middleware)
- .addHandler((request) {
- expect(accessLocation, 2);
- accessLocation = 3;
- return syncHandler(request);
- });
-
- return makeSimpleRequest(handler).then((response) {
- expect(response, isNotNull);
- expect(accessLocation, 5);
- });
- });
-}
« no previous file with comments | « pkg/shelf/test/message_test.dart ('k') | pkg/shelf/test/request_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698