12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Tax\Model\ResourceModel;
- class CalculationTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * Test that Tax Rate applied only once
- *
- * @magentoAppIsolation enabled
- * @magentoDataFixture Magento/Tax/_files/tax_classes.php
- */
- public function testGetRate()
- {
- /** @var $objectManager \Magento\TestFramework\ObjectManager */
- $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
- $taxRule = $objectManager->get(\Magento\Framework\Registry::class)
- ->registry('_fixture/Magento_Tax_Model_Calculation_Rule');
- $customerTaxClasses = $taxRule->getCustomerTaxClassIds();
- $productTaxClasses = $taxRule->getProductTaxClassIds();
- $taxRate = $objectManager->get(\Magento\Framework\Registry::class)
- ->registry('_fixture/Magento_Tax_Model_Calculation_Rate');
- $data = new \Magento\Framework\DataObject();
- $data->setData(
- [
- 'tax_country_id' => 'US',
- 'taxregion_id' => '12',
- 'tax_postcode' => '5555',
- 'customer_class_id' => $customerTaxClasses[0],
- 'product_class_id' => $productTaxClasses[0],
- ]
- );
- $taxCalculation = $objectManager->get(\Magento\Tax\Model\ResourceModel\Calculation::class);
- $this->assertEquals($taxRate->getRateIds(), $taxCalculation->getRate($data));
- }
- }
|