public function ShippingIntegrationTest::testRecalculateShippingPricing in Commerce Currency Resolver 8
Test for recalculating shipping trough cart/checkout steps.
@covers ::shippingCurrency @covers \Drupal\commerce_currency_resolver_shipping\ShippingCurrencyOrderProcessor::process
File
- modules/
shipping/ tests/ src/ FunctionalJavascript/ ShippingIntegrationTest.php, line 212
Class
- ShippingIntegrationTest
- Tests integration with the shipping module.
Namespace
Drupal\Tests\commerce_currency_resolver_shipping\FunctionalJavascriptCode
public function testRecalculateShippingPricing() {
// Create a flat rate.
$this
->createEntity('commerce_shipping_method', [
'name' => 'Flat Rate',
'stores' => [
$this->store
->id(),
],
'plugin' => [
'target_plugin_id' => 'flat_rate',
'target_plugin_configuration' => [
'rate_label' => 'Free Shipping',
'rate_amount' => [
'number' => '0.00',
'currency_code' => 'HRK',
],
'fields' => [
'USD' => [
'number' => '1.00',
'currency_code' => 'USD',
],
'HRK' => [
'number' => '0.00',
'currency_code' => 'HRK',
],
],
],
],
'conditions' => [
[
'target_plugin_id' => 'shipment_weight',
'target_plugin_configuration' => [
'operator' => '>',
'weight' => [
'number' => '120',
'unit' => 'g',
],
],
],
],
]);
// Add product to order and calculate shipping.
$this
->drupalGet($this->firstProduct
->toUrl()
->toString());
// We don't have calculated price formatter active.
$this
->assertSession()
->pageTextContains('HRK10.00');
$this
->assertSession()
->pageTextContains('Conference hat');
$this
->submitForm([], 'Add to cart');
$this
->drupalGet('checkout/1');
$address = [
'given_name' => 'John',
'family_name' => 'Smith',
'address_line1' => '1098 Alta Ave',
'locality' => 'Mountain View',
'administrative_area' => 'CA',
'postal_code' => '94043',
];
$address_prefix = 'shipping_information[shipping_profile][address][0][address]';
$this
->getSession()
->getPage()
->fillField($address_prefix . '[country_code]', 'US');
$this
->assertSession()
->assertWaitOnAjaxRequest();
foreach ($address as $property => $value) {
$this
->getSession()
->getPage()
->fillField($address_prefix . '[' . $property . ']', $value);
}
$this
->getSession()
->getPage()
->findButton('Recalculate shipping')
->click();
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->submitForm([
'payment_information[add_payment_method][payment_details][number]' => '4111111111111111',
'payment_information[add_payment_method][payment_details][expiration][month]' => '02',
'payment_information[add_payment_method][payment_details][expiration][year]' => '2023',
'payment_information[add_payment_method][payment_details][security_code]' => '123',
], 'Continue to review');
$this
->assertSession()
->pageTextContains('Shipping $1.50');
// Test whether the shipping amount gets updated.
$this
->drupalGet('/cart');
$this
->getSession()
->getPage()
->fillField('edit_quantity[0]', 10);
$this
->getSession()
->getPage()
->findButton('Update cart')
->click();
$this
->assertSession()
->pageTextContains('Shipping $1.00');
$this
->drupalGet('checkout/1');
$this
->assertSession()
->pageTextContains('Shipping $1.00');
$this
->getSession()
->getPage()
->findButton('Recalculate shipping')
->click();
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->assertSession()
->pageTextContains('Shipping method');
$this
->assertSession()
->pageTextContains('Shipping $1.00');
// Switch currency default to HRK.
$this->store
->setDefaultCurrencyCode('HRK');
$this->store
->save();
$this
->reloadEntity($this->store);
$this
->getSession()
->getPage()
->findButton('Continue to review')
->click();
$this
->assertSession()
->pageTextContains('Shipping HRK0.00');
$this
->drupalGet('cart');
$this
->assertSession()
->pageTextContains('Shipping HRK0.00');
$this
->getSession()
->getPage()
->fillField('edit_quantity[0]', 3);
$this
->getSession()
->getPage()
->findButton('Update cart')
->click();
$this
->assertSession()
->pageTextContains('Shipping HRK30.00');
$this
->drupalGet('checkout/1');
$this
->assertSession()
->pageTextContains('Shipping HRK30.00');
}