platform/packages/jael/angel_jael/test/minified_test.dart

103 lines
2.8 KiB
Dart
Raw Normal View History

2021-11-25 00:33:56 +00:00
import 'package:angel3_framework/angel3_framework.dart';
import 'package:angel3_jael/angel3_jael.dart';
import 'package:angel3_test/angel3_test.dart';
import 'package:file/memory.dart';
import 'package:html/parser.dart' as html;
2021-12-25 02:40:30 +00:00
import 'package:jael3/jael3.dart';
2021-11-25 00:33:56 +00:00
import 'package:logging/logging.dart';
import 'package:test/test.dart';
void 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.
late TestClient client;
setUp(() async {
var app = Angel();
app.configuration['properties'] = app.configuration;
var fileSystem = MemoryFileSystem();
var viewsDirectory = fileSystem.directory('views')..createSync();
viewsDirectory.childFile('layout.jael').writeAsStringSync('''
<!DOCTYPE html>
<html>
<head>
<title>Hello</title>
</head>
<body>
<block name="content">
Fallback content
</block>
</body>
</html>
''');
viewsDirectory.childFile('github.jael').writeAsStringSync('''
<extend src="layout.jael">
<block name="content">{{username}}</block>
</extend>
''');
2021-12-25 02:40:30 +00:00
app.get('/github/:username', (req, res) async {
2021-11-25 00:33:56 +00:00
var username = req.params['username'];
return res.render('github', {'username': username});
});
2021-12-25 02:40:30 +00:00
//Preload the view template
var viewCache = <String, Document>{};
jaelTemplatePreload(viewsDirectory, viewCache);
2021-11-25 00:33:56 +00:00
await app.configure(
2021-12-25 02:40:30 +00:00
jael(viewsDirectory, cache: viewCache),
2021-11-25 00:33:56 +00:00
);
app.fallback((req, res) => throw AngelHttpException.notFound());
app.logger = 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'));
2021-12-22 23:34:41 +00:00
//print('Body:\n${response.body}');
2021-11-25 00:33:56 +00:00
expect(
html.parse(response.body).outerHtml,
html
.parse(
'''<html><head><title>Hello</title></head><body>thosakwe</body></html>'''
.trim())
.outerHtml);
});
2021-12-19 17:39:16 +00:00
2021-12-25 02:40:30 +00:00
test('initial load concurreny', () async {
// Concurrently hit the same JAEL page
for (var i = 0; i < 512; i++) {
2021-12-22 23:34:41 +00:00
client.get(Uri.parse('/github/thosakwe'));
}
2021-12-25 02:40:30 +00:00
Stopwatch stopwatch = Stopwatch()..start();
2021-12-19 17:39:16 +00:00
var response = await client.get(Uri.parse('/github/thosakwe'));
2021-12-25 02:40:30 +00:00
var elapsedTime = stopwatch.elapsed.inMilliseconds;
2021-12-19 17:39:16 +00:00
2021-12-25 02:40:30 +00:00
print('Latency is $elapsedTime');
print('Body:\n${response.body}');
2021-12-19 17:39:16 +00:00
expect(
html.parse(response.body).outerHtml,
html
.parse(
'''<html><head><title>Hello</title></head><body>thosakwe</body></html>'''
.trim())
.outerHtml);
});
2021-11-25 00:33:56 +00:00
}