platform/test/routing_test.dart
2017-10-10 12:55:42 -04:00

205 lines
6 KiB
Dart

import 'dart:convert';
import 'dart:io';
import 'package:angel_framework/angel_framework.dart';
import 'package:http/http.dart' as http;
import 'package:test/test.dart';
@Middleware(const ['interceptor'])
testMiddlewareMetadata(RequestContext req, ResponseContext res) async {
return "This should not be shown.";
}
@Middleware(const ['intercept_service'])
class QueryService extends Service {
@override
@Middleware(const ['interceptor'])
read(id, [Map params]) async => params;
}
main() {
Angel app;
Angel nested;
Angel todos;
String url;
http.Client client;
setUp(() async {
app = new Angel();
nested = new Angel();
todos = new Angel();
// Lazy-parse in production
[app, nested, todos].forEach((Angel app) {
app.lazyParseBodies = app.isProduction;
});
app.requestMiddleware
..['interceptor'] = (req, res) async {
res.write('Middleware');
return false;
}
..['intercept_service'] = (RequestContext req, res) async {
res.write("Service with ");
return true;
};
todos.get('/action/:action', (req, res) => res.json(req.params));
Route ted;
ted = nested.post('/ted/:route', (RequestContext req, res) {
print('Params: ${req.params}');
print(
'Path: ${ted.path}, matcher: ${ted.matcher.pattern}, uri: ${req.path}');
return req.params;
});
app.use('/nes', nested);
app.get('/meta', testMiddlewareMetadata);
app.get('/intercepted', 'This should not be shown',
middleware: ['interceptor']);
app.get('/hello', 'world');
app.get('/name/:first/last/:last', (req, res) => req.params);
app.post('/lambda', (RequestContext req, res) => req.lazyBody());
app.use('/todos/:id', todos);
app
.get('/greet/:name',
(RequestContext req, res) async => "Hello ${req.params['name']}")
.as('Named routes');
app.get('/named', (req, ResponseContext res) async {
res.redirectTo('Named routes', {'name': 'tests'});
});
app.get('/log', (RequestContext req, res) async {
print("Query: ${req.query}");
return "Logged";
});
app.get('/method', () => 'Only GET');
app.post('/method', () => 'Only POST');
app.use('/query', new QueryService());
RequestMiddleware write(String message) {
return (req, res) async {
res.write(message);
return true;
};
}
app.chain(write('a')).chain([write('b'), write('c')]).get('/chained', () => false);
app.use('MJ');
app.dumpTree(header: "DUMPING ROUTES:", showMatchers: true);
client = new http.Client();
await app.startServer(InternetAddress.LOOPBACK_IP_V4, 0);
url = "http://${app.httpServer.address.host}:${app.httpServer.port}";
});
tearDown(() async {
await app.httpServer.close(force: true);
app = null;
nested = null;
todos = null;
client.close();
client = null;
url = null;
});
test('Can match basic url', () async {
var response = await client.get("$url/hello");
expect(response.body, equals('"world"'));
});
test('Can match url with multiple parameters', () async {
var response = await client.get('$url/name/HELLO/last/WORLD');
print('Response: ${response.body}');
var json = JSON.decode(response.body);
expect(json, new isInstanceOf<Map<String, String>>());
expect(json['first'], equals('HELLO'));
expect(json['last'], equals('WORLD'));
});
test('Chained routes', () async {
var response = await client.get("$url/chained");
expect(response.body, equals('abc'));
});
test('Can nest another Angel instance', () async {
var response = await client.post('$url/nes/ted/foo');
var json = JSON.decode(response.body);
expect(json['route'], equals('foo'));
});
test('Can parse parameters from a nested Angel instance', () async {
var response = await client.get('$url/todos/1337/action/test');
var json = JSON.decode(response.body);
print('JSON: $json');
expect(json['id'], equals('1337'));
expect(json['action'], equals('test'));
});
test('Can add and use named middleware', () async {
var response = await client.get('$url/intercepted');
expect(response.body, equals('Middleware'));
});
test('Middleware via metadata', () async {
// Metadata
var response = await client.get('$url/meta');
expect(response.body, equals('Middleware'));
});
test('Can serialize function result as JSON', () async {
Map headers = {'Content-Type': 'application/json'};
String postData = JSON.encode({'it': 'works'});
var response =
await client.post("$url/lambda", headers: headers, body: postData);
expect(JSON.decode(response.body)['it'], equals('works'));
});
test('Fallback routes', () async {
var response = await client.get('$url/my_favorite_artist');
expect(response.body, equals('"MJ"'));
});
test('Can name routes', () {
Route foo = new Route('/framework/:id', name: 'frm');
print('Foo: $foo');
String uri = foo.makeUri({'id': 'angel'});
print(uri);
expect(uri, equals('framework/angel'));
});
test('Redirect to named routes', () async {
var response = await client.get('$url/named');
print(response.body);
expect(JSON.decode(response.body), equals('Hello tests'));
});
test('Match routes, even with query params', () async {
var response =
await client.get("$url/log?foo=bar&bar=baz&baz.foo=bar&baz.bar=foo");
print(response.body);
expect(JSON.decode(response.body), equals('Logged'));
response = await client.get("$url/query/foo?bar=baz");
print(response.body);
expect(response.body, equals("Service with Middleware"));
});
test('only match route with matching method', () async {
var response = await client.get("$url/method");
print(response.body);
expect(response.body, '"Only GET"');
response = await client.post("$url/method");
print(response.body);
expect(response.body, '"Only POST"');
response = await client.patch("$url/method");
print(response.body);
expect(response.body, '"MJ"');
});
}