import 'package:angel_framework/angel_framework.dart'; import 'package:angel_jael/angel_jael.dart'; import 'package:angel_test/angel_test.dart'; import 'package:file/memory.dart'; import 'package:html/parser.dart' as html; import 'package:logging/logging.dart'; import 'package:test/test.dart'; main() { // These tests need not actually test that the preprocessor or renderer works, // because those packages are already tested. // // Instead, just test that we can render at all. TestClient client; setUp(() async { var app = new Angel(); app.configuration['properties'] = app.configuration; var fileSystem = new MemoryFileSystem(); var viewsDirectory = fileSystem.directory('views')..createSync(); viewsDirectory.childFile('layout.jael').writeAsStringSync(''' Hello Fallback content '''); viewsDirectory.childFile('github.jael').writeAsStringSync(''' {{username}} '''); app.get('/github/:username', (req, res) { var username = req.params['username']; return res.render('github', {'username': username}); }); await app.configure( jael(viewsDirectory), ); app.fallback((req, res) => throw new AngelHttpException.notFound()); app.logger = new Logger('angel') ..onRecord.listen((rec) { print(rec); if (rec.error != null) print(rec.error); if (rec.stackTrace != null) print(rec.stackTrace); }); client = await connectTo(app); }); test('can render', () async { var response = await client.get(Uri.parse('/github/thosakwe')); print('Body:\n${response.body}'); expect( html.parse(response.body).outerHtml, html .parse(''' Hello thosakwe ''' .trim()) .outerHtml); }); }