platform/test/local_test.dart

127 lines
4.1 KiB
Dart
Raw Normal View History

2017-09-24 04:32:38 +00:00
import 'dart:async';
2016-11-23 20:37:40 +00:00
import 'dart:io';
import 'package:angel_auth/angel_auth.dart';
2018-12-09 16:29:15 +00:00
import 'package:angel_framework/angel_framework.dart';
import 'package:angel_framework/http.dart';
2018-09-11 22:14:33 +00:00
import 'dart:convert';
2016-11-23 20:37:40 +00:00
import 'package:http/http.dart' as http;
2018-12-09 16:29:15 +00:00
import 'package:logging/logging.dart';
2016-11-23 20:37:40 +00:00
import 'package:test/test.dart';
2018-08-26 23:11:37 +00:00
final AngelAuth<Map<String, String>> auth =
new AngelAuth<Map<String, String>>();
2018-07-12 17:11:54 +00:00
var headers = <String, String>{'accept': 'application/json'};
2018-09-11 22:11:44 +00:00
var localOpts = new AngelAuthOptions<Map<String, String>>(
2016-11-23 20:37:40 +00:00
failureRedirect: '/failure', successRedirect: '/success');
2018-08-26 23:11:37 +00:00
Map<String, String> sampleUser = {'hello': 'world'};
2016-11-23 20:37:40 +00:00
2018-09-11 22:03:35 +00:00
Future<Map<String, String>> verifier(String username, String password) async {
2016-11-23 20:37:40 +00:00
if (username == 'username' && password == 'password') {
return sampleUser;
} else
2018-09-11 22:03:35 +00:00
return null;
2016-11-23 20:37:40 +00:00
}
2017-09-24 04:32:38 +00:00
Future wireAuth(Angel app) async {
auth.serializer = (user) async => 1337;
auth.deserializer = (id) async => sampleUser;
2016-11-23 20:37:40 +00:00
2018-09-11 22:03:35 +00:00
auth.strategies['local'] = new LocalAuthStrategy(verifier);
2017-09-24 04:32:38 +00:00
await app.configure(auth.configureServer);
2018-08-26 23:11:37 +00:00
app.fallback(auth.decodeJwt);
2016-11-23 20:37:40 +00:00
}
main() async {
Angel app;
2018-06-27 16:36:31 +00:00
AngelHttp angelHttp;
2016-11-23 20:37:40 +00:00
http.Client client;
String url;
String basicAuthUrl;
setUp(() async {
client = new http.Client();
2017-09-24 04:32:38 +00:00
app = new Angel();
2018-06-27 16:36:31 +00:00
angelHttp = new AngelHttp(app, useZone: false);
2016-11-23 20:37:40 +00:00
await app.configure(wireAuth);
2018-08-26 23:11:37 +00:00
app.get('/hello', (req, res) => 'Woo auth',
middleware: [auth.authenticate('local')]);
app.post('/login', (req, res) => 'This should not be shown',
2017-09-24 04:32:38 +00:00
middleware: [auth.authenticate('local', localOpts)]);
2018-08-26 23:11:37 +00:00
app.get('/success', (req, res) => "yep", middleware: [
requireAuthentication<Map<String, String>>(),
]);
app.get('/failure', (req, res) => "nope");
2016-11-23 20:37:40 +00:00
2018-12-09 16:29:15 +00:00
app.logger = new Logger('angel_auth')
..onRecord.listen((rec) {
if (rec.error != null) {
print(rec.error);
print(rec.stackTrace);
}
});
2018-07-12 17:11:54 +00:00
HttpServer server = await angelHttp.startServer('127.0.0.1', 0);
2016-11-23 20:37:40 +00:00
url = "http://${server.address.host}:${server.port}";
basicAuthUrl =
"http://username:password@${server.address.host}:${server.port}";
});
tearDown(() async {
2018-06-27 16:36:31 +00:00
await angelHttp.close();
2016-11-23 20:37:40 +00:00
client = null;
url = null;
basicAuthUrl = null;
});
test('can use "auth" as middleware', () async {
var response = await client
.get("$url/success", headers: {'Accept': 'application/json'});
print(response.body);
expect(response.statusCode, equals(403));
});
test('successRedirect', () async {
Map postData = {'username': 'username', 'password': 'password'};
var response = await client.post("$url/login",
2018-06-27 16:36:31 +00:00
body: json.encode(postData),
2018-07-12 17:11:54 +00:00
headers: {'content-type': 'application/json'});
2016-11-23 20:37:40 +00:00
expect(response.statusCode, equals(200));
2018-07-12 17:11:54 +00:00
expect(response.headers['location'], equals('/success'));
2016-11-23 20:37:40 +00:00
});
test('failureRedirect', () async {
Map postData = {'username': 'password', 'password': 'username'};
var response = await client.post("$url/login",
2018-06-27 16:36:31 +00:00
body: json.encode(postData),
2018-07-12 17:11:54 +00:00
headers: {'content-type': 'application/json'});
2016-11-23 20:37:40 +00:00
print("Login response: ${response.body}");
2018-07-12 17:11:54 +00:00
expect(response.headers['location'], equals('/failure'));
2016-11-23 20:37:40 +00:00
expect(response.statusCode, equals(401));
});
test('allow basic', () async {
2018-06-27 16:36:31 +00:00
String authString = base64.encode("username:password".runes.toList());
2018-07-12 17:11:54 +00:00
var response = await client
.get("$url/hello", headers: {'authorization': 'Basic $authString'});
2016-11-23 20:37:40 +00:00
expect(response.body, equals('"Woo auth"'));
});
test('allow basic via URL encoding', () async {
var response = await client.get("$basicAuthUrl/hello");
expect(response.body, equals('"Woo auth"'));
});
test('force basic', () async {
2017-09-24 04:32:38 +00:00
auth.strategies.clear();
2018-09-11 22:03:35 +00:00
auth.strategies['local'] =
new LocalAuthStrategy(verifier, forceBasic: true, realm: 'test');
2018-12-09 16:29:15 +00:00
var response = await client.get("$url/hello", headers: {
'accept': 'application/json',
'content-type': 'application/json'
});
2016-11-23 20:37:40 +00:00
print(response.headers);
2018-09-11 22:03:35 +00:00
print('Body <${response.body}>');
2018-07-12 17:11:54 +00:00
expect(response.headers['www-authenticate'], equals('Basic realm="test"'));
2016-11-23 20:37:40 +00:00
});
}