You are here

protected function ShippingAdminIntegrationTest::setUp in Commerce Currency Resolver 8

Overrides ShipmentAdminTest::setUp

File

modules/shipping/tests/src/FunctionalJavascript/ShippingAdminIntegrationTest.php, line 35

Class

ShippingAdminIntegrationTest
Tests the shipment admin UI.

Namespace

Drupal\Tests\commerce_currency_resolver_shipping\FunctionalJavascript

Code

protected function setUp() {
  parent::setUp();

  // Add additional currency.
  // The parent has already imported USD.
  $currency_importer = $this->container
    ->get('commerce_price.currency_importer');
  $currency_importer
    ->import('VUV');

  // Create new exchange rates.
  $exchange_rates = ExchangeRates::create([
    'id' => 'testing',
    'label' => 'Manual',
    'plugin' => 'manual',
    'status' => TRUE,
    'configuration' => [
      'cron' => FALSE,
      'use_cross_sync' => FALSE,
      'demo_amount' => 100,
      'base_currency' => 'USD',
      'mode' => 'live',
    ],
  ]);
  $exchange_rates
    ->save();
  $this
    ->config($exchange_rates
    ->getExchangerConfigName())
    ->setData([
    'rates' => [
      'VUV' => [
        'USD' => [
          'value' => 0.00878642,
          'sync' => 0,
        ],
      ],
      'USD' => [
        'VUV' => [
          'value' => 113.812,
          'sync' => 0,
        ],
      ],
    ],
  ])
    ->save();

  // Use cookie mapping for this tests, and set default value
  // to HRK for currency.
  // Don't use store, while in core commerce there are some
  // price override trough UI done based on one currency.
  // Changing currency for store most certain will lead to
  // order tried to be saved with multiple different currencies.
  $this
    ->config('commerce_currency_resolver.settings')
    ->set('currency_exchange_rates', 'testing')
    ->set('currency_default', 'VUV')
    ->set('currency_mapping', 'cookie')
    ->save();
  $this->currentCurrency = $this->container
    ->get('commerce_currency_resolver.current_currency');
}