当用渡槽实施OAuth时,我错误地没有遵循测试驱动的开发意识形态,而我现在正在为此付出代价......
当我运行测试时,我收到错误:
"No configuration file found. See README.md."
这是从我的AppSink类中的initializeApplication方法抛出的。 据我了解,测试使用config.src.yaml文件,所以我已相应配置我的测试工具:
application = new Application<OdexSink>();
application.configuration.port = 0;
application.configuration.configurationFilePath = "config.src.yaml";
由于我在实现AuthServer等之前能够运行测试,我怀疑它一直在发生。
我的测试setUp如下:
var app = new Application<OdexSink>();
TestClient client;
setUp(() async {
await app.start(runOnMainIsolate: true);
client = new TestClient(app);
var ctx = ManagedContext.defaultContext;
var builder = new SchemaBuilder.toSchema(ctx.persistentStore, new Schema.fromDataModel(ctx.dataModel), isTemporary: true);
for (var cmd in builder.commands) {
await ctx.persistentStore.execute(cmd);
}
});
我的测试工具start()方法是:
Future start() async {
RequestController.letUncaughtExceptionsEscape = true;
application = new Application<OdexSink>();
application.configuration.port = 0;
application.configuration.configurationFilePath = "config.src.yaml";
await application.start(runOnMainIsolate: true);
await createDatabaseSchema(ManagedContext.defaultContext, sink.logger);
await addClientRecord();
await addClientRecord(clientID: DefaultClientID, clientSecret: DefaultClientSecret);
client = new TestClient(application)
..clientID = DefaultClientID
..clientSecret = DefaultClientSecret;
}
我的config.src.yaml文件退出,并包含数据库信息。
答案 0 :(得分:1)
啊,只是一件小事 - 在你的setUp方法中,你正在创建并启动Application
而不是TestApplication
线束。看起来应该是这样的
var app = new TestApplication();
setUp(() async {
await app.start();
});
setUp中的所有其他内容已在测试工具中完成,您可以将TestClient用作app.client
:
expect(await app.client.request("/endpoint"), hasStatus(200));