platform/packages/mustache/test/all_test.dart

32 lines
1,019 B
Dart
Raw Normal View History

2016-04-22 02:22:33 +00:00
import 'dart:async';
import 'package:angel_framework/angel_framework.dart';
import 'package:angel_mustache/angel_mustache.dart';
2021-06-20 12:37:20 +00:00
import 'package:file/file.dart';
2017-11-18 18:39:10 +00:00
import 'package:file/local.dart';
2016-04-22 02:22:33 +00:00
import 'package:test/test.dart';
2021-06-20 12:37:20 +00:00
void main() async {
var angel = Angel();
2017-11-18 18:39:10 +00:00
await angel.configure(mustache(const LocalFileSystem().directory('./test')));
2016-04-22 02:22:33 +00:00
test('can render templates', () async {
2021-06-20 12:37:20 +00:00
var hello = await angel.viewGenerator!('hello', {'name': 'world'});
var bar = await angel.viewGenerator!('foo/bar', {'framework': 'angel'});
2016-04-22 02:22:33 +00:00
2021-06-20 12:37:20 +00:00
expect(hello, equals('Hello, world!'));
expect(bar, equals('angel_framework'));
2016-04-22 02:22:33 +00:00
});
test('throws if view is not found', () {
2021-06-20 12:37:20 +00:00
expect(Future(() async {
var fails = await angel.viewGenerator!('fail', {'this_should': 'fail'});
2017-11-18 18:39:10 +00:00
print(fails);
2021-06-20 12:37:20 +00:00
}), throwsA(isA<FileSystemException>()));
2016-04-22 02:22:33 +00:00
});
2016-05-02 23:28:37 +00:00
2021-06-20 12:37:20 +00:00
test('partials', () async {
var withPartial = await angel.viewGenerator!('with-partial');
expect(withPartial, equals('Hello, world!'));
2016-05-02 23:28:37 +00:00
});
2017-04-05 22:41:40 +00:00
}