summaryrefslogtreecommitdiff
path: root/tests/app/Factories
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2022-05-07 13:32:20 +0100
committerGreg Roach <greg@subaqua.co.uk>2022-05-09 11:42:18 +0100
commit7e128bbfeb9f0f479efa344744b4446bc62c45c4 (patch)
treeb923be10b016e738fa7065e961ca7093fb7e8425 /tests/app/Factories
parent4118eb0701089496b348217fd91c211bdff035bc (diff)
downloadwebtrees-7e128bbfeb9f0f479efa344744b4446bc62c45c4.tar.gz
webtrees-7e128bbfeb9f0f479efa344744b4446bc62c45c4.tar.bz2
webtrees-7e128bbfeb9f0f479efa344744b4446bc62c45c4.zip
Create surname traditions using a factory
Diffstat (limited to 'tests/app/Factories')
-rw-r--r--tests/app/Factories/SurnameTraditionFactoryTest.php82
1 files changed, 82 insertions, 0 deletions
diff --git a/tests/app/Factories/SurnameTraditionFactoryTest.php b/tests/app/Factories/SurnameTraditionFactoryTest.php
new file mode 100644
index 0000000000..4f444eec65
--- /dev/null
+++ b/tests/app/Factories/SurnameTraditionFactoryTest.php
@@ -0,0 +1,82 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 webtrees development team
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ */
+
+declare(strict_types=1);
+
+namespace Fisharebest\Webtrees;
+
+use Fisharebest\Webtrees\Contracts\SurnameTraditionFactoryInterface;
+use Fisharebest\Webtrees\Factories\SurnameTraditionFactory;
+use Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition;
+use Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition;
+
+/**
+ * Test harness for the class SurnameTradition
+ */
+class SurnameTraditionFactoryTest extends TestCase
+{
+ /**
+ * @covers \Fisharebest\Webtrees\Factories\SurnameTraditionFactory::make
+ * @return void
+ */
+ public function testCreate(): void
+ {
+ $factory = new SurnameTraditionFactory();
+
+ self::assertInstanceOf(DefaultSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::DEFAULT));
+ self::assertInstanceOf(IcelandicSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::ICELANDIC));
+ self::assertInstanceOf(LithuanianSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::LITHUANIAN));
+ self::assertInstanceOf(MatrilinealSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::MATRILINEAL));
+ self::assertInstanceOf(PaternalSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::PATERNAL));
+ self::assertInstanceOf(PatrilinealSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::PATRILINEAL));
+ self::assertInstanceOf(PolishSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::POLISH));
+ self::assertInstanceOf(PortugueseSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::PORTUGUESE));
+ self::assertInstanceOf(SpanishSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::SPANISH));
+ }
+
+ /**
+ * Test create() with invalid input
+ *
+ * @covers \Fisharebest\Webtrees\Factories\SurnameTraditionFactory::make
+ * @return void
+ */
+ public function testCreateInvalid(): void
+ {
+ $factory = new SurnameTraditionFactory();
+
+ self::assertInstanceOf(DefaultSurnameTradition::class, $factory->make('FOOBAR'));
+ }
+
+ /**
+ * Test allDescriptions()
+ *
+ * @covers \Fisharebest\Webtrees\Factories\SurnameTraditionFactory::list
+ * @return void
+ */
+ public function testAllDescriptions(): void
+ {
+ $descriptions = Registry::surnameTraditionFactory()->list();
+ self::assertCount(9, $descriptions);
+ }
+}