1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Weee\Model\ResourceModel;
use Magento\Catalog\Api\ProductRepositoryInterface;
use Magento\Eav\Model\Entity\Attribute as EavAttribute;
use Magento\Framework\EntityManager\MetadataPool;
/**
* Test class for Magento\Catalog\Model\ResourceModel\Attribute class
* with backend model Magento\Weee\Model\Attribute\Backend\Weee\Tax.
*
* @see Magento\Catalog\Model\ResourceModel\Attribute
*/
class AttributeTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\Catalog\Model\ResourceModel\Attribute
*/
private $model;
/**
* @var \Magento\Catalog\Model\ResourceModel\Product
*/
protected $productResource;
/**
* @var ProductRepositoryInterface
*/
private $productRepository;
/**
* @var MetadataPool
*/
private $metadataPool;
/**
* @var \Magento\Framework\ObjectManagerInterface
*/
protected $objectManager;
/**
* @inheritdoc
*/
protected function setUp()
{
$this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
$this->model = $this->objectManager->get(
\Magento\Catalog\Model\ResourceModel\Attribute::class
);
$this->productResource = $this->objectManager->get(
\Magento\Catalog\Model\ResourceModel\Product::class
);
$this->productRepository = $this->objectManager->create(ProductRepositoryInterface::class);
$this->metadataPool = $this->objectManager->get(MetadataPool::class);
}
/**
* Retrieve eav attribute row.
*
* @param int $entityTypeId
* @param int $attributeSetId
* @param int $attributeId
* @return array|false
*/
private function getEavEntityAttributeRow(int $entityTypeId, int $attributeSetId, int $attributeId)
{
$connection = $this->productResource->getConnection();
$select = $connection->select()
->from($this->productResource->getTable('eav_entity_attribute'))
->where('attribute_set_id=?', $attributeSetId)
->where('attribute_id=?', $attributeId)
->where('entity_type_id=?', $entityTypeId);
return $connection->fetchRow($select);
}
/**
* Test to delete entity attribute with type "Fixed Product Tax".
*
* @magentoDataFixture Magento/Weee/_files/fixed_product_attribute.php
* @return void
*/
public function testDeleteEntityFixedTax() : void
{
/* @var EavAttribute $attribute */
$attribute = $this->objectManager->get(EavAttribute::class);
$attribute->loadByCode(\Magento\Catalog\Model\Product::ENTITY, 'fixed_product_attribute');
$entityEavAttributeRow = $this->getEavEntityAttributeRow(
(int)$attribute->getEntityTypeId(),
4,
(int)$attribute->getId()
);
$this->assertNotEmpty(
$entityEavAttributeRow['entity_attribute_id'],
'The record is absent in table `eav_entity_attribute` for `fixed_product_attribute`'
);
$attribute->setData('entity_attribute_id', $entityEavAttributeRow['entity_attribute_id']);
$this->model->deleteEntity($attribute);
$entityEavAttributeRow = $this->getEavEntityAttributeRow(
(int)$attribute->getEntityTypeId(),
4,
(int)$attribute->getId()
);
$this->assertEmpty(
$entityEavAttributeRow,
'The record was not removed from table `eav_entity_attribute` for `fixed_product_attribute`'
);
}
}