Files
metabuilder/packages/schema_editor/seed/scripts/tests/metadata.test.lua
T
git 2d65639c13 Add test cases and metadata validation for various packages
- Created metadata cases and component structure tests for form_builder, forum_forge, irc_webchat, nav_menu, notification_center, schema_editor, screenshot_analyzer, social_hub, stream_cast, ui_auth, ui_dialogs, and ui_footer packages.
- Implemented validation for package ID format, version format, required fields, and expected components.
- Added Lua test scripts to validate component structures and metadata integrity.
- Ensured all packages adhere to the defined structure and dependencies.
2025-12-30 01:48:35 +00:00

42 lines
1.2 KiB
Lua

-- Metadata validation tests for schema_editor package
-- Uses lua_test framework
describe("Schema Editor Package Metadata", function()
local metadata = load_cases("metadata.json")
it("should have valid package structure", function()
expect(metadata.packageId).toBe("schema_editor")
expect(metadata.name).toBe("Schema Editor")
expect(metadata.version).toBeTruthy()
expect(metadata.description).toBeTruthy()
end)
it("should have correct package ID format", function()
expect(metadata.packageId).toMatch("^[a-z_]+$")
end)
it("should have semantic version", function()
expect(metadata.version).toMatch("^%d+%.%d+%.%d+$")
end)
it("should have exports defined", function()
expect(metadata.exports).toBeTruthy()
end)
it("should have dependencies array", function()
expect(metadata.dependencies).toBeType("table")
end)
it("should require minLevel 5", function()
expect(metadata.minLevel).toBe(5)
end)
it("should depend on form_builder", function()
local found = false
for _, dep in ipairs(metadata.dependencies) do
if dep == "form_builder" then found = true break end
end
expect(found).toBe(true)
end)
end)