2017-01-14 13:50:02 +00:00
|
|
|
import 'dart:convert';
|
2016-09-24 18:30:01 +00:00
|
|
|
import 'dart:io';
|
|
|
|
import 'package:body_parser/body_parser.dart';
|
|
|
|
import 'package:http/http.dart' as http;
|
|
|
|
import 'package:json_god/json_god.dart' as god;
|
|
|
|
import 'package:test/test.dart';
|
|
|
|
|
2016-12-22 18:08:45 +00:00
|
|
|
const TOKEN =
|
|
|
|
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiIxMjcuMC4wLjEiLCJleHAiOi0xLCJpYXQiOiIyMDE2LTEyLTIyVDEyOjQ5OjUwLjM2MTQ0NiIsImlzcyI6ImFuZ2VsX2F1dGgiLCJzdWIiOiIxMDY2OTQ4Mzk2MDIwMjg5ODM2NTYifQ==.PYw7yUb-cFWD7N0sSLztP7eeRvO44nu1J2OgDNyT060=';
|
|
|
|
|
2016-09-24 18:30:01 +00:00
|
|
|
main() {
|
|
|
|
HttpServer server;
|
|
|
|
String url;
|
|
|
|
http.Client client;
|
|
|
|
|
|
|
|
setUp(() async {
|
|
|
|
server = await HttpServer.bind(InternetAddress.LOOPBACK_IP_V4, 0);
|
|
|
|
server.listen((HttpRequest request) async {
|
|
|
|
//Server will simply return a JSON representation of the parsed body
|
2017-01-14 13:50:02 +00:00
|
|
|
request.response.write(
|
|
|
|
god.serialize(await parseBody(request, storeOriginalBuffer: true)));
|
2016-09-24 18:30:01 +00:00
|
|
|
await request.response.close();
|
|
|
|
});
|
|
|
|
url = 'http://localhost:${server.port}';
|
|
|
|
print('Test server listening on $url');
|
|
|
|
client = new http.Client();
|
|
|
|
});
|
|
|
|
tearDown(() async {
|
|
|
|
await server.close(force: true);
|
|
|
|
client.close();
|
|
|
|
server = null;
|
|
|
|
url = null;
|
|
|
|
client = null;
|
|
|
|
});
|
|
|
|
|
|
|
|
group('query string', () {
|
|
|
|
test('GET Simple', () async {
|
|
|
|
print('GET $url/?hello=world');
|
|
|
|
var response = await client.get('$url/?hello=world');
|
|
|
|
print('Response: ${response.body}');
|
2017-01-14 13:50:02 +00:00
|
|
|
var result = JSON.decode(response.body);
|
|
|
|
expect(result['body'], equals({}));
|
|
|
|
expect(result['query'], equals({'hello': 'world'}));
|
|
|
|
expect(result['files'], equals([]));
|
2017-07-19 21:20:57 +00:00
|
|
|
//expect(result['originalBuffer'], isNull);
|
2016-09-24 18:30:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test('GET Complex', () async {
|
|
|
|
var postData = 'hello=world&nums%5B%5D=1&nums%5B%5D=2.0&nums%5B%5D=${3 -
|
|
|
|
1}&map.foo.bar=baz';
|
|
|
|
print('Body: $postData');
|
|
|
|
var response = await client.get('$url/?$postData');
|
|
|
|
print('Response: ${response.body}');
|
|
|
|
var query = god.deserialize(response.body)['query'];
|
|
|
|
expect(query['hello'], equals('world'));
|
|
|
|
expect(query['nums'][2], equals(2));
|
|
|
|
expect(query['map'] is Map, equals(true));
|
|
|
|
expect(query['map']['foo'], equals({'bar': 'baz'}));
|
|
|
|
});
|
2016-12-22 18:08:45 +00:00
|
|
|
|
|
|
|
test('JWT', () async {
|
|
|
|
var postData = 'token=$TOKEN';
|
|
|
|
print('Body: $postData');
|
|
|
|
var response = await client.get('$url/?$postData');
|
|
|
|
print('Response: ${response.body}');
|
|
|
|
var query = god.deserialize(response.body)['query'];
|
|
|
|
expect(query['token'], equals(TOKEN));
|
|
|
|
});
|
2016-09-24 18:30:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
group('urlencoded', () {
|
|
|
|
Map<String, String> headers = {
|
|
|
|
HttpHeaders.CONTENT_TYPE: 'application/x-www-form-urlencoded'
|
|
|
|
};
|
|
|
|
test('POST Simple', () async {
|
|
|
|
print('Body: hello=world');
|
|
|
|
var response =
|
|
|
|
await client.post(url, headers: headers, body: 'hello=world');
|
|
|
|
print('Response: ${response.body}');
|
2017-01-14 13:50:02 +00:00
|
|
|
var result = JSON.decode(response.body);
|
|
|
|
expect(result['query'], equals({}));
|
|
|
|
expect(result['body'], equals({'hello': 'world'}));
|
|
|
|
expect(result['files'], equals([]));
|
|
|
|
expect(result['originalBuffer'], isList);
|
|
|
|
expect(result['originalBuffer'], isNotEmpty);
|
2016-09-24 18:30:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test('Post Complex', () async {
|
|
|
|
var postData = 'hello=world&nums%5B%5D=1&nums%5B%5D=2.0&nums%5B%5D=${3 -
|
|
|
|
1}&map.foo.bar=baz';
|
|
|
|
var response = await client.post(url, headers: headers, body: postData);
|
|
|
|
var body = god.deserialize(response.body)['body'];
|
|
|
|
expect(body['hello'], equals('world'));
|
|
|
|
expect(body['nums'][2], equals(2));
|
|
|
|
expect(body['map'] is Map, equals(true));
|
|
|
|
expect(body['map']['foo'], equals({'bar': 'baz'}));
|
|
|
|
});
|
2016-12-22 18:08:45 +00:00
|
|
|
|
|
|
|
test('JWT', () async {
|
|
|
|
var postData = 'token=$TOKEN';
|
|
|
|
var response = await client.post(url, headers: headers, body: postData);
|
|
|
|
var body = god.deserialize(response.body)['body'];
|
|
|
|
expect(body['token'], equals(TOKEN));
|
|
|
|
});
|
2016-09-24 18:30:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
group('JSON', () {
|
|
|
|
Map<String, String> headers = {
|
|
|
|
HttpHeaders.CONTENT_TYPE: ContentType.JSON.toString()
|
|
|
|
};
|
|
|
|
test('Post Simple', () async {
|
|
|
|
var postData = god.serialize({'hello': 'world'});
|
|
|
|
print('Body: $postData');
|
|
|
|
var response = await client.post(url, headers: headers, body: postData);
|
|
|
|
print('Response: ${response.body}');
|
2017-01-14 13:50:02 +00:00
|
|
|
var result = JSON.decode(response.body);
|
|
|
|
expect(result['body'], equals({'hello': 'world'}));
|
|
|
|
expect(result['query'], equals({}));
|
|
|
|
expect(result['files'], equals([]));
|
|
|
|
expect(result['originalBuffer'], allOf(isList, isNotEmpty));
|
2016-09-24 18:30:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
test('Post Complex', () async {
|
|
|
|
var postData = god.serialize({
|
|
|
|
'hello': 'world',
|
|
|
|
'nums': [1, 2.0, 3 - 1],
|
|
|
|
'map': {
|
|
|
|
'foo': {'bar': 'baz'}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
print('Body: $postData');
|
|
|
|
var response = await client.post(url, headers: headers, body: postData);
|
|
|
|
print('Response: ${response.body}');
|
|
|
|
var body = god.deserialize(response.body)['body'];
|
|
|
|
expect(body['hello'], equals('world'));
|
|
|
|
expect(body['nums'][2], equals(2));
|
|
|
|
expect(body['map'] is Map, equals(true));
|
|
|
|
expect(body['map']['foo'], equals({'bar': 'baz'}));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|