Skip to content

Commit

Permalink
GraphQL-129. Add generate customer token test
Browse files Browse the repository at this point in the history
  • Loading branch information
pfantini committed Sep 11, 2018
1 parent ea9b2a8 commit ca0c135
Showing 1 changed file with 66 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\GraphQl\Customer;

use Magento\TestFramework\TestCase\GraphQlAbstract;

class GenerateCustomerTokenTest extends GraphQlAbstract
{

/**
* Verify customer token with valid credentials
*
* @magentoApiDataFixture Magento/Customer/_files/customer.php
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function testGenerateCustomerValidToken()
{
$userName = '[email protected]';
$password = 'password';

$mutation
= <<<MUTATION
mutation {
generateCustomerToken(
email: "{$userName}"
password: "{$password}"
)
}
MUTATION;

$response = $this->graphQlQuery($mutation);
$this->assertArrayHasKey('generateCustomerToken', $response);
$this->assertInternalType('string', $response['generateCustomerToken']);
}

/**
* Verify customer with invalid credentials
*
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
*/
public function testGenerateCustomerTokenWithInvalidCredentials()
{
$userName = '[email protected]';
$password = 'bad-password';

$mutation
= <<<MUTATION
mutation {
generateCustomerToken(
email: "{$userName}"
password: "{$password}"
)
}
MUTATION;

$this->expectException(\Exception::class);
$this->expectExceptionMessage('GraphQL response contains errors: ' .
'The account sign-in was incorrect or your account is disabled temporarily. Please wait and try again later.');
$this->graphQlQuery($mutation);
}
}

0 comments on commit ca0c135

Please sign in to comment.