platform/test/io_test.dart

147 lines
5.4 KiB
Dart
Raw Normal View History

2016-06-25 18:37:49 +00:00
import 'dart:io';
2016-11-28 03:28:41 +00:00
import 'package:angel_client/io.dart' as client;
2016-06-25 18:37:49 +00:00
import 'package:angel_framework/angel_framework.dart' as server;
import 'package:json_god/json_god.dart' as god;
import 'package:test/test.dart';
import 'shared.dart';
main() {
group("rest", () {
server.Angel serverApp = new server.Angel();
server.HookedService serverPostcards;
2016-09-03 12:02:32 +00:00
client.Angel clientApp;
client.Service clientPostcards;
client.Service clientTypedPostcards;
2016-06-25 18:37:49 +00:00
HttpServer httpServer;
2016-09-03 12:02:32 +00:00
String url;
2016-06-25 18:37:49 +00:00
setUp(() async {
2017-01-25 23:25:31 +00:00
httpServer =
await serverApp.startServer(InternetAddress.LOOPBACK_IP_V4, 0);
2016-09-03 12:02:32 +00:00
url = "http://localhost:${httpServer.port}";
2017-06-03 17:43:01 +00:00
serverApp.use("/postcards", new server.TypedService<Postcard>(new server.MapService()));
2016-06-25 18:37:49 +00:00
serverPostcards = serverApp.service("postcards");
2016-12-09 00:24:07 +00:00
clientApp = new client.Rest(url);
2016-06-25 18:37:49 +00:00
clientPostcards = clientApp.service("postcards");
2016-12-13 16:35:35 +00:00
clientTypedPostcards = clientApp.service("postcards", type: Postcard);
2016-06-25 18:37:49 +00:00
});
tearDown(() async {
await httpServer.close(force: true);
});
2016-12-10 17:28:24 +00:00
test('plain requests', () async {
final response = await clientApp.get('/foo');
print(response.body);
});
2016-06-25 18:37:49 +00:00
test("index", () async {
2017-02-22 22:20:30 +00:00
Map niagara = await clientPostcards.create(
2016-06-25 18:37:49 +00:00
new Postcard(location: "Niagara Falls", message: "Missing you!"));
2017-02-22 22:20:30 +00:00
Postcard niagaraFalls = new Postcard.fromJson(niagara);
2017-01-31 04:00:58 +00:00
print('Niagara Falls: ${niagaraFalls.toJson()}');
2017-01-25 23:25:31 +00:00
List indexed = await clientPostcards.index();
2016-06-25 18:37:49 +00:00
print(indexed);
expect(indexed.length, equals(1));
expect(indexed[0].keys.length, equals(3));
expect(indexed[0]['id'], equals(niagaraFalls.id));
expect(indexed[0]['location'], equals(niagaraFalls.location));
expect(indexed[0]['message'], equals(niagaraFalls.message));
2017-02-22 22:20:30 +00:00
Map l = await clientPostcards.create(new Postcard(
2016-06-25 18:37:49 +00:00
location: "The Louvre", message: "The Mona Lisa was watching me!"));
2017-02-22 22:20:30 +00:00
Postcard louvre = new Postcard.fromJson(l);
2016-06-25 18:37:49 +00:00
print(god.serialize(louvre));
2017-01-31 04:00:58 +00:00
List typedIndexed = await clientTypedPostcards.index();
2016-06-25 18:37:49 +00:00
expect(typedIndexed.length, equals(2));
expect(typedIndexed[1], equals(louvre));
2017-02-22 22:20:30 +00:00
});
2016-06-25 18:37:49 +00:00
test("create/read", () async {
Map opry = {"location": "Grand Ole Opry", "message": "Yeehaw!"};
var created = await clientPostcards.create(opry);
print(created);
expect(created['id'] == null, equals(false));
expect(created["location"], equals(opry["location"]));
expect(created["message"], equals(opry["message"]));
var read = await clientPostcards.read(created['id']);
print(read);
expect(read['id'], equals(created['id']));
expect(read['location'], equals(created['location']));
expect(read['message'], equals(created['message']));
2017-01-25 23:25:31 +00:00
Postcard canyon = new Postcard(
location: "Grand Canyon",
2016-06-25 18:37:49 +00:00
message: "But did you REALLY experience it???");
created = await clientTypedPostcards.create(canyon);
print(god.serialize(created));
expect(created.location, equals(canyon.location));
expect(created.message, equals(canyon.message));
read = await clientTypedPostcards.read(created.id);
print(god.serialize(read));
expect(read.id, equals(created.id));
expect(read.location, equals(created.location));
expect(read.message, equals(created.message));
});
test("modify/update", () async {
2017-01-31 04:00:58 +00:00
var innerPostcards =
2017-06-03 17:43:01 +00:00
serverPostcards.inner as server.TypedService<Postcard>;
2016-06-25 18:37:49 +00:00
print(innerPostcards.items);
2017-01-25 23:25:31 +00:00
Postcard mecca = await clientTypedPostcards
.create(new Postcard(location: "Mecca", message: "Pilgrimage"));
2016-06-25 18:37:49 +00:00
print(god.serialize(mecca));
// I'm too lazy to write the tests twice, because I know it works
// So I'll modify using the type-based client, and update using the
// map-based one
print("Postcards on server: " +
god.serialize(await serverPostcards.index()));
print("Postcards on client: " +
god.serialize(await clientPostcards.index()));
2017-01-25 23:25:31 +00:00
Postcard modified = await clientTypedPostcards
.modify(mecca.id, {"location": "Saudi Arabia"});
2016-06-25 18:37:49 +00:00
print(god.serialize(modified));
expect(modified.id, equals(mecca.id));
expect(modified.location, equals("Saudi Arabia"));
expect(modified.message, equals(mecca.message));
2017-01-25 23:25:31 +00:00
Map updated = await clientPostcards
.update(mecca.id, {"location": "Full", "message": "Overwrite"});
2016-06-25 18:37:49 +00:00
print(updated);
expect(updated.keys.length, equals(3));
expect(updated['id'], equals(mecca.id));
expect(updated['location'], equals("Full"));
expect(updated['message'], equals("Overwrite"));
});
test("remove", () async {
2017-01-25 23:25:31 +00:00
Postcard remove1 = await clientTypedPostcards
.create({"location": "remove", "message": "#1"});
Postcard remove2 = await clientTypedPostcards
.create({"location": "remove", "message": "#2"});
2016-06-25 18:37:49 +00:00
print(god.serialize([remove1, remove2]));
Map removed1 = await clientPostcards.remove(remove1.id);
expect(removed1.keys.length, equals(3));
expect(removed1['id'], equals(remove1.id));
expect(removed1['location'], equals(remove1.location));
expect(removed1['message'], equals(remove1.message));
Postcard removed2 = await clientTypedPostcards.remove(remove2.id);
expect(removed2, equals(remove2));
});
});
2016-09-03 12:02:32 +00:00
}