. */ 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(IcelandicSurnameTradition::class)] class IcelandicSurnameTraditionTest extends TestCase { private SurnameTraditionInterface $surname_tradition; /** * Test whether surnames are used */ public function testSurnames(): void { self::assertSame('', $this->surname_tradition->defaultName()); } /** * Test new son names */ public function testNewSonNames(): void { $father_fact = $this->createStub(Fact::class); $father_fact->method('value')->willReturn('Jon Einarsson'); $father = $this->createStub(Individual::class); $father->method('facts')->willReturn(new Collection([$father_fact])); $mother_fact = $this->createStub(Fact::class); $mother_fact->method('value')->willReturn('Eva Stefansdottir'); $mother = $this->createStub(Individual::class); $mother->method('facts')->willReturn(new Collection([$mother_fact])); self::assertSame( ["1 NAME Jonsson\n2 TYPE BIRTH\n2 GIVN Jonsson"], $this->surname_tradition->newChildNames($father, $mother, 'M') ); } /** * Test new daughter names */ public function testNewDaughterNames(): void { $father_fact = $this->createStub(Fact::class); $father_fact->method('value')->willReturn('Jon Einarsson'); $father = $this->createStub(Individual::class); $father->method('facts')->willReturn(new Collection([$father_fact])); $mother_fact = $this->createStub(Fact::class); $mother_fact->method('value')->willReturn('Eva Stefansdottir'); $mother = $this->createStub(Individual::class); $mother->method('facts')->willReturn(new Collection([$mother_fact])); self::assertSame( ["1 NAME Jonsdottir\n2 TYPE BIRTH\n2 GIVN Jonsdottir"], $this->surname_tradition->newChildNames($father, $mother, 'F') ); } /** * Test new child names */ public function testNewChildNames(): void { $father_fact = $this->createStub(Fact::class); $father_fact->method('value')->willReturn('Jon Einarsson'); $father = $this->createStub(Individual::class); $father->method('facts')->willReturn(new Collection([$father_fact])); $mother_fact = $this->createStub(Fact::class); $mother_fact->method('value')->willReturn('Eva Stefansdottir'); $mother = $this->createStub(Individual::class); $mother->method('facts')->willReturn(new Collection([$mother_fact])); self::assertSame( ["1 NAME\n2 TYPE BIRTH"], $this->surname_tradition->newChildNames($father, $mother, 'U') ); } /** * Test new father names */ public function testNewFatherNames(): void { $fact = $this->createStub(Fact::class); $fact->method('value')->willReturn('Jon Einarsson'); $individual = $this->createStub(Individual::class); $individual->method('facts')->willReturn(new Collection([$fact])); self::assertSame( ["1 NAME Einar\n2 TYPE BIRTH\n2 GIVN Einar"], $this->surname_tradition->newParentNames($individual, 'M') ); } /** * Test new mother names */ public function testNewMotherNames(): void { $fact = $this->createStub(Fact::class); $fact->method('value')->willReturn('Jon Evasdottir'); $individual = $this->createStub(Individual::class); $individual->method('facts')->willReturn(new Collection([$fact])); self::assertSame( ["1 NAME Eva\n2 TYPE BIRTH\n2 GIVN Eva"], $this->surname_tradition->newParentNames($individual, 'F') ); } /** * Test new parent names */ public function testNewParentNames(): void { $fact = $this->createStub(Fact::class); $fact->method('value')->willReturn('Jon Einarsson'); $individual = $this->createStub(Individual::class); $individual->method('facts')->willReturn(new Collection([$fact])); self::assertSame( ["1 NAME\n2 TYPE BIRTH"], $this->surname_tradition->newParentNames($individual, 'U') ); } /** * Test new spouse names */ public function testNewSpouseNames(): void { $fact = $this->createStub(Fact::class); $fact->method('value')->willReturn('Jon Einarsson'); $individual = $this->createStub(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') ); } /** * Prepare the environment for these tests */ protected function setUp(): void { parent::setUp(); $this->surname_tradition = new IcelandicSurnameTradition(); } }