customerTokenService = Bootstrap::getObjectManager()->get(CustomerTokenServiceInterface::class); $this->customerRegistry = Bootstrap::getObjectManager()->get(CustomerRegistry::class); $this->customerAuthUpdate = Bootstrap::getObjectManager()->get(CustomerAuthUpdate::class); } /** * @magentoApiDataFixture Magento/Customer/_files/customer.php */ public function testGetCustomer() { $currentEmail = 'customer@example.com'; $currentPassword = 'password'; $query = <<graphQlQuery($query, [], '', $this->getCustomerAuthHeaders($currentEmail, $currentPassword)); $this->assertEquals('John', $response['customer']['firstname']); $this->assertEquals('Smith', $response['customer']['lastname']); $this->assertEquals($currentEmail, $response['customer']['email']); } /** * @expectedException \Exception * @expectedExceptionMessage The current customer isn't authorized. */ public function testGetCustomerIfUserIsNotAuthorized() { $query = <<graphQlQuery($query); } /** * @magentoApiDataFixture Magento/Customer/_files/customer.php * @expectedException \Exception * @expectedExceptionMessage The account is locked. */ public function testGetCustomerIfAccountIsLocked() { $this->lockCustomer(1); $currentEmail = 'customer@example.com'; $currentPassword = 'password'; $query = <<graphQlQuery($query, [], '', $this->getCustomerAuthHeaders($currentEmail, $currentPassword)); } /** * @param string $email * @param string $password * @return array */ private function getCustomerAuthHeaders(string $email, string $password): array { $customerToken = $this->customerTokenService->createCustomerAccessToken($email, $password); return ['Authorization' => 'Bearer ' . $customerToken]; } /** * @param int $customerId * @return void */ private function lockCustomer(int $customerId): void { $customerSecure = $this->customerRegistry->retrieveSecureData($customerId); $customerSecure->setLockExpires('2030-12-31 00:00:00'); $this->customerAuthUpdate->saveAuth($customerId); } }