f7c6ebf200
git-subtree-dir: packages/static git-subtree-mainline:17ad5f82c3
git-subtree-split:6ec67dde7b
64 lines
1.9 KiB
Dart
64 lines
1.9 KiB
Dart
import 'package:angel_framework/angel_framework.dart';
|
|
import 'package:angel_static/angel_static.dart';
|
|
import 'package:angel_test/angel_test.dart';
|
|
import 'package:file/file.dart';
|
|
import 'package:file/local.dart';
|
|
import 'package:logging/logging.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
final Directory swaggerUiDistDir =
|
|
const LocalFileSystem().directory('test/node_modules/swagger-ui-dist');
|
|
|
|
main() async {
|
|
TestClient client;
|
|
String swaggerUiCssContents, swaggerTestJsContents;
|
|
|
|
setUp(() async {
|
|
// Load file contents
|
|
swaggerUiCssContents = await const LocalFileSystem()
|
|
.file(swaggerUiDistDir.uri.resolve('swagger-ui.css'))
|
|
.readAsString();
|
|
swaggerTestJsContents = await const LocalFileSystem()
|
|
.file(swaggerUiDistDir.uri.resolve('test.js'))
|
|
.readAsString();
|
|
|
|
// Initialize app
|
|
var app = Angel();
|
|
app.logger = Logger('angel')..onRecord.listen(print);
|
|
|
|
app.fallback(
|
|
VirtualDirectory(app, const LocalFileSystem(),
|
|
source: swaggerUiDistDir, publicPath: 'swagger/')
|
|
.handleRequest,
|
|
);
|
|
|
|
app.dumpTree();
|
|
client = await connectTo(app);
|
|
});
|
|
|
|
tearDown(() => client.close());
|
|
|
|
test('prefix is not replaced in file paths', () async {
|
|
var response = await client.get('/swagger/swagger-ui.css');
|
|
print('Response: ${response.body}');
|
|
expect(response, hasBody(swaggerUiCssContents));
|
|
});
|
|
|
|
test('get a file without prefix in name', () async {
|
|
var response = await client.get('/swagger/test.js');
|
|
print('Response: ${response.body}');
|
|
expect(response, hasBody(swaggerTestJsContents));
|
|
});
|
|
|
|
test('trailing slash at root', () async {
|
|
var response = await client.get('/swagger');
|
|
var body1 = response.body;
|
|
print('Response #1: $body1');
|
|
|
|
response = await client.get('/swagger/');
|
|
var body2 = response.body;
|
|
print('Response #2: $body2');
|
|
|
|
expect(body1, body2);
|
|
});
|
|
}
|