58 lines
1.8 KiB
Dart
58 lines
1.8 KiB
Dart
import 'dart:async';
|
|
import 'dart:io';
|
|
import 'package:angel_framework/angel_framework.dart';
|
|
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);
|
|
expect(req.accepts(ContentType.JSON), isFalse);
|
|
expect(req.accepts('application/json'), isFalse);
|
|
expect(req.accepts(ContentType.HTML), isFalse);
|
|
expect(req.accepts('text/html'), isFalse);
|
|
});
|
|
|
|
test('wildcard', () async {
|
|
var req = await acceptContentTypes(['*/*']);
|
|
expect(req.acceptsAll, isTrue);
|
|
expect(req.accepts(ContentType.JSON), isTrue);
|
|
expect(req.accepts('application/json'), isTrue);
|
|
expect(req.accepts(ContentType.HTML), isTrue);
|
|
expect(req.accepts('text/html'), isTrue);
|
|
});
|
|
|
|
test('specific type', () async {
|
|
var req = await acceptContentTypes(['text/html']);
|
|
expect(req.acceptsAll, isFalse);
|
|
expect(req.accepts(ContentType.JSON), isFalse);
|
|
expect(req.accepts('application/json'), isFalse);
|
|
expect(req.accepts(ContentType.HTML), isTrue);
|
|
expect(req.accepts('text/html'), isTrue);
|
|
});
|
|
|
|
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(',');
|
|
var rq = new MockHttpRequest('GET', ENDPOINT);
|
|
rq.headers.set(HttpHeaders.ACCEPT, headerString);
|
|
rq.close();
|
|
var app = new Angel();
|
|
return app.createRequestContext(rq);
|
|
}
|