uuids instead of int ids fore xternal product catalogs, test fixes, many to many working now
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s
Details
CI / Coding Standard & Static Analysis (push) Failing after 1s
Details
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s
Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 1s
Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s
Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s
Details
CI / Coding Standard & Static Analysis (push) Failing after 1s
Details
This commit is contained in:
parent
4c65d23e2b
commit
025017537f
|
@ -14,7 +14,11 @@ class CreateExternalProductCatalogs extends AbstractMigration
|
||||||
*/
|
*/
|
||||||
public function change(): void
|
public function change(): void
|
||||||
{
|
{
|
||||||
$table = $this->table('external_product_catalogs');
|
$table = $this->table('external_product_catalogs', ['id' => false, 'primary_key' => ['id']]);
|
||||||
|
$table->addColumn('id', 'uuid', [
|
||||||
|
'default' => null,
|
||||||
|
'null' => false,
|
||||||
|
]);
|
||||||
$table->addColumn('product_catalog_id', 'uuid', [
|
$table->addColumn('product_catalog_id', 'uuid', [
|
||||||
'default' => null,
|
'default' => null,
|
||||||
'null' => false,
|
'null' => false,
|
||||||
|
|
|
@ -15,9 +15,8 @@ class CreateExternalProductCatalogsProductCatalogs extends BaseMigration
|
||||||
public function change(): void
|
public function change(): void
|
||||||
{
|
{
|
||||||
$table = $this->table('external_product_catalogs_product_catalogs');
|
$table = $this->table('external_product_catalogs_product_catalogs');
|
||||||
$table->addColumn('external_product_catalog_id', 'string', [
|
$table->addColumn('external_product_catalog_id', 'uuid', [
|
||||||
'default' => null,
|
'default' => null,
|
||||||
'limit' => 255,
|
|
||||||
'null' => false,
|
'null' => false,
|
||||||
]);
|
]);
|
||||||
$table->addColumn('product_catalog_id', 'uuid', [
|
$table->addColumn('product_catalog_id', 'uuid', [
|
||||||
|
|
|
@ -56,11 +56,13 @@ class ExternalProductCatalogsProductCatalogsTable extends Table
|
||||||
$this->addBehavior('Timestamp');
|
$this->addBehavior('Timestamp');
|
||||||
|
|
||||||
$this->belongsTo('ExternalProductCatalogs', [
|
$this->belongsTo('ExternalProductCatalogs', [
|
||||||
'foreignKey' => 'external_product_catalog_id',
|
'className' => 'CakeProducts.ExternalProductCatalogs',
|
||||||
|
// 'foreignKey' => 'external_product_catalog_id',
|
||||||
'joinType' => 'INNER',
|
'joinType' => 'INNER',
|
||||||
]);
|
]);
|
||||||
$this->belongsTo('ProductCatalogs', [
|
$this->belongsTo('ProductCatalogs', [
|
||||||
'foreignKey' => 'product_catalog_id',
|
'className' => 'CakeProducts.ProductCatalogs',
|
||||||
|
// 'foreignKey' => 'product_catalog_id',
|
||||||
'joinType' => 'INNER',
|
'joinType' => 'INNER',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -74,8 +76,7 @@ class ExternalProductCatalogsProductCatalogsTable extends Table
|
||||||
public function validationDefault(Validator $validator): Validator
|
public function validationDefault(Validator $validator): Validator
|
||||||
{
|
{
|
||||||
$validator
|
$validator
|
||||||
->scalar('external_product_catalog_id')
|
->uuid('external_product_catalog_id')
|
||||||
->maxLength('external_product_catalog_id', 255)
|
|
||||||
->notEmptyString('external_product_catalog_id');
|
->notEmptyString('external_product_catalog_id');
|
||||||
|
|
||||||
$validator
|
$validator
|
||||||
|
@ -99,8 +100,8 @@ class ExternalProductCatalogsProductCatalogsTable extends Table
|
||||||
*/
|
*/
|
||||||
public function buildRules(RulesChecker $rules): RulesChecker
|
public function buildRules(RulesChecker $rules): RulesChecker
|
||||||
{
|
{
|
||||||
$rules->add($rules->existsIn(['external_product_catalog_id'], 'ExternalProductCatalogs'), ['errorField' => 'external_product_catalog_id']);
|
// $rules->add($rules->existsIn(['external_product_catalog_id'], 'ExternalProductCatalogs'), ['errorField' => 'external_product_catalog_id']);
|
||||||
$rules->add($rules->existsIn(['product_catalog_id'], 'ProductCatalogs'), ['errorField' => 'product_catalog_id']);
|
// $rules->add($rules->existsIn(['product_catalog_id'], 'ProductCatalogs'), ['errorField' => 'product_catalog_id']);
|
||||||
|
|
||||||
return $rules;
|
return $rules;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace CakeProducts\Model\Table;
|
namespace CakeProducts\Model\Table;
|
||||||
|
|
||||||
|
use Cake\Core\Configure;
|
||||||
use Cake\Datasource\EntityInterface;
|
use Cake\Datasource\EntityInterface;
|
||||||
use Cake\Datasource\ResultSetInterface;
|
use Cake\Datasource\ResultSetInterface;
|
||||||
use Cake\ORM\Association\BelongsTo;
|
use Cake\ORM\Association\BelongsTo;
|
||||||
|
@ -54,12 +55,17 @@ class ExternalProductCatalogsTable extends Table
|
||||||
|
|
||||||
$this->addBehavior('Timestamp');
|
$this->addBehavior('Timestamp');
|
||||||
|
|
||||||
|
$this->setEntityClass(
|
||||||
|
Configure::read('CakeProducts.ExternalProductCatalogs.entity', 'CakeProducts\Model\Entity\ExternalProductCatalog')
|
||||||
|
);
|
||||||
|
|
||||||
$this->belongsToMany('ProductCatalogs', [
|
$this->belongsToMany('ProductCatalogs', [
|
||||||
'through' => 'CakeProducts.ExternalProductCatalogsProductCatalogs',
|
'through' => 'ExternalProductCatalogsProductCatalogs',
|
||||||
'className' => 'CakeProducts.ProductCatalogs',
|
'className' => 'CakeProducts.ProductCatalogs',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$this->hasMany('ExternalProductCatalogsProductCatalogs', [
|
$this->hasMany('ExternalProductCatalogsProductCatalogs', [
|
||||||
|
'foreignKey' => 'external_product_catalog_id',
|
||||||
'className' => 'CakeProducts.ExternalProductCatalogsProductCatalogs',
|
'className' => 'CakeProducts.ExternalProductCatalogsProductCatalogs',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
@ -72,10 +78,6 @@ class ExternalProductCatalogsTable extends Table
|
||||||
*/
|
*/
|
||||||
public function validationDefault(Validator $validator): Validator
|
public function validationDefault(Validator $validator): Validator
|
||||||
{
|
{
|
||||||
$validator
|
|
||||||
->uuid('product_catalog_id')
|
|
||||||
->notEmptyString('product_catalog_id');
|
|
||||||
|
|
||||||
$validator
|
$validator
|
||||||
->scalar('base_url')
|
->scalar('base_url')
|
||||||
->maxLength('base_url', 255)
|
->maxLength('base_url', 255)
|
||||||
|
@ -106,8 +108,6 @@ class ExternalProductCatalogsTable extends Table
|
||||||
*/
|
*/
|
||||||
public function buildRules(RulesChecker $rules): RulesChecker
|
public function buildRules(RulesChecker $rules): RulesChecker
|
||||||
{
|
{
|
||||||
$rules->add($rules->existsIn(['product_catalog_id'], 'ProductCatalogs'), ['errorField' => 'product_catalog_id']);
|
|
||||||
|
|
||||||
return $rules;
|
return $rules;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,7 +54,7 @@ class ProductCatalogsTable extends Table
|
||||||
'className' => 'CakeProducts.ProductCategories',
|
'className' => 'CakeProducts.ProductCategories',
|
||||||
]);
|
]);
|
||||||
$this->belongsToMany('ExternalProductCatalogs', [
|
$this->belongsToMany('ExternalProductCatalogs', [
|
||||||
'through' => 'CakeProducts.ExternalProductCatalogsProductCatalogs',
|
'through' => 'ExternalProductCatalogsProductCatalogs',
|
||||||
'className' => 'CakeProducts.ExternalProductCatalogs',
|
'className' => 'CakeProducts.ExternalProductCatalogs',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,13 +19,11 @@ class ExternalProductCatalogsFixture extends TestFixture
|
||||||
{
|
{
|
||||||
$this->records = [
|
$this->records = [
|
||||||
[
|
[
|
||||||
'id' => 1,
|
'id' => '115153f3-2f59-4234-8ff8-e1b205769999',
|
||||||
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
|
||||||
'base_url' => 'http://localhost:8766',
|
'base_url' => 'http://localhost:8766',
|
||||||
'api_url' => 'http://localhost:8766/api',
|
'api_url' => 'http://localhost:8766/api',
|
||||||
'created' => '2024-11-22 09:39:37',
|
'created' => '2024-11-22 09:39:37',
|
||||||
'deleted' => '2024-11-22 09:39:37',
|
'deleted' => '2024-11-22 09:39:37',
|
||||||
'enabled' => 1,
|
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
parent::init();
|
parent::init();
|
||||||
|
|
|
@ -18,7 +18,12 @@ class ExternalProductCatalogsProductCatalogsFixture extends TestFixture
|
||||||
public function init(): void
|
public function init(): void
|
||||||
{
|
{
|
||||||
$this->records = [
|
$this->records = [
|
||||||
|
[
|
||||||
|
'external_product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205769999',
|
||||||
|
'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428',
|
||||||
|
'created' => '2024-11-22 09:39:37',
|
||||||
|
'enabled' => false,
|
||||||
|
],
|
||||||
];
|
];
|
||||||
parent::init();
|
parent::init();
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,6 +32,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
||||||
*/
|
*/
|
||||||
protected array $fixtures = [
|
protected array $fixtures = [
|
||||||
'plugin.CakeProducts.ExternalProductCatalogs',
|
'plugin.CakeProducts.ExternalProductCatalogs',
|
||||||
|
'plugin.CakeProducts.ExternalProductCatalogsProductCatalogs',
|
||||||
'plugin.CakeProducts.ProductCatalogs',
|
'plugin.CakeProducts.ProductCatalogs',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -96,7 +97,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
||||||
*/
|
*/
|
||||||
public function testViewGet(): void
|
public function testViewGet(): void
|
||||||
{
|
{
|
||||||
$id = 1;
|
$id = '115153f3-2f59-4234-8ff8-e1b205769999';
|
||||||
$this->loginUserByRole('admin');
|
$this->loginUserByRole('admin');
|
||||||
$url = [
|
$url = [
|
||||||
'plugin' => 'CakeProducts',
|
'plugin' => 'CakeProducts',
|
||||||
|
@ -218,7 +219,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
||||||
'plugin' => 'CakeProducts',
|
'plugin' => 'CakeProducts',
|
||||||
'controller' => 'ExternalProductCatalogs',
|
'controller' => 'ExternalProductCatalogs',
|
||||||
'action' => 'edit',
|
'action' => 'edit',
|
||||||
1,
|
'115153f3-2f59-4234-8ff8-e1b205769999',
|
||||||
];
|
];
|
||||||
$this->get($url);
|
$this->get($url);
|
||||||
$this->assertResponseCode(200);
|
$this->assertResponseCode(200);
|
||||||
|
@ -237,7 +238,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
||||||
public function testEditPutSuccess(): void
|
public function testEditPutSuccess(): void
|
||||||
{
|
{
|
||||||
$this->loginUserByRole('admin');
|
$this->loginUserByRole('admin');
|
||||||
$id = 1;
|
$id = '115153f3-2f59-4234-8ff8-e1b205769999';
|
||||||
$before = $this->ExternalProductCatalogs->get($id);
|
$before = $this->ExternalProductCatalogs->get($id);
|
||||||
$url = [
|
$url = [
|
||||||
'plugin' => 'CakeProducts',
|
'plugin' => 'CakeProducts',
|
||||||
|
@ -273,7 +274,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
||||||
public function testEditPutFailure(): void
|
public function testEditPutFailure(): void
|
||||||
{
|
{
|
||||||
$this->loginUserByRole('admin');
|
$this->loginUserByRole('admin');
|
||||||
$id = 1;
|
$id = '115153f3-2f59-4234-8ff8-e1b205769999';
|
||||||
$before = $this->ExternalProductCatalogs->get($id);
|
$before = $this->ExternalProductCatalogs->get($id);
|
||||||
$url = [
|
$url = [
|
||||||
'plugin' => 'CakeProducts',
|
'plugin' => 'CakeProducts',
|
||||||
|
@ -313,7 +314,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
|
||||||
'plugin' => 'CakeProducts',
|
'plugin' => 'CakeProducts',
|
||||||
'controller' => 'ExternalProductCatalogs',
|
'controller' => 'ExternalProductCatalogs',
|
||||||
'action' => 'delete',
|
'action' => 'delete',
|
||||||
1,
|
'115153f3-2f59-4234-8ff8-e1b205769999',
|
||||||
];
|
];
|
||||||
$this->delete($url);
|
$this->delete($url);
|
||||||
$this->assertResponseCode(302);
|
$this->assertResponseCode(302);
|
||||||
|
|
|
@ -110,7 +110,7 @@ class ExternalProductCatalogsProductCatalogsControllerTest extends BaseControlle
|
||||||
];
|
];
|
||||||
$this->delete($url);
|
$this->delete($url);
|
||||||
$this->assertResponseCode(302);
|
$this->assertResponseCode(302);
|
||||||
$this->assertRedirectContains('externalproductcatalogsproductcatalogs');
|
$this->assertRedirectContains('external-product-catalogs');
|
||||||
|
|
||||||
$cntAfter = $this->ExternalProductCatalogsProductCatalogs->find()->count();
|
$cntAfter = $this->ExternalProductCatalogsProductCatalogs->find()->count();
|
||||||
$this->assertEquals($cntBefore - 1, $cntAfter);
|
$this->assertEquals($cntBefore - 1, $cntAfter);
|
||||||
|
|
|
@ -3,6 +3,7 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace CakeProducts\Test\TestCase\Model\Table;
|
namespace CakeProducts\Test\TestCase\Model\Table;
|
||||||
|
|
||||||
|
use Cake\ORM\Table;
|
||||||
use Cake\TestSuite\TestCase;
|
use Cake\TestSuite\TestCase;
|
||||||
use CakeProducts\Model\Table\ExternalProductCatalogsTable;
|
use CakeProducts\Model\Table\ExternalProductCatalogsTable;
|
||||||
|
|
||||||
|
@ -14,7 +15,7 @@ class ExternalProductCatalogsTableTest extends TestCase
|
||||||
/**
|
/**
|
||||||
* Test subject
|
* Test subject
|
||||||
*
|
*
|
||||||
* @var \CakeProducts\Model\Table\ExternalProductCatalogsTable
|
* @var ExternalProductCatalogsTable
|
||||||
*/
|
*/
|
||||||
protected $ExternalProductCatalogs;
|
protected $ExternalProductCatalogs;
|
||||||
|
|
||||||
|
@ -25,6 +26,7 @@ class ExternalProductCatalogsTableTest extends TestCase
|
||||||
*/
|
*/
|
||||||
protected array $fixtures = [
|
protected array $fixtures = [
|
||||||
'plugin.CakeProducts.ExternalProductCatalogs',
|
'plugin.CakeProducts.ExternalProductCatalogs',
|
||||||
|
'plugin.CakeProducts.ExternalProductCatalogsProductCatalogs',
|
||||||
'plugin.CakeProducts.ProductCatalogs',
|
'plugin.CakeProducts.ProductCatalogs',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -56,13 +58,14 @@ class ExternalProductCatalogsTableTest extends TestCase
|
||||||
* TestInitialize method
|
* TestInitialize method
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
* @uses \CakeProducts\Model\Table\ExternalProductCatalogsTable::initialize()
|
* @uses ExternalProductCatalogsTable::initialize
|
||||||
*/
|
*/
|
||||||
public function testInitialize(): void
|
public function testInitialize(): void
|
||||||
{
|
{
|
||||||
// verify all associations loaded
|
// verify all associations loaded
|
||||||
$expectedAssociations = [
|
$expectedAssociations = [
|
||||||
'ProductCatalogs',
|
'ProductCatalogs',
|
||||||
|
'ExternalProductCatalogsProductCatalogs',
|
||||||
];
|
];
|
||||||
$associations = $this->ExternalProductCatalogs->associations();
|
$associations = $this->ExternalProductCatalogs->associations();
|
||||||
|
|
||||||
|
@ -87,7 +90,7 @@ class ExternalProductCatalogsTableTest extends TestCase
|
||||||
* Test validationDefault method
|
* Test validationDefault method
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
* @uses \CakeProducts\Model\Table\ExternalProductCatalogsTable::validationDefault()
|
* @uses ExternalProductCatalogsTable::validationDefault
|
||||||
*/
|
*/
|
||||||
public function testValidationDefault(): void
|
public function testValidationDefault(): void
|
||||||
{
|
{
|
||||||
|
@ -98,7 +101,7 @@ class ExternalProductCatalogsTableTest extends TestCase
|
||||||
* Test buildRules method
|
* Test buildRules method
|
||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
* @uses \CakeProducts\Model\Table\ExternalProductCatalogsTable::buildRules()
|
* @uses ExternalProductCatalogsTable::buildRules
|
||||||
*/
|
*/
|
||||||
public function testBuildRules(): void
|
public function testBuildRules(): void
|
||||||
{
|
{
|
||||||
|
|
|
@ -26,6 +26,7 @@ class ProductCatalogsTableTest extends TestCase
|
||||||
*/
|
*/
|
||||||
protected array $fixtures = [
|
protected array $fixtures = [
|
||||||
'plugin.CakeProducts.ProductCatalogs',
|
'plugin.CakeProducts.ProductCatalogs',
|
||||||
|
'plugin.CakeProducts.ExternalProductCatalogsProductCatalogs',
|
||||||
'plugin.CakeProducts.ProductCategories',
|
'plugin.CakeProducts.ProductCategories',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue