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

Side by Side Diff: pkg/shelf/test/hijack_test.dart

Issue 260933004: Support Request hijacking in Shelf, using a similar API to Rack. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 6 years, 7 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/shelf/test/create_middleware_test.dart ('k') | pkg/shelf/test/log_middleware_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 library shelf.hijack_test;
6
7 import 'dart:async';
8
9 import 'package:unittest/unittest.dart';
10 import 'package:shelf/shelf.dart';
11
12 import 'test_util.dart';
13
14 void main() {
15 test('hijacking a non-hijackable request throws a StateError', () {
16 expect(() => new Request('GET', LOCALHOST_URI).hijack((_, __) => null),
17 throwsStateError);
18 });
19
20 test('hijacking a hijackable request throws a HijackException and calls '
21 'onHijack', () {
22 var request = new Request('GET', LOCALHOST_URI,
23 onHijack: expectAsync((callback) {
24 var streamController = new StreamController();
25 streamController.add([1, 2, 3]);
26 streamController.close();
27
28 var sinkController = new StreamController();
29 expect(sinkController.stream.first, completion(equals([4, 5, 6])));
30
31 callback(streamController.stream, sinkController);
32 }));
33
34 expect(() => request.hijack(expectAsync((stream, sink) {
35 expect(stream.first, completion(equals([1, 2, 3])));
36 sink.add([4, 5, 6]);
37 sink.close();
38 })), throwsA(new isInstanceOf<HijackException>()));
39 });
40
41 test('hijacking a hijackable request twice throws a StateError', () {
42 // Assert that the [onHijack] callback is only called once.
43 var request = new Request('GET', LOCALHOST_URI,
44 onHijack: expectAsync((_) => null, count: 1));
45
46 expect(() => request.hijack((_, __) => null),
47 throwsA(new isInstanceOf<HijackException>()));
48
49 expect(() => request.hijack((_, __) => null), throwsStateError);
50 });
51 }
OLDNEW
« no previous file with comments | « pkg/shelf/test/create_middleware_test.dart ('k') | pkg/shelf/test/log_middleware_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698