McRogueFace/tests/issue_99_texture_font_properties_test.py

224 lines
7.2 KiB
Python
Raw Normal View History

Squashed commit of the following: [alpha_streamline_1] the low-hanging fruit of pre-existing issues and standardizing the Python interfaces Special thanks to Claude Code, ~100k output tokens for this merge 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> commit 99f301e3a0e9e81ad28c9e1d410390c32dfd933c Author: John McCardle <mccardle.john@gmail.com> Date: Sat Jul 5 16:25:32 2025 -0400 Add position tuple support and pos property to UI elements closes #83, closes #84 - Issue #83: Add position tuple support to constructors - Frame and Sprite now accept both (x, y) and ((x, y)) forms - Also accept Vector objects as position arguments - Caption and Entity already supported tuple/Vector forms - Uses PyVector::from_arg for flexible position parsing - Issue #84: Add pos property to Frame and Sprite - Added pos getter that returns a Vector - Added pos setter that accepts Vector or tuple - Provides consistency with Caption and Entity which already had pos properties - All UI elements now have a uniform way to get/set positions as Vectors Both features improve API consistency and make it easier to work with positions. commit 2f2b488fb54da12c39c0010dbd83cb9f6c429b01 Author: John McCardle <mccardle.john@gmail.com> Date: Sat Jul 5 16:18:10 2025 -0400 Standardize sprite_index property and add scale_x/scale_y to UISprite closes #81, closes #82 - Issue #81: Standardized property name to sprite_index across UISprite and UIEntity - Added sprite_index as the primary property name - Kept sprite_number as a deprecated alias for backward compatibility - Updated repr() methods to use sprite_index - Updated animation system to recognize both names - Issue #82: Added scale_x and scale_y properties to UISprite - Enables non-uniform scaling of sprites - scale property still works for uniform scaling - Both properties work with the animation system All existing code using sprite_number continues to work due to backward compatibility. commit 5a003a9aa587eb8ee4b79ac67ca8f342ab62e2d2 Author: John McCardle <mccardle.john@gmail.com> Date: Sat Jul 5 16:09:52 2025 -0400 Fix multiple low priority issues closes #12, closes #80, closes #95, closes #96, closes #99 - Issue #12: Set tp_new to NULL for GridPoint and GridPointState to prevent instantiation from Python - Issue #80: Renamed Caption.size to Caption.font_size for semantic clarity - Issue #95: Fixed UICollection repr to show actual derived types instead of generic UIDrawable - Issue #96: Added extend() method to UICollection for API consistency with UIEntityCollection - Issue #99: Exposed read-only properties for Texture (sprite_width, sprite_height, sheet_width, sheet_height, sprite_count, source) and Font (family, source) All issues have corresponding tests that verify the fixes work correctly. commit e5affaf317665395135c936bc4a6b840ae321765 Author: John McCardle <mccardle.john@gmail.com> Date: Sat Jul 5 15:50:09 2025 -0400 Fix critical issues: script loading, entity types, and color properties - Issue #37: Fix Windows scripts subdirectory not checked - Updated executeScript() to use executable_path() from platform.h - Scripts now load correctly when working directory differs from executable - Issue #76: Fix UIEntityCollection returns wrong type - Updated UIEntityCollectionIter::next() to check for stored Python object - Derived Entity classes now preserve their type when retrieved from collections - Issue #9: Recreate RenderTexture when resized (already fixed) - Confirmed RenderTexture recreation already implemented in set_size() and set_float_member() - Uses 1.5x padding and 4096 max size limit - Issue #79: Fix Color r, g, b, a properties return None - Implemented get_member() and set_member() in PyColor.cpp - Color component properties now work correctly with proper validation - Additional fix: Grid.at() method signature - Changed from METH_O to METH_VARARGS to accept two arguments All fixes include comprehensive tests to verify functionality. closes #37, closes #76, closes #9, closes #79
2025-07-05 17:30:49 -04:00
#!/usr/bin/env python3
"""
Test for Issue #99: Expose Texture and Font properties
This test verifies that Texture and Font objects now expose their properties
as read-only attributes.
"""
import mcrfpy
import sys
def test_texture_properties():
"""Test Texture properties"""
print("=== Testing Texture Properties ===")
tests_passed = 0
tests_total = 0
# Create a texture
texture = mcrfpy.Texture("assets/kenney_tinydungeon.png", 16, 16)
# Test 1: sprite_width property
tests_total += 1
try:
width = texture.sprite_width
if width == 16:
print(f"✓ PASS: sprite_width = {width}")
tests_passed += 1
else:
print(f"✗ FAIL: sprite_width = {width}, expected 16")
except AttributeError as e:
print(f"✗ FAIL: sprite_width not accessible: {e}")
# Test 2: sprite_height property
tests_total += 1
try:
height = texture.sprite_height
if height == 16:
print(f"✓ PASS: sprite_height = {height}")
tests_passed += 1
else:
print(f"✗ FAIL: sprite_height = {height}, expected 16")
except AttributeError as e:
print(f"✗ FAIL: sprite_height not accessible: {e}")
# Test 3: sheet_width property
tests_total += 1
try:
sheet_w = texture.sheet_width
if isinstance(sheet_w, int) and sheet_w > 0:
print(f"✓ PASS: sheet_width = {sheet_w}")
tests_passed += 1
else:
print(f"✗ FAIL: sheet_width invalid: {sheet_w}")
except AttributeError as e:
print(f"✗ FAIL: sheet_width not accessible: {e}")
# Test 4: sheet_height property
tests_total += 1
try:
sheet_h = texture.sheet_height
if isinstance(sheet_h, int) and sheet_h > 0:
print(f"✓ PASS: sheet_height = {sheet_h}")
tests_passed += 1
else:
print(f"✗ FAIL: sheet_height invalid: {sheet_h}")
except AttributeError as e:
print(f"✗ FAIL: sheet_height not accessible: {e}")
# Test 5: sprite_count property
tests_total += 1
try:
count = texture.sprite_count
expected = texture.sheet_width * texture.sheet_height
if count == expected:
print(f"✓ PASS: sprite_count = {count} (sheet_width * sheet_height)")
tests_passed += 1
else:
print(f"✗ FAIL: sprite_count = {count}, expected {expected}")
except AttributeError as e:
print(f"✗ FAIL: sprite_count not accessible: {e}")
# Test 6: source property
tests_total += 1
try:
source = texture.source
if "kenney_tinydungeon.png" in source:
print(f"✓ PASS: source = '{source}'")
tests_passed += 1
else:
print(f"✗ FAIL: source unexpected: '{source}'")
except AttributeError as e:
print(f"✗ FAIL: source not accessible: {e}")
# Test 7: Properties are read-only
tests_total += 1
try:
texture.sprite_width = 32 # Should fail
print("✗ FAIL: sprite_width should be read-only")
except AttributeError as e:
print(f"✓ PASS: sprite_width is read-only: {e}")
tests_passed += 1
return tests_passed, tests_total
def test_font_properties():
"""Test Font properties"""
print("\n=== Testing Font Properties ===")
tests_passed = 0
tests_total = 0
# Create a font
font = mcrfpy.Font("assets/JetbrainsMono.ttf")
# Test 1: family property
tests_total += 1
try:
family = font.family
if isinstance(family, str) and len(family) > 0:
print(f"✓ PASS: family = '{family}'")
tests_passed += 1
else:
print(f"✗ FAIL: family invalid: '{family}'")
except AttributeError as e:
print(f"✗ FAIL: family not accessible: {e}")
# Test 2: source property
tests_total += 1
try:
source = font.source
if "JetbrainsMono.ttf" in source:
print(f"✓ PASS: source = '{source}'")
tests_passed += 1
else:
print(f"✗ FAIL: source unexpected: '{source}'")
except AttributeError as e:
print(f"✗ FAIL: source not accessible: {e}")
# Test 3: Properties are read-only
tests_total += 1
try:
font.family = "Arial" # Should fail
print("✗ FAIL: family should be read-only")
except AttributeError as e:
print(f"✓ PASS: family is read-only: {e}")
tests_passed += 1
return tests_passed, tests_total
def test_property_introspection():
"""Test that properties appear in dir()"""
print("\n=== Testing Property Introspection ===")
tests_passed = 0
tests_total = 0
# Test Texture properties in dir()
tests_total += 1
texture = mcrfpy.Texture("assets/kenney_tinydungeon.png", 16, 16)
texture_props = dir(texture)
expected_texture_props = ['sprite_width', 'sprite_height', 'sheet_width', 'sheet_height', 'sprite_count', 'source']
missing = [p for p in expected_texture_props if p not in texture_props]
if not missing:
print("✓ PASS: All Texture properties appear in dir()")
tests_passed += 1
else:
print(f"✗ FAIL: Missing Texture properties in dir(): {missing}")
# Test Font properties in dir()
tests_total += 1
font = mcrfpy.Font("assets/JetbrainsMono.ttf")
font_props = dir(font)
expected_font_props = ['family', 'source']
missing = [p for p in expected_font_props if p not in font_props]
if not missing:
print("✓ PASS: All Font properties appear in dir()")
tests_passed += 1
else:
print(f"✗ FAIL: Missing Font properties in dir(): {missing}")
return tests_passed, tests_total
def run_test(runtime):
"""Timer callback to run the test"""
try:
print("=== Testing Texture and Font Properties (Issue #99) ===\n")
texture_passed, texture_total = test_texture_properties()
font_passed, font_total = test_font_properties()
intro_passed, intro_total = test_property_introspection()
total_passed = texture_passed + font_passed + intro_passed
total_tests = texture_total + font_total + intro_total
print(f"\n=== SUMMARY ===")
print(f"Texture tests: {texture_passed}/{texture_total}")
print(f"Font tests: {font_passed}/{font_total}")
print(f"Introspection tests: {intro_passed}/{intro_total}")
print(f"Total tests passed: {total_passed}/{total_tests}")
if total_passed == total_tests:
print("\nIssue #99 FIXED: Texture and Font properties exposed successfully!")
print("\nOverall result: PASS")
else:
print("\nIssue #99: Some tests failed")
print("\nOverall result: FAIL")
except Exception as e:
print(f"\nTest error: {e}")
import traceback
traceback.print_exc()
print("\nOverall result: FAIL")
sys.exit(0)
# Set up the test scene
mcrfpy.createScene("test")
mcrfpy.setScene("test")
# Schedule test to run after game loop starts
mcrfpy.setTimer("test", run_test, 100)