platform/packages/client/test/common.dart

71 lines
1.8 KiB
Dart
Raw Normal View History

2017-09-24 04:12:53 +00:00
import 'dart:async';
import 'package:angel_client/base_angel_client.dart';
2018-08-26 22:41:01 +00:00
import 'dart:convert';
2017-09-24 04:12:53 +00:00
import 'package:http/src/base_client.dart' as http;
import 'package:http/src/base_request.dart' as http;
import 'package:http/src/streamed_response.dart' as http;
Future<String> read(Stream<List<int>> stream) =>
2018-06-23 00:18:38 +00:00
stream.transform(utf8.decoder).join();
2017-09-24 04:12:53 +00:00
class MockAngel extends BaseAngelClient {
@override
final SpecClient client = new SpecClient();
MockAngel() : super(null, 'http://localhost:3000');
@override
2019-01-06 02:08:31 +00:00
authenticateViaPopup(String url, {String eventName = 'token'}) {
2017-09-24 04:12:53 +00:00
throw new UnsupportedError('Nope');
}
}
class SpecClient extends http.BaseClient {
Spec _spec;
Spec get spec => _spec;
@override
send(http.BaseRequest request) {
_spec = new Spec(request, request.method, request.url.path, request.headers,
request.contentLength);
2018-11-04 01:34:21 +00:00
dynamic data = {'text': 'Clean your room!', 'completed': true};
2017-09-24 04:12:53 +00:00
2018-11-04 01:34:21 +00:00
if (request.url.path.contains('auth')) {
2017-09-24 04:12:53 +00:00
data = {
'token': '<jwt>',
'data': {'username': 'password'}
};
2018-11-04 01:34:21 +00:00
} else if (request.url.path == '/api/todos' && request.method == 'GET') {
data = [data];
}
2017-09-24 04:12:53 +00:00
return new Future<http.StreamedResponse>.value(new http.StreamedResponse(
2018-06-23 00:18:38 +00:00
new Stream<List<int>>.fromIterable([utf8.encode(json.encode(data))]),
2017-09-24 04:12:53 +00:00
200,
headers: {
'content-type': 'application/json',
},
));
}
}
class Spec {
final http.BaseRequest request;
final String method, path;
final Map<String, String> headers;
final int contentLength;
Spec(this.request, this.method, this.path, this.headers, this.contentLength);
@override
String toString() {
return {
'method': method,
'path': path,
'headers': headers,
'content_length': contentLength,
}.toString();
}
}