| """ |
| Tests for migration functionality ensuring no duplicate program chains |
| |
| This test suite specifically focuses on testing that migration between islands |
| creates clean copies with UUID identifiers rather than _migrant suffixes, |
| preventing the exponential duplication that was occurring in the old implementation. |
| """ |
|
|
| import unittest |
| import uuid |
| import re |
| from openevolve.config import Config |
| from openevolve.database import Program, ProgramDatabase |
|
|
|
|
| class TestMigrationNoDuplicates(unittest.TestCase): |
| """Tests for migration without creating duplicate program chains""" |
|
|
| def setUp(self): |
| """Set up test database with migration enabled""" |
| config = Config() |
| config.database.in_memory = True |
| config.database.num_islands = 4 |
| config.database.migration_rate = 0.5 |
| config.database.migration_interval = 2 |
| config.database.feature_bins = 5 |
| self.db = ProgramDatabase(config.database) |
|
|
| def _create_test_program(self, program_id: str, score: float, features: list, island: int, generation: int = 1) -> Program: |
| """Helper to create a test program""" |
| program = Program( |
| id=program_id, |
| code=f"def func_{program_id}(): return {score}", |
| language="python", |
| metrics={"score": score, "combined_score": score}, |
| metadata={"island": island, "generation": generation}, |
| ) |
| program.features = features |
| return program |
|
|
| def _is_valid_uuid(self, test_string: str) -> bool: |
| """Check if a string is a valid UUID""" |
| try: |
| uuid.UUID(test_string) |
| return True |
| except ValueError: |
| return False |
|
|
| def test_migration_creates_clean_uuid_ids(self): |
| """Test that migration creates programs with clean UUID IDs, not _migrant suffixes""" |
| |
| for island in range(3): |
| for i in range(3): |
| prog = self._create_test_program(f"prog_{island}_{i}", 0.7 + i*0.1, [0.2 + i*0.1, 0.3], island, generation=3) |
| self.db.add(prog) |
| self.db.island_generations[island] = 3 |
|
|
| |
| original_program_count = len([p for island_map in self.db.island_feature_maps for p in island_map.values()]) |
| |
| |
| self.db.migrate_programs() |
| |
| |
| all_program_ids = [] |
| for island_map in self.db.island_feature_maps: |
| all_program_ids.extend(island_map.values()) |
|
|
| |
| migrant_programs = [pid for pid in all_program_ids if '_migrant' in pid] |
| self.assertEqual(len(migrant_programs), 0, |
| f"Found programs with _migrant suffix after migration: {migrant_programs}") |
|
|
| |
| original_ids = {f"prog_{i}_{j}" for i in range(3) for j in range(3)} |
| migrated_ids = set(all_program_ids) - original_ids |
| |
| for migrated_id in migrated_ids: |
| |
| self.assertNotIn('_migrant', migrated_id, |
| f"Migrated program ID {migrated_id} contains _migrant suffix") |
|
|
| def test_multiple_migration_rounds_no_exponential_growth(self): |
| """Test that multiple migration rounds don't create exponential program growth""" |
| |
| initial_programs = [] |
| for i in range(3): |
| prog = self._create_test_program(f"initial_{i}", 0.8, [0.2 + i*0.2, 0.3], island=0, generation=1) |
| self.db.add(prog) |
| initial_programs.append(prog.id) |
|
|
| |
| program_counts = [] |
| for round_num in range(5): |
| |
| for island in range(self.db.config.num_islands): |
| self.db.island_generations[island] = round_num + 3 |
|
|
| self.db.migrate_programs() |
| |
| |
| all_program_ids = set() |
| for island_map in self.db.island_feature_maps: |
| all_program_ids.update(island_map.values()) |
| |
| program_counts.append(len(all_program_ids)) |
|
|
| |
| if round_num > 0: |
| growth_ratio = program_counts[round_num] / program_counts[round_num - 1] |
| self.assertLess(growth_ratio, 3.0, |
| f"Exponential growth detected in round {round_num}: {growth_ratio}x growth") |
|
|
| |
| final_program_ids = set() |
| for island_map in self.db.island_feature_maps: |
| final_program_ids.update(island_map.values()) |
| |
| migrant_programs = [pid for pid in final_program_ids if '_migrant' in pid] |
| self.assertEqual(len(migrant_programs), 0, |
| f"Found programs with _migrant suffix after multiple migrations: {migrant_programs}") |
|
|
| def test_migrated_program_content_preserved(self): |
| """Test that migrated programs preserve original content and metrics""" |
| |
| original_code = "def complex_function(x, y): return x**2 + y**2" |
| original_metrics = {"score": 0.85, "combined_score": 0.85, "complexity": 42} |
| |
| prog = Program( |
| id="original_prog", |
| code=original_code, |
| language="python", |
| metrics=original_metrics, |
| metadata={"island": 0, "generation": 3}, |
| ) |
| prog.features = [0.5, 0.6] |
| |
| self.db.add(prog) |
| self.db.island_generations[0] = 3 |
|
|
| |
| self.db.migrate_programs() |
|
|
| |
| all_program_ids = [] |
| for island_map in self.db.island_feature_maps: |
| all_program_ids.extend(island_map.values()) |
|
|
| |
| for prog_id in all_program_ids: |
| program = self.db.get(prog_id) |
| if program: |
| |
| self.assertEqual(program.code, original_code) |
| |
| self.assertEqual(program.metrics.get("score"), 0.85) |
| self.assertEqual(program.metrics.get("combined_score"), 0.85) |
|
|
| def test_migration_target_islands_are_different(self): |
| """Test that programs migrate to different islands, not same island""" |
| |
| prog_ids = [] |
| for i in range(5): |
| prog = self._create_test_program(f"prog_{i}", 0.7 + i*0.05, [0.2 + i*0.1, 0.3], island=0, generation=3) |
| self.db.add(prog, target_island=0) |
| prog_ids.append(prog.id) |
|
|
| self.db.island_generations[0] = 3 |
|
|
| |
| initial_counts = [len(island_map) for island_map in self.db.island_feature_maps] |
| initial_total = sum(initial_counts) |
|
|
| |
| self.db.migrate_programs() |
|
|
| |
| final_counts = [len(island_map) for island_map in self.db.island_feature_maps] |
| final_total = sum(final_counts) |
|
|
| |
| migrant_suffix_programs = [pid for pid in self.db.programs.keys() if "_migrant_" in pid] |
| self.assertEqual(len(migrant_suffix_programs), 0, "No programs should have _migrant_ suffixes") |
| |
| |
| |
| self.assertGreaterEqual(final_total, initial_total, |
| "Migration should create copies of programs") |
| |
| |
| migrant_programs = [p for p in self.db.programs.values() if p.metadata.get("migrant", False)] |
| if len(migrant_programs) > 0: |
| |
| migrant_islands = set(p.metadata.get("island", 0) for p in migrant_programs) |
| self.assertTrue(len(migrant_islands) > 1 or (len(migrant_islands) == 1 and 0 not in migrant_islands), |
| "Migrated programs should be in different islands") |
|
|
| def test_no_duplicate_program_ids_across_all_islands(self): |
| """Test that no program ID appears in multiple islands simultaneously""" |
| |
| for round_num in range(3): |
| for i in range(3): |
| prog = self._create_test_program(f"round_{round_num}_prog_{i}", 0.6 + i*0.1, [0.2 + i*0.1, 0.4], island=0, generation=round_num + 2) |
| self.db.add(prog) |
| |
| |
| for island in range(self.db.config.num_islands): |
| self.db.island_generations[island] = round_num + 3 |
| |
| self.db.migrate_programs() |
|
|
| |
| all_program_ids = [] |
| for island_idx, island_map in enumerate(self.db.island_feature_maps): |
| for coord, prog_id in island_map.items(): |
| all_program_ids.append((prog_id, island_idx, coord)) |
|
|
| |
| seen_ids = set() |
| duplicates = [] |
| |
| for prog_id, island_idx, coord in all_program_ids: |
| if prog_id in seen_ids: |
| duplicates.append(prog_id) |
| seen_ids.add(prog_id) |
|
|
| self.assertEqual(len(duplicates), 0, |
| f"Found duplicate program IDs across islands: {duplicates}") |
|
|
| def test_migration_with_feature_map_conflicts_resolved_cleanly(self): |
| """Test that when migrants compete for same feature cell, resolution is clean""" |
| |
| prog1 = self._create_test_program("high_quality", 0.9, [0.5, 0.5], island=0, generation=3) |
| prog2 = self._create_test_program("low_quality", 0.3, [0.5, 0.5], island=1, generation=3) |
| |
| self.db.add(prog1) |
| self.db.add(prog2) |
| |
| |
| for island in range(self.db.config.num_islands): |
| self.db.island_generations[island] = 3 |
|
|
| |
| self.db.migrate_programs() |
|
|
| |
| all_program_ids = set() |
| for island_map in self.db.island_feature_maps: |
| all_program_ids.update(island_map.values()) |
|
|
| |
| migrant_programs = [pid for pid in all_program_ids if '_migrant' in pid] |
| self.assertEqual(len(migrant_programs), 0, |
| f"Found programs with _migrant suffix: {migrant_programs}") |
|
|
| def test_migration_uses_map_elites_deduplication(self): |
| """Test that migrants go through MAP-Elites deduplication (same cell = keep better)""" |
| |
| |
| prog_low = Program( |
| id="low_score", |
| code="def low_func(): return 1", |
| language="python", |
| metrics={ |
| "complexity": 50.0, |
| "diversity": 30.0, |
| "score": 0.3, |
| "combined_score": 0.3 |
| }, |
| metadata={"island": 0, "generation": 3}, |
| ) |
|
|
| prog_high = Program( |
| id="high_score", |
| code="def high_func(): return 2", |
| language="python", |
| metrics={ |
| "complexity": 50.0, |
| "diversity": 30.0, |
| "score": 0.9, |
| "combined_score": 0.9 |
| }, |
| metadata={"island": 0, "generation": 3}, |
| ) |
|
|
| |
| |
| self.db.add(prog_low) |
|
|
| |
| coords_low = self.db._calculate_feature_coords(prog_low) |
|
|
| |
| self.db.add(prog_high) |
|
|
| |
| coords_high = self.db._calculate_feature_coords(prog_high) |
|
|
| |
| self.assertEqual(coords_low, coords_high, "Programs with same custom metrics should map to same cell") |
|
|
| |
| |
| island_0_feature_map = self.db.island_feature_maps[0] |
| feature_key = self.db._feature_coords_to_key(coords_high) |
|
|
| |
| self.assertIn(feature_key, island_0_feature_map, "Cell should be occupied") |
| cell_program_id = island_0_feature_map[feature_key] |
| self.assertEqual(cell_program_id, "high_score", "Better program should be kept in MAP-Elites cell") |
|
|
| |
| self.db.island_generations[0] = 3 |
|
|
| |
| self.db.migrate_programs() |
|
|
| |
| |
| island_1_feature_map = self.db.island_feature_maps[1] |
|
|
| |
| migrant_in_feature_map = feature_key in island_1_feature_map |
|
|
| self.assertTrue(migrant_in_feature_map, |
| "Migrant should be added to target island's feature map (currently bypasses add())") |
|
|
| |
| if migrant_in_feature_map: |
| migrant_id = island_1_feature_map[feature_key] |
| migrant_program = self.db.programs[migrant_id] |
| |
| self.assertEqual(migrant_program.code, "def high_func(): return 2", "Migrant should have high_score's code") |
| self.assertEqual(migrant_program.metrics["combined_score"], 0.9, |
| "Migrant should preserve high score") |
|
|
| def test_migration_skips_duplicate_code_on_target_island(self): |
| """Test that migration skips programs if target island already has identical code""" |
| |
| prog_island_0 = Program( |
| id="prog_island_0", |
| code="def shared_code(): return 42", |
| language="python", |
| metrics={ |
| "complexity": 50.0, |
| "diversity": 30.0, |
| "score": 0.8, |
| "combined_score": 0.8 |
| }, |
| metadata={"island": 0, "generation": 3}, |
| ) |
| self.db.add(prog_island_0) |
|
|
| |
| prog_island_1 = Program( |
| id="prog_island_1", |
| code="def shared_code(): return 42", |
| language="python", |
| metrics={ |
| "complexity": 50.0, |
| "diversity": 30.0, |
| "score": 0.7, |
| "combined_score": 0.7 |
| }, |
| metadata={"island": 1, "generation": 3}, |
| ) |
| self.db.add(prog_island_1, target_island=1) |
|
|
| |
| self.db.island_generations[0] = 3 |
| self.db.island_generations[1] = 3 |
|
|
| |
| island_1_before = len([pid for pid in self.db.islands[1] if pid in self.db.programs]) |
|
|
| |
| self.db.migrate_programs() |
|
|
| |
| island_1_after = len([pid for pid in self.db.islands[1] if pid in self.db.programs]) |
|
|
| |
| |
| |
|
|
| |
| island_1_programs = [self.db.programs[pid] for pid in self.db.islands[1] if pid in self.db.programs] |
| shared_code_count = sum(1 for p in island_1_programs if p.code == "def shared_code(): return 42") |
|
|
| |
| |
| |
| self.assertEqual(shared_code_count, 1, |
| f"Should not migrate duplicate code - found {shared_code_count} programs with identical code on island 1") |
|
|
| |
| |
| if shared_code_count == 1: |
| shared_code_programs = [p for p in island_1_programs if p.code == "def shared_code(): return 42"] |
| self.assertEqual(shared_code_programs[0].id, "prog_island_1", |
| "Original program should remain, no migrant copy needed") |
|
|
|
|
| if __name__ == '__main__': |
| unittest.main() |