- Extend plugin-tester to support multi-box plugins with v2 API - Add nyash_plugin_get_box_count/get_box_info/get_type_id functions - Create test multi-box plugin providing TestBoxA and TestBoxB - Update plugin-system.md documentation for v2 format - Add nyash.toml v2 specification for multi-box support - Successfully tested multi-box plugin lifecycle and type resolution This enables one plugin to provide multiple Box types, solving the dependency issue where HTTPServerBox needs SocketBox. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
714 B
Plaintext
25 lines
714 B
Plaintext
// HTTPServerBoxの動作テスト
|
||
static box Main {
|
||
init {
|
||
ConsoleBox console,
|
||
HTTPServerBox server
|
||
}
|
||
|
||
main() {
|
||
me.console = new ConsoleBox()
|
||
me.console.log("🌐 HTTPServerBoxテスト開始...")
|
||
|
||
// HTTPServerBoxを作成
|
||
me.server = new HTTPServerBox()
|
||
me.console.log("✅ HTTPServerBox作成成功")
|
||
|
||
// 基本情報を表示
|
||
me.console.log("HTTPServerBox: " + me.server.toString())
|
||
|
||
// bind設定(実際のサーバー起動はしない)
|
||
me.server.bind("127.0.0.1", 8080)
|
||
me.console.log("✅ Bind設定完了: 127.0.0.1:8080")
|
||
|
||
return "完了"
|
||
}
|
||
} |