username = 'mock-username'; $account->lang = 'id'; $accountQuery = $this->createMock(AccountQuery::class); $accountQuery->method('findFor')->willReturn($account); $confirmation = $this->createPartialMock(NewEmailConfirmation::class, ['getAccount']); $confirmation->method('getAccount')->willReturn($accountQuery); $confirmation->setNewEmail('new-email@ely.by'); $confirmation->key = 'ABCDEFG'; $result = SendNewEmailConfirmation::createFromConfirmation($confirmation); $this->assertSame('mock-username', $result->username); $this->assertSame('new-email@ely.by', $result->email); $this->assertSame('ABCDEFG', $result->code); } public function testExecute() { $task = new SendNewEmailConfirmation(); $task->username = 'mock-username'; $task->email = 'mock@ely.by'; $task->code = 'GFEDCBA'; $task->execute($this->createMock(Queue::class)); $this->tester->canSeeEmailIsSent(1); /** @var \yii\swiftmailer\Message $email */ $email = $this->tester->grabSentEmails()[0]; $this->assertSame(['mock@ely.by' => 'mock-username'], $email->getTo()); $this->assertSame('Ely.by Account new E-mail confirmation', $email->getSubject()); $children = $email->getSwiftMessage()->getChildren()[0]; $this->assertStringContainsString('GFEDCBA', $children->getBody()); } }