platform/test/streaming_test.dart

118 lines
3.2 KiB
Dart
Raw Normal View History

2017-08-15 23:01:16 +00:00
import 'dart:async';
import 'dart:convert';
2018-06-08 07:06:26 +00:00
import 'dart:io' show stderr;
import 'dart:io';
2018-08-19 15:33:25 +00:00
import 'package:angel_container/mirrors.dart';
2017-08-15 23:01:16 +00:00
import 'package:angel_framework/angel_framework.dart';
2018-10-22 15:54:41 +00:00
import 'package:angel_framework/http.dart';
2017-09-22 14:53:49 +00:00
import 'package:logging/logging.dart';
2017-08-15 23:01:16 +00:00
import 'package:mock_request/mock_request.dart';
2019-04-17 19:42:24 +00:00
import 'package:pedantic/pedantic.dart';
2017-08-15 23:01:16 +00:00
import 'package:test/test.dart';
2017-08-15 23:01:16 +00:00
import 'encoders_buffer_test.dart' show encodingTests;
2017-08-15 23:08:24 +00:00
main() {
2017-08-15 23:01:16 +00:00
Angel app;
2018-02-07 04:34:08 +00:00
AngelHttp http;
2017-08-15 23:01:16 +00:00
setUp(() {
2019-05-02 22:48:31 +00:00
app = Angel(reflector: MirrorsReflector());
http = AngelHttp(app, useZone: true);
2017-09-22 14:53:49 +00:00
2019-05-02 22:48:31 +00:00
app.logger = Logger('streaming_test')
2017-09-22 14:53:49 +00:00
..onRecord.listen((rec) {
print(rec);
if (rec.stackTrace != null) print(rec.stackTrace);
});
2018-08-21 18:50:43 +00:00
app.encoders.addAll(
2017-08-15 23:01:16 +00:00
{
2018-06-08 07:06:26 +00:00
'deflate': zlib.encoder,
'gzip': gzip.encoder,
2017-08-15 23:01:16 +00:00
},
);
2018-08-21 18:50:43 +00:00
app.get('/hello', (req, res) {
2019-05-02 22:48:31 +00:00
return Stream<List<int>>.fromIterable(['Hello, world!'.codeUnits])
2018-08-21 18:50:43 +00:00
.pipe(res);
2017-08-15 23:01:16 +00:00
});
app.get('/write', (req, res) async {
2017-08-15 23:01:16 +00:00
await res.addStream(
2019-05-02 22:48:31 +00:00
Stream<List<int>>.fromIterable(['Hello, world!'.codeUnits]));
2017-08-15 23:01:16 +00:00
res.write('bye');
await res.close();
});
app.get('/multiple', (req, res) async {
2017-08-15 23:01:16 +00:00
await res.addStream(
2019-05-02 22:48:31 +00:00
Stream<List<int>>.fromIterable(['Hello, world!'.codeUnits]));
await res.addStream(Stream<List<int>>.fromIterable(['bye'.codeUnits]));
2017-08-15 23:01:16 +00:00
await res.close();
});
app.get('/overwrite', (req, res) async {
2017-08-15 23:01:16 +00:00
res.statusCode = 32;
2019-05-02 22:48:31 +00:00
await Stream<List<int>>.fromIterable(['Hello, world!'.codeUnits])
2017-08-15 23:01:16 +00:00
.pipe(res);
2017-09-22 04:48:22 +00:00
2019-05-02 22:48:31 +00:00
var f = Stream<List<int>>.fromIterable(['Hello, world!'.codeUnits])
2018-08-21 18:50:43 +00:00
.pipe(res)
.then((_) => false)
.catchError((_) => true);
expect(f, completion(true));
2017-08-15 23:01:16 +00:00
});
2019-05-02 22:48:31 +00:00
app.get('/error', (req, res) => res.addError(StateError('wtf')));
2017-08-15 23:01:16 +00:00
2017-09-22 04:48:22 +00:00
app.errorHandler = (e, req, res) async {
2017-09-22 14:03:23 +00:00
stderr..writeln(e.error)..writeln(e.stackTrace);
2017-09-22 04:48:22 +00:00
};
2017-08-15 23:01:16 +00:00
});
2018-02-07 04:34:08 +00:00
tearDown(() => http.close());
2017-08-15 23:01:16 +00:00
_expectHelloBye(String path) async {
2019-05-02 22:48:31 +00:00
var rq = MockHttpRequest('GET', Uri.parse(path));
2019-04-17 19:42:24 +00:00
unawaited(rq.close());
2018-02-07 04:34:08 +00:00
await http.handleRequest(rq);
2018-06-08 07:06:26 +00:00
var body = await rq.response.transform(utf8.decoder).join();
2017-08-15 23:01:16 +00:00
expect(body, 'Hello, world!bye');
}
test('write after addStream', () => _expectHelloBye('/write'));
test('multiple addStream', () => _expectHelloBye('/multiple'));
test('cannot write after close', () async {
2018-08-21 18:50:43 +00:00
try {
2019-05-02 22:48:31 +00:00
var rq = MockHttpRequest('GET', Uri.parse('/overwrite'));
2019-04-17 19:42:24 +00:00
unawaited(rq.close());
2018-08-21 18:50:43 +00:00
await http.handleRequest(rq);
var body = await rq.response.transform(utf8.decoder).join();
2017-08-15 23:01:16 +00:00
2018-08-21 18:50:43 +00:00
if (rq.response.statusCode != 32)
throw 'overwrite should throw error; response: $body';
} on StateError {
// Success
}
2017-08-15 23:01:16 +00:00
});
test('res => addError', () async {
try {
2019-05-02 22:48:31 +00:00
var rq = MockHttpRequest('GET', Uri.parse('/error'));
2019-04-17 19:42:24 +00:00
unawaited(rq.close());
2018-02-07 04:34:08 +00:00
await http.handleRequest(rq);
2018-06-08 07:06:26 +00:00
var body = await rq.response.transform(utf8.decoder).join();
2017-08-15 23:01:16 +00:00
throw 'addError should throw error; response: $body';
} on StateError {
// Should throw error...
}
});
encodingTests(() => app);
}