assertEquals($expectedEmail, $transparentEmail->getPrimaryEmail(new Email($email, $caseSensitive))); } public function providerGetPrimaryEmail() : array { $emptyServiceCollector = $this->createServiceCollector(); $tlenServiceCollector = $this->createServiceCollector([TlenPl::class]); return [ [ new TransparentEmail($tlenServiceCollector), 'john.doe+alias@gmail.com', 'john.doe+alias@gmail.com' ], [(new TransparentEmailFactory())->createDefault(), 'john.doe+alias@gmail.com', 'johndoe@gmail.com'], [new TransparentEmail($emptyServiceCollector), 'John.Doe@example.com', 'john.doe@example.com'], [new TransparentEmail($emptyServiceCollector), 'John.Doe@example.com', 'John.Doe@example.com', true], [(new TransparentEmailFactory())->createDefault(), 'John.Doe@gmail.com', 'johndoe@gmail.com', true], [(new TransparentEmailFactory())->createDefault(), 'Jane.Doe+receipts@hotmail.com', 'jane.doe@hotmail.com'], [(new TransparentEmailFactory())->createDefault(), 'Jane.Doe+receipts@live.com', 'jane.doe@live.com'], [(new TransparentEmailFactory())->createDefault(), 'Jane.Doe+receipts@msn.com', 'jane.doe@msn.com'], [(new TransparentEmailFactory())->createDefault(), 'Jane.Doe+receipts@outlook.com', 'jane.doe@outlook.com'], [(new TransparentEmailFactory())->createDefault(), 'Jane.Doe-receipts@yahoo.com', 'jane.doe@yahoo.com'], ]; } /** * @dataProvider providerDefault * * @param EmailInterface $inputEmail * @param string $expectedEmail */ public function testDefault(EmailInterface $inputEmail, string $expectedEmail) { $outputEmail = ((new TransparentEmailFactory())->createDefault())->getPrimaryEmail($inputEmail); $this->assertEquals($expectedEmail, $outputEmail); } public function providerDefault() : array { return [ [new Email('John.Doe+spam@gmail.com', true), 'johndoe@gmail.com'], [new Email('Jane.Doe+spam@outlook.com', true), 'jane.doe@outlook.com'], [new Email('John.Doe@tlen.pl', true), 'john.doe@o2.pl'], [new Email('ALIAS@janedoe.33mail.com', true), 'janedoe@janedoe.33mail.com'], [new Email('John.Doe-facebook@yahoo.com', true), 'john.doe@yahoo.com'], ]; } private function createServiceCollector(array $classes = []) : ServiceCollectorInterface { $collector = new ServiceCollector(); foreach ($classes as $class) { $collector->addService(new $class()); } return $collector; } }