sarga/tests/functional/Customer/CustomerCest.php

200 lines
5.3 KiB
PHP

<?php
namespace Tests\Functional\Customer;
use Faker\Factory;
use FunctionalTester;
use Webkul\Customer\Models\Customer;
use Webkul\Customer\Models\CustomerAddress;
class CustomerCest
{
/**
* Faker factory.
*
* @var Faker\Factory
*/
public $faker;
/**
* Address Fields.
*
* @var array
*/
public $fields = [];
/**
* Constructor.
*
* @return void
*/
public function __construct()
{
/**
* Instantiate a european faker factory to have the vat provider available.
*/
$this->faker = Factory::create('at_AT');
}
/**
* Before method.
*
* @param FunctionalTester $I
* @return void
*/
public function _before(FunctionalTester $I): void
{
$I->useDefaultTheme();
}
/**
* Test update customer profile.
*
* @param FunctionalTester $I
* @return void
*/
public function updateCustomerProfile(FunctionalTester $I): void
{
$customer = $I->loginAsCustomer();
$I->amOnPage('/');
$I->click('Profile');
$I->click('Edit');
$I->selectOption('gender', 'Other');
$I->click('Update Profile');
$I->dontSeeInSource('The old password does not match.');
$I->seeInSource('Profile updated successfully.');
$I->seeRecord(Customer::class, [
'id' => $customer->id,
'gender' => 'Other',
]);
}
/**
* Update customer address.
*
* @param FunctionalTester $I
* @return void
*/
public function updateCustomerAddress(FunctionalTester $I): void
{
$formCssSelector = '#customer-address-form';
$I->loginAsCustomer();
$I->amOnPage('/');
$I->click('Profile');
$I->click('Address');
$I->click('Add Address');
$this->setFields();
foreach ($this->fields as $key => $value) {
/**
* The following fields are rendered via javascript so we ignore them.
*/
if (! in_array($key, [
'country',
'state',
])) {
$selector = 'input[name="' . $key . '"]';
$I->fillField($selector, $value);
}
}
$I->wantTo('Ensure that the company_name field is being displayed');
$I->seeElement('.account-table-content > div:nth-child(2) > input:nth-child(2)');
/**
* We need to use this css selector to hit the correct <form>. There is another one at the
* page header (search).
*/
$I->submitForm($formCssSelector, $this->fields);
$I->seeInSource('The given vat id has a wrong format');
$I->wantTo('enter a valid vat id');
$this->fields['vat_id'] = $this->faker->vat(false);
$I->submitForm($formCssSelector, $this->fields);
$I->seeInSource('Address have been successfully added.');
$this->assertCustomerAddress($I);
$I->wantTo('Update the created customer address again');
$I->click('Edit');
$oldcompany = $this->fields['company_name'];
$this->fields['company_name'] = preg_replace('/[^A-Za-z0-9 ]/', '', $this->faker->company);
$I->submitForm($formCssSelector, $this->fields);
$I->seeInSource('Address updated successfully.');
$I->dontSeeRecord(CustomerAddress::class, [
'company_name' => $oldcompany,
]);
$this->assertCustomerAddress($I);
}
/**
* Assert customer address.
*
* @param FunctionalTester $I
* @return void
*/
private function assertCustomerAddress(FunctionalTester $I): void
{
$I->seeRecord(CustomerAddress::class, [
'company_name' => $this->fields['company_name'],
'first_name' => $this->fields['first_name'],
'last_name' => $this->fields['last_name'],
'vat_id' => $this->fields['vat_id'],
'address1' => $this->fields['address1[]'],
'country' => $this->fields['country'],
'state' => $this->fields['state'],
'city' => $this->fields['city'],
'phone' => $this->fields['phone'],
'postcode' => $this->fields['postcode'],
]);
}
/**
* Set fields.
*
* @return void
*/
private function setFields()
{
$this->fields = [
'company_name' => $this->cleanField($this->faker->company),
'first_name' => $this->cleanField($this->faker->firstName),
'last_name' => $this->cleanField($this->faker->lastName),
'vat_id' => 'INVALIDVAT',
'address1[]' => $this->cleanField($this->faker->streetAddress),
'country' => $this->cleanField($this->faker->countryCode),
'state' => $this->cleanField($this->faker->state),
'city' => $this->cleanField($this->faker->city),
'postcode' => $this->cleanField($this->faker->postcode),
'phone' => $this->faker->phoneNumber,
];
}
/**
* Clean fields.
*
* @param string $field
* @return string
*/
private function cleanField($field)
{
return preg_replace('/[^A-Za-z0-9 ]/', '', $field);
}
}