Last updated:
0 purchases
appwrite test
一个方便集成对于 Appwrite 1.4 版本以上的 Dart Function 方便进行测试.
集成 #
dart pub add appwrite_test
copied to clipboard
如何使用 #
引入库
import 'package:appwrite_test/appwrite_test.dart';
copied to clipboard
添加bin/main.dart 文件代码如下
参数可以先部署上去打印一下日志看一下环境配置
Future<void> main(List<String> args) async {
final context = TestContext({
"APPWRITE_API_KEY":
"xxx",
"APPWRITE_FUNCTION_RUNTIME_NAME": "Dart",
"HOSTNAME": "xxx",
"HOME": "/root",
"OLDPWD": "/usr/local/server",
"PATH":
"/usr/lib/dart/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"APPWRITE_FUNCTION_NAME": "xxx",
"INERNAL_EXECUTOR_HOSTNAME": "exc3",
"OPEN_RUNTIMES_ENTRYPOINT": "lib/main.dart",
"APPWRITE_FUNCTION_RUNTIME_VERSION": "2.17",
"APPWRITE_FUNCTION_ID": "xxx",
"DART_SDK": "/usr/lib/dart",
"PWD": "/usr/local/server",
"OPEN_RUNTIMES_HOSTNAME": "exc3",
"APPWRITE_FUNCTION_DEPLOYMENT": "xxx",
"APPWRITE_FUNCTION_PROJECT_ID": "xxx",
"OPEN_RUNTIMES_SECRET": "xxx",
"GLIBCPP_FORCE_NEW": "1",
"GLIBCXX_FORCE_NEW": "1"
});
await init_db.main(context);
}
copied to clipboard
在 ./main.dart 代码如下
Future<dynamic> main(final context) {
return RunMain(actors: []).run(context);
}
copied to clipboard
这样就可以十分方便的在编辑器进行调试代码了。
新建 Actor #
我们的后续的逻辑只需要在对应 Actor实现即可。
example
class FetchVersionActor extends Actor {
FetchVersionActor({required super.context});
@override
String get path => '/fetchVersion';
@override
Future<ActorResponse> runActor() async {
final platform = JSON(context.req.bodyRaw)['platform'].string;
final version = JSON(context.req.bodyRaw)['version'].string;
if (platform == null) {
return ActorResponse.failure(-1, 'platform 参数不存在!');
}
if (version == null) {
return ActorResponse.failure(-1, 'version 参数不存在!');
}
final documentList = await databases.listDocuments(
databaseId: 'shorebird_patchs',
collectionId: 'versions',
queries: [
Query.equal('platform', platform),
],
);
final documents = documentList.documents.where((element) {
return Version.parse(JSON(element.data)['version'].stringValue) >
Version.parse(version);
});
if (documents.isEmpty) {
return ActorResponse.success();
} else {
return ActorResponse.success(documents.last.toMap());
}
}
}
copied to clipboard
Actor #
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.