Spaces:
Running on Zero
Running on Zero
File size: 3,457 Bytes
0e10e87 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | # =====================================================
# Apckeyl Framework
# Version 1.0
# test_module_registry.py
# =====================================================
"""
Tests for Apckeyl Module Registry.
Version 1.0
"""
from module_registry import registry
# =====================================================
# Test 1 — Registry Exists
# =====================================================
def test_registry_exists():
assert registry is not None
# =====================================================
# Test 2 — RealESRGAN Exists
# =====================================================
def test_realesrgan_exists():
assert registry.exists(
"realesrgan"
)
# =====================================================
# Test 3 — Module Information
# =====================================================
def test_realesrgan_information():
module = registry.get(
"realesrgan"
)
assert module is not None
assert module["module_id"] == "realesrgan"
assert module["module_name"] == "Apckeyl_RealESRGAN"
assert module["module_type"] == "image_upscaler"
# =====================================================
# Test 4 — Capability
# =====================================================
def test_realesrgan_capability():
module = registry.get(
"realesrgan"
)
assert "image_upscale" in module[
"capabilities"
]
# =====================================================
# Test 5 — Status
# =====================================================
def test_realesrgan_status():
module = registry.get(
"realesrgan"
)
assert module["status"] == "available"
# =====================================================
# Test 6 — Find By Type
# =====================================================
def test_find_by_type():
modules = registry.find_by_type(
"image_upscaler"
)
assert len(modules) >= 1
assert any(
module["module_id"] == "realesrgan"
for module in modules
)
# =====================================================
# Test Runner
# =====================================================
def main():
tests = [
test_registry_exists,
test_realesrgan_exists,
test_realesrgan_information,
test_realesrgan_capability,
test_realesrgan_status,
test_find_by_type,
]
passed = 0
failed = 0
print(
"===================================="
)
print(
"Apckeyl Module Registry Test"
)
print(
"Version 1.0"
)
print(
"===================================="
)
for test in tests:
try:
test()
print(
f"PASS: {test.__name__}"
)
passed += 1
except Exception as error:
print(
f"FAIL: {test.__name__}"
)
print(
f"ERROR: {error}"
)
failed += 1
print(
"===================================="
)
print(
f"PASSED: {passed}"
)
print(
f"FAILED: {failed}"
)
print(
"===================================="
)
if failed > 0:
raise RuntimeError(
"Module Registry Test FAILED"
)
print(
"MODULE REGISTRY TEST: PASSED"
)
if __name__ == "__main__":
main() |