. */ declare(strict_types=1); namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\Fact; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\TestCase; use Illuminate\Support\Collection; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(PortugueseSurnameTradition::class)] class PortugueseSurnameTraditionTest extends TestCase { private SurnameTraditionInterface $surname_tradition; /** * Prepare the environment for these tests */ protected function setUp(): void { parent::setUp(); $this->surname_tradition = new PortugueseSurnameTradition(); } /** * Test whether surnames are used */ public function testSurnames(): void { self::assertSame('// //', $this->surname_tradition->defaultName()); } /** * Test new child names */ public function testNewChildNames(): void { $father_fact = $this->createMock(Fact::class); $father_fact->method('value')->willReturn('Gabriel /Garcia/ /Iglesias/'); $father = $this->createMock(Individual::class); $father->method('facts')->willReturn(new Collection([$father_fact])); $mother_fact = $this->createMock(Fact::class); $mother_fact->method('value')->willReturn('Maria /Ruiz/ /Lorca/'); $mother = $this->createMock(Individual::class); $mother->method('facts')->willReturn(new Collection([$mother_fact])); self::assertSame( ["1 NAME /Iglesias/ /Lorca/\n2 TYPE BIRTH\n2 SURN Iglesias,Lorca"], $this->surname_tradition->newChildNames($father, $mother, 'M') ); self::assertSame( ["1 NAME /Iglesias/ /Lorca/\n2 TYPE BIRTH\n2 SURN Iglesias,Lorca"], $this->surname_tradition->newChildNames($father, $mother, 'F') ); self::assertSame( ["1 NAME /Iglesias/ /Lorca/\n2 TYPE BIRTH\n2 SURN Iglesias,Lorca"], $this->surname_tradition->newChildNames($father, $mother, 'U') ); } /** * Test new child names */ public function testNewChildNamesWithNoParentsNames(): void { self::assertSame( ["1 NAME // //\n2 TYPE BIRTH"], $this->surname_tradition->newChildNames(null, null, 'U') ); } /** * Test new child names */ public function testNewChildNamesCompunds(): void { $father_fact = $this->createMock(Fact::class); $father_fact->method('value')->willReturn('Gabriel /Garcia/ y /Iglesias/'); $father = $this->createMock(Individual::class); $father->method('facts')->willReturn(new Collection([$father_fact])); $mother_fact = $this->createMock(Fact::class); $mother_fact->method('value')->willReturn('Maria /Ruiz/ y /Lorca/'); $mother = $this->createMock(Individual::class); $mother->method('facts')->willReturn(new Collection([$mother_fact])); self::assertSame( ["1 NAME /Iglesias/ /Lorca/\n2 TYPE BIRTH\n2 SURN Iglesias,Lorca"], $this->surname_tradition->newChildNames($father, $mother, 'M') ); } /** * Test new parent names */ public function testNewParentNames(): void { $fact = $this->createMock(Fact::class); $fact->method('value')->willReturn('Gabriel /Garcia/ /Iglesias/'); $individual = $this->createMock(Individual::class); $individual->method('facts')->willReturn(new Collection([$fact])); self::assertSame( ["1 NAME // /Garcia/\n2 TYPE BIRTH\n2 SURN Garcia"], $this->surname_tradition->newParentNames($individual, 'M') ); self::assertSame( ["1 NAME // /Iglesias/\n2 TYPE BIRTH\n2 SURN Iglesias"], $this->surname_tradition->newParentNames($individual, 'F') ); self::assertSame( ["1 NAME // //\n2 TYPE BIRTH"], $this->surname_tradition->newParentNames($individual, 'U') ); } /** * Test new spouse names */ public function testNewSpouseNames(): void { $fact = $this->createMock(Fact::class); $fact->method('value')->willReturn('Gabriel /Garcia/ /Iglesias/'); $individual = $this->createMock(Individual::class); $individual->method('facts')->willReturn(new Collection([$fact])); self::assertSame( ["1 NAME // //\n2 TYPE BIRTH"], $this->surname_tradition->newSpouseNames($individual, 'M') ); self::assertSame( ["1 NAME // //\n2 TYPE BIRTH"], $this->surname_tradition->newSpouseNames($individual, 'F') ); self::assertSame( ["1 NAME // //\n2 TYPE BIRTH"], $this->surname_tradition->newSpouseNames($individual, 'U') ); } }