2017-07-10 23:08:05 +00:00
|
|
|
import 'dart:async';
|
2018-08-19 15:33:25 +00:00
|
|
|
import 'package:angel_container/mirrors.dart';
|
2017-07-10 23:08:05 +00:00
|
|
|
import 'package:angel_framework/angel_framework.dart';
|
2018-10-22 15:54:41 +00:00
|
|
|
import 'package:angel_framework/http.dart';
|
2017-07-10 23:08:05 +00:00
|
|
|
import 'package:mock_request/mock_request.dart';
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
|
|
final Uri ENDPOINT = Uri.parse('http://example.com/accept');
|
|
|
|
|
|
|
|
main() {
|
|
|
|
test('no content type', () async {
|
|
|
|
var req = await acceptContentTypes();
|
|
|
|
expect(req.acceptsAll, isFalse);
|
2018-06-23 03:29:38 +00:00
|
|
|
//expect(req.accepts(ContentType.JSON), isFalse);
|
2017-07-10 23:08:05 +00:00
|
|
|
expect(req.accepts('application/json'), isFalse);
|
2018-06-23 03:29:38 +00:00
|
|
|
//expect(req.accepts(ContentType.HTML), isFalse);
|
2017-07-10 23:08:05 +00:00
|
|
|
expect(req.accepts('text/html'), isFalse);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('wildcard', () async {
|
|
|
|
var req = await acceptContentTypes(['*/*']);
|
|
|
|
expect(req.acceptsAll, isTrue);
|
2018-06-23 03:29:38 +00:00
|
|
|
//expect(req.accepts(ContentType.JSON), isTrue);
|
2017-07-10 23:08:05 +00:00
|
|
|
expect(req.accepts('application/json'), isTrue);
|
2018-06-23 03:29:38 +00:00
|
|
|
//expect(req.accepts(ContentType.HTML), isTrue);
|
2017-07-10 23:08:05 +00:00
|
|
|
expect(req.accepts('text/html'), isTrue);
|
|
|
|
});
|
|
|
|
|
2017-09-22 14:03:23 +00:00
|
|
|
test('specific type', () async {
|
2017-07-10 23:08:05 +00:00
|
|
|
var req = await acceptContentTypes(['text/html']);
|
|
|
|
expect(req.acceptsAll, isFalse);
|
2018-06-23 03:29:38 +00:00
|
|
|
//expect(req.accepts(ContentType.JSON), isFalse);
|
2017-07-10 23:08:05 +00:00
|
|
|
expect(req.accepts('application/json'), isFalse);
|
2018-06-23 03:29:38 +00:00
|
|
|
//expect(req.accepts(ContentType.HTML), isTrue);
|
2017-07-10 23:08:05 +00:00
|
|
|
expect(req.accepts('text/html'), isTrue);
|
|
|
|
});
|
|
|
|
|
2017-11-28 18:14:50 +00:00
|
|
|
test('strict', () async {
|
|
|
|
var req = await acceptContentTypes(['text/html', "*/*"]);
|
2018-06-23 03:29:38 +00:00
|
|
|
expect(req.accepts('text/html'), isTrue);
|
|
|
|
//expect(req.accepts(ContentType.HTML), isTrue);
|
|
|
|
//expect(req.accepts(ContentType.JSON, strict: true), isFalse);
|
|
|
|
expect(req.accepts('application/json', strict: true), isFalse);
|
2017-11-28 18:14:50 +00:00
|
|
|
});
|
|
|
|
|
2017-07-10 23:08:05 +00:00
|
|
|
group('disallow null', () {
|
|
|
|
RequestContext req;
|
|
|
|
|
|
|
|
setUp(() async {
|
|
|
|
req = await acceptContentTypes();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('throws error', () {
|
|
|
|
expect(() => req.accepts(null), throwsArgumentError);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<RequestContext> acceptContentTypes(
|
|
|
|
[Iterable<String> contentTypes = const []]) {
|
|
|
|
var headerString = contentTypes.isEmpty ? null : contentTypes.join(',');
|
2019-05-02 22:48:31 +00:00
|
|
|
var rq = MockHttpRequest('GET', ENDPOINT);
|
2018-06-23 03:29:38 +00:00
|
|
|
rq.headers.set('accept', headerString);
|
2017-07-10 23:08:05 +00:00
|
|
|
rq.close();
|
2019-05-02 22:48:31 +00:00
|
|
|
var app = Angel(reflector: MirrorsReflector());
|
|
|
|
var http = AngelHttp(app);
|
2018-11-11 01:07:09 +00:00
|
|
|
return http.createRequestContext(rq, rq.response);
|
2017-07-10 23:08:05 +00:00
|
|
|
}
|