2024-09-23 01:44:59 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:platform_container/mirrors.dart';
|
2024-09-25 04:04:57 +00:00
|
|
|
import 'package:platform_core/core.dart';
|
|
|
|
import 'package:platform_core/http.dart';
|
|
|
|
import 'package:platform_mocking/mocking.dart';
|
2024-09-23 01:44:59 +00:00
|
|
|
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
|
|
final Uri $foo = Uri.parse('http://localhost:3000/foo');
|
|
|
|
|
|
|
|
/// Additional tests to improve coverage of server.dart
|
|
|
|
void main() {
|
|
|
|
group('scoping', () {
|
2024-09-28 23:14:48 +00:00
|
|
|
var parent = Application(reflector: MirrorsReflector())
|
2024-09-23 04:39:29 +00:00
|
|
|
..configuration['two'] = 2;
|
2024-09-28 23:14:48 +00:00
|
|
|
var child = Application(reflector: MirrorsReflector());
|
2024-09-23 01:44:59 +00:00
|
|
|
parent.mount('/child', child);
|
|
|
|
|
|
|
|
test('sets children', () {
|
|
|
|
expect(parent.children, contains(child));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('sets parent', () {
|
|
|
|
expect(child.parent, parent);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('properties can climb up hierarchy', () {
|
|
|
|
expect(child.findProperty('two'), 2);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
test('custom server generator', () {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector());
|
|
|
|
var http = PlatformHttp.custom(app, HttpServer.bind);
|
2024-09-23 01:44:59 +00:00
|
|
|
expect(http.serverGenerator, HttpServer.bind);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('default error handler', () async {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector());
|
|
|
|
var http = PlatformHttp(app);
|
2024-09-23 01:44:59 +00:00
|
|
|
var rq = MockHttpRequest('GET', $foo);
|
|
|
|
await (rq.close());
|
|
|
|
var rs = rq.response;
|
|
|
|
var req = await http.createRequestContext(rq, rs);
|
|
|
|
var res = await http.createResponseContext(rq, rs);
|
2024-09-28 23:14:48 +00:00
|
|
|
var e = PlatformHttpException(
|
2024-09-23 01:44:59 +00:00
|
|
|
statusCode: 321, message: 'Hello', errors: ['foo', 'bar']);
|
|
|
|
await app.errorHandler(e, req, res);
|
|
|
|
await http.sendResponse(rq, rs, req, res);
|
|
|
|
expect(
|
|
|
|
ContentType.parse(rs.headers.value('content-type')!).mimeType,
|
|
|
|
'text/html',
|
|
|
|
);
|
|
|
|
expect(rs.statusCode, e.statusCode);
|
|
|
|
var body = await rs.transform(utf8.decoder).join();
|
|
|
|
expect(body, contains('<title>${e.message}</title>'));
|
|
|
|
expect(body, contains('<li>foo</li>'));
|
|
|
|
expect(body, contains('<li>bar</li>'));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('plug-ins run on startup', () async {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector());
|
2024-09-23 01:44:59 +00:00
|
|
|
app.startupHooks.add((app) => app.configuration['two'] = 2);
|
|
|
|
|
2024-09-28 23:14:48 +00:00
|
|
|
var http = PlatformHttp(app);
|
2024-09-23 01:44:59 +00:00
|
|
|
await http.startServer();
|
|
|
|
expect(app.configuration['two'], 2);
|
|
|
|
await app.close();
|
|
|
|
await http.close();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('warning when adding routes to flattened router', () {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector())
|
2024-09-23 01:44:59 +00:00
|
|
|
..optimizeForProduction(force: true);
|
|
|
|
app.dumpTree();
|
|
|
|
app.get('/', (req, res) => 2);
|
|
|
|
app.mount('/foo', Router()..get('/', (req, res) => 3));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('services close on close call', () async {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector());
|
2024-09-23 01:44:59 +00:00
|
|
|
var svc = CustomCloseService();
|
|
|
|
expect(svc.value, 2);
|
|
|
|
app.use('/', svc);
|
|
|
|
await app.close();
|
|
|
|
expect(svc.value, 3);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('global injection added to injection map', () async {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector())
|
|
|
|
..configuration['a'] = 'b';
|
|
|
|
var http = PlatformHttp(app);
|
2024-09-23 01:44:59 +00:00
|
|
|
app.get('/', ioc((String a) => a));
|
|
|
|
var rq = MockHttpRequest('GET', Uri.parse('/'));
|
|
|
|
await (rq.close());
|
|
|
|
await http.handleRequest(rq);
|
|
|
|
var body = await rq.response.transform(utf8.decoder).join();
|
|
|
|
expect(body, json.encode('b'));
|
|
|
|
});
|
|
|
|
|
|
|
|
test('global injected serializer', () async {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector())
|
|
|
|
..serializer = (_) => 'x';
|
|
|
|
var http = PlatformHttp(app);
|
2024-09-23 01:44:59 +00:00
|
|
|
app.get($foo.path, (req, ResponseContext res) => res.serialize(null));
|
|
|
|
var rq = MockHttpRequest('GET', $foo);
|
|
|
|
await (rq.close());
|
|
|
|
await http.handleRequest(rq);
|
|
|
|
var body = await rq.response.transform(utf8.decoder).join();
|
|
|
|
expect(body, 'x');
|
|
|
|
});
|
|
|
|
|
|
|
|
group('handler results', () {
|
2024-09-28 23:14:48 +00:00
|
|
|
var app = Application(reflector: MirrorsReflector());
|
|
|
|
var http = PlatformHttp(app);
|
|
|
|
app.responseFinalizers
|
|
|
|
.add((req, res) => throw PlatformHttpException.forbidden());
|
2024-09-23 01:44:59 +00:00
|
|
|
late RequestContext req;
|
|
|
|
late ResponseContext res;
|
|
|
|
|
|
|
|
setUp(() async {
|
|
|
|
var rq = MockHttpRequest('GET', $foo);
|
|
|
|
await (rq.close());
|
|
|
|
req = await http.createRequestContext(rq, rq.response);
|
|
|
|
res = await http.createResponseContext(rq, rq.response);
|
|
|
|
});
|
|
|
|
|
|
|
|
group('getHandlerResult', () {
|
|
|
|
test('return request handler', () async {
|
|
|
|
handler(req, res) => (req, res) async {
|
|
|
|
return 2;
|
|
|
|
};
|
|
|
|
var r = await app.getHandlerResult(handler, req, res);
|
|
|
|
expect(r, 2);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('return future', () async {
|
|
|
|
var handler = Future.value(2);
|
|
|
|
expect(await app.getHandlerResult(handler, req, res), 2);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group('executeHandler', () {
|
|
|
|
test('return Stream', () async {
|
|
|
|
handler(req, res) => Stream.fromIterable([2, 3]);
|
|
|
|
expect(await app.executeHandler(handler, req, res), isFalse);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('end response', () async {
|
|
|
|
handler(req, ResponseContext res) => res.close();
|
|
|
|
expect(await app.executeHandler(handler, req, res), isFalse);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
group('handleHttpException', () {
|
2024-09-28 23:14:48 +00:00
|
|
|
late Application app;
|
|
|
|
late PlatformHttp http;
|
2024-09-23 01:44:59 +00:00
|
|
|
|
|
|
|
setUp(() async {
|
2024-09-28 23:14:48 +00:00
|
|
|
app = Application(reflector: MirrorsReflector());
|
|
|
|
app.get('/wtf', (req, res) => throw PlatformHttpException.forbidden());
|
|
|
|
app.get('/wtf2', (req, res) => throw PlatformHttpException.forbidden());
|
|
|
|
http = PlatformHttp(app);
|
2024-09-23 01:44:59 +00:00
|
|
|
await http.startServer('127.0.0.1', 0);
|
|
|
|
|
|
|
|
var oldHandler = app.errorHandler;
|
|
|
|
app.errorHandler = (e, req, res) {
|
|
|
|
print('FATAL: ${e.error ?? e}');
|
|
|
|
print(e.stackTrace);
|
|
|
|
return oldHandler(e, req, res);
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
tearDown(() => app.close());
|
|
|
|
|
|
|
|
test('can send json', () async {
|
|
|
|
var rq = MockHttpRequest('GET', Uri(path: 'wtf'))
|
|
|
|
..headers.set('accept', 'application/json');
|
|
|
|
await rq.close();
|
|
|
|
http.handleRequest(rq);
|
|
|
|
await rq.response.toList();
|
|
|
|
expect(rq.response.statusCode, 403);
|
|
|
|
expect(rq.response.headers.contentType!.mimeType, 'application/json');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('can throw in finalizer', () async {
|
|
|
|
var rq = MockHttpRequest('GET', Uri(path: 'wtf'))
|
|
|
|
..headers.set('accept', 'application/json');
|
|
|
|
await rq.close();
|
|
|
|
http.handleRequest(rq);
|
|
|
|
await rq.response.toList();
|
|
|
|
expect(rq.response.statusCode, 403);
|
|
|
|
expect(rq.response.headers.contentType!.mimeType, 'application/json');
|
|
|
|
});
|
|
|
|
|
|
|
|
test('can send html', () async {
|
|
|
|
var rq = MockHttpRequest('GET', Uri(path: 'wtf2'));
|
|
|
|
//rq.headers.set('accept', 'text/html');
|
|
|
|
await rq.close();
|
|
|
|
http.handleRequest(rq);
|
|
|
|
await rq.response.toList();
|
|
|
|
expect(rq.response.statusCode, 403);
|
|
|
|
expect(rq.response.headers.contentType?.mimeType, 'text/html');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
class CustomCloseService extends Service {
|
|
|
|
int value = 2;
|
|
|
|
|
|
|
|
@override
|
|
|
|
void close() {
|
|
|
|
value = 3;
|
|
|
|
super.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Expose('/foo')
|
|
|
|
class FooController extends Controller {
|
|
|
|
@Expose('/bar')
|
|
|
|
Future<String> bar() async => 'baz';
|
|
|
|
}
|