diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..244d127 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +/composer.lock +/composer.phar +/phpunit.xml +/.phpunit.result.cache +/phpunit.phar +/config/Migrations/schema-dump-default.lock +/vendor/ +/.idea/ diff --git a/README.md b/README.md index 5b9deb6..615248c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,11 @@ -# CakeProducts +# CakeProducts plugin for CakePHP +## Installation + +You can install this plugin into your CakePHP application using [composer](https://getcomposer.org). + +The recommended way to install composer packages is: + +``` +composer require your-name-here/cake-products +``` diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..a3a7c2d --- /dev/null +++ b/composer.json @@ -0,0 +1,24 @@ +{ + "name": "your-name-here/cake-products", + "description": "CakeProducts plugin for CakePHP", + "type": "cakephp-plugin", + "license": "MIT", + "require": { + "php": ">=8.1", + "cakephp/cakephp": "^5.0.1" + }, + "require-dev": { + "phpunit/phpunit": "^10.1" + }, + "autoload": { + "psr-4": { + "CakeProducts\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "CakeProducts\\Test\\": "tests/", + "Cake\\Test\\": "vendor/cakephp/cakephp/tests/" + } + } +} diff --git a/config/Migrations/20241114080900_CreateProductCatalogs.php b/config/Migrations/20241114080900_CreateProductCatalogs.php new file mode 100644 index 0000000..4140232 --- /dev/null +++ b/config/Migrations/20241114080900_CreateProductCatalogs.php @@ -0,0 +1,44 @@ +table('product_catalogs', ['id' => false, 'primary_key' => ['id']]); + $table->addColumn('id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('catalog_description', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => true, + ]); + $table->addColumn('enabled', 'boolean', [ + 'default' => null, + 'null' => false, + ]); + $table->addIndex([ + 'name', + ], [ + 'name' => 'BY_NAME', + 'unique' => true, + ]); + $table->create(); + } +} diff --git a/config/Migrations/20241114081036_CreateProductCategories.php b/config/Migrations/20241114081036_CreateProductCategories.php new file mode 100644 index 0000000..10631b0 --- /dev/null +++ b/config/Migrations/20241114081036_CreateProductCategories.php @@ -0,0 +1,78 @@ +table('product_categories'); + + $table->addColumn('product_catalog_id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('internal_id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('category_description', 'text', [ + 'default' => null, + 'null' => true, + ]); +// $table->addColumn('shopify_v1_id', 'integer', [ +// 'default' => null, +// 'limit' => 11, +// 'null' => true, +// ]); +// $table->addColumn('shopify_v2_id', 'string', [ +// 'default' => null, +// 'limit' => 255, +// 'null' => true, +// ]); + $table->addColumn('parent_id', 'integer', [ + 'default' => null, + 'limit' => 11, + 'null' => true, + ]); + $table->addColumn('lft', 'integer', [ + 'default' => null, + 'limit' => 11, + 'null' => false, + ]); + $table->addColumn('rght', 'integer', [ + 'default' => null, + 'limit' => 11, + 'null' => false, + ]); + $table->addColumn('enabled', 'boolean', [ + 'default' => false, + 'null' => false, + ]); + + $table->addIndex('parent_id'); + $table->addIndex('lft'); + $table->addIndex('product_catalog_id'); + $table->addIndex([ + 'product_catalog_id', + 'name', + ], [ + 'name' => 'BY_NAME_AND_CATALOG_ID', + 'unique' => true, + ]); + $table->create(); + } +} diff --git a/config/Migrations/20241114090547_CreateProducts.php b/config/Migrations/20241114090547_CreateProducts.php new file mode 100644 index 0000000..f7c6833 --- /dev/null +++ b/config/Migrations/20241114090547_CreateProducts.php @@ -0,0 +1,47 @@ +table('products', ['id' => false, 'primary_key' => ['id']]); + $table->addColumn('id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('product_category_id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('product_type_id', 'integer', [ + 'default' => null, + 'limit' => 11, + 'null' => false, + ]); + $table->addIndex('product_category_id'); + $table->addIndex('product_type_id'); + $table->addIndex([ + 'product_category_id', + 'name', + ], [ + 'name' => 'BY_NAME_AND_CATEGORY_ID', + 'unique' => true, + ]); + $table->create(); + } +} diff --git a/config/Migrations/20241115054627_CreateProductCategoryAttributes.php b/config/Migrations/20241115054627_CreateProductCategoryAttributes.php new file mode 100644 index 0000000..b229ec3 --- /dev/null +++ b/config/Migrations/20241115054627_CreateProductCategoryAttributes.php @@ -0,0 +1,55 @@ +table('product_category_attributes', ['id' => false, 'primary_key' => ['id']]); + $table->addColumn('id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('name', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('product_category_id', 'uuid', [ + 'default' => null, + 'null' => true, + ]); + $table->addColumn('attribute_type_id', 'integer', [ + 'default' => null, + 'limit' => 11, + 'null' => false, + ]); + $table->addColumn('enabled', 'boolean', [ + 'default' => null, + 'null' => false, + ]); + $table->addIndex([ + 'product_category_id', + ], [ + 'name' => 'BY_PRODUCT_CATEGORY_ID', + 'unique' => false, + ]); + $table->addIndex([ + 'name', + 'product_category_id', + ], [ + 'name' => 'BY_NAME_AND_PRODUCT_CATEGORY_ID_UNIQUE', + 'unique' => true, + ]); + $table->create(); + } +} diff --git a/config/Migrations/20241115062613_CreateProductCategoryAttributeOptions.php b/config/Migrations/20241115062613_CreateProductCategoryAttributeOptions.php new file mode 100644 index 0000000..868f349 --- /dev/null +++ b/config/Migrations/20241115062613_CreateProductCategoryAttributeOptions.php @@ -0,0 +1,48 @@ +table('product_category_attribute_options', ['id' => false, 'primary_key' => ['id']]); + $table->addColumn('id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('product_category_attribute_id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('attribute_value', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('attribute_label', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('enabled', 'boolean', [ + 'default' => true, + 'null' => false, + ]); + $table->addIndex([ + 'product_category_attribute_id', + ], [ + 'name' => 'BY_PRODUCT_CATEGORY_ATTRIBUTE_ID', + 'unique' => false, + ]); + $table->create(); + } +} diff --git a/config/Migrations/20241122070040_CreateExternalProductCatalogs.php b/config/Migrations/20241122070040_CreateExternalProductCatalogs.php new file mode 100644 index 0000000..1382ee1 --- /dev/null +++ b/config/Migrations/20241122070040_CreateExternalProductCatalogs.php @@ -0,0 +1,52 @@ +table('external_product_catalogs'); + $table->addColumn('product_catalog_id', 'uuid', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('base_url', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('api_url', 'string', [ + 'default' => null, + 'limit' => 255, + 'null' => false, + ]); + $table->addColumn('created', 'datetime', [ + 'default' => null, + 'null' => false, + ]); + $table->addColumn('deleted', 'datetime', [ + 'default' => null, + 'null' => true, + ]); + $table->addColumn('enabled', 'boolean', [ + 'default' => null, + 'null' => false, + ]); + $table->addIndex([ + 'product_catalog_id', + ], [ + 'name' => 'BY_PRODUCT_CATALOG_ID', + 'unique' => false, + ]); + $table->create(); + } +} diff --git a/config/app.example.php b/config/app.example.php new file mode 100644 index 0000000..488d47d --- /dev/null +++ b/config/app.example.php @@ -0,0 +1,28 @@ + [ + /** + * internal CakeProducts settings - used in the source of truth/internal only system. + * Can optionally manage external catalogs + * + * - syncExternally - defaults to false - product catalogs can have 1 or more external catalogs linked to them + * which will receive changes to the catalogs and optionally allow for external API access. + * Will have no effect if true but no external catalogs have been added or none are enabled + */ + 'internal' => [ + 'enabled' => true, + /** + * syncExternally defaults to false - product catalogs can have 1 or more external catalogs linked to them + * which will receive changes to the catalogs and optionally allow for external API access. + * Will have no effect if true but no external catalogs have been added or none are enabled + */ + 'syncExternally' => false, + ], + 'external' => [ // product catalog settings for external use (as an API server to power an ecommerce site for example) + 'enabled' => false, + ], + ], +]; diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000..d9447ae --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,30 @@ + + + + + + + + + + + tests/TestCase/ + + + + + + + + + + + src/ + + + diff --git a/src/CakeProductsPlugin.php b/src/CakeProductsPlugin.php new file mode 100644 index 0000000..614d6fa --- /dev/null +++ b/src/CakeProductsPlugin.php @@ -0,0 +1,95 @@ +plugin( + 'CakeProducts', + ['path' => '/cake-products'], + function (RouteBuilder $builder) { + // Add custom routes here + + $builder->fallbacks(); + } + ); + parent::routes($routes); + } + + /** + * Add middleware for the plugin. + * + * @param \Cake\Http\MiddlewareQueue $middlewareQueue The middleware queue to update. + * @return \Cake\Http\MiddlewareQueue + */ + public function middleware(MiddlewareQueue $middlewareQueue): MiddlewareQueue + { + // Add your middlewares here + + return $middlewareQueue; + } + + /** + * Add commands for the plugin. + * + * @param \Cake\Console\CommandCollection $commands The command collection to update. + * @return \Cake\Console\CommandCollection + */ + public function console(CommandCollection $commands): CommandCollection + { + // Add your commands here + + $commands = parent::console($commands); + + return $commands; + } + + /** + * Register application container services. + * + * @param \Cake\Core\ContainerInterface $container The Container to update. + * @return void + * @link https://book.cakephp.org/4/en/development/dependency-injection.html#dependency-injection + */ + public function services(ContainerInterface $container): void + { + // Add your services here + $container->addServiceProvider(new CatalogManagerServiceProvider()); + } +} diff --git a/src/Controller/AppController.php b/src/Controller/AppController.php new file mode 100644 index 0000000..c63822f --- /dev/null +++ b/src/Controller/AppController.php @@ -0,0 +1,10 @@ +ExternalProductCatalogs->find() + ->contain(['ProductCatalogs']); + $externalProductCatalogs = $this->paginate($query); + + $this->set(compact('externalProductCatalogs')); + } + + /** + * View method + * + * @param string|null $id External Product Catalog id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $externalProductCatalog = $this->ExternalProductCatalogs->get($id, contain: ['ProductCatalogs']); + $this->set(compact('externalProductCatalog')); + } + + /** + * Add method + * + * @return \Cake\Http\Response|null|void Redirects on successful add, renders view otherwise. + */ + public function add() + { + $externalProductCatalog = $this->ExternalProductCatalogs->newEmptyEntity(); + if ($this->request->is('post')) { + $externalProductCatalog = $this->ExternalProductCatalogs->patchEntity($externalProductCatalog, $this->request->getData()); + if ($this->ExternalProductCatalogs->save($externalProductCatalog)) { + $this->Flash->success(__('The external product catalog has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::debug(print_r('$externalProductCatalog->getErrors() next - failed /add', true)); + Log::debug(print_r($externalProductCatalog->getErrors(), true)); + $this->Flash->error(__('The external product catalog could not be saved. Please, try again.')); + } + $productCatalogs = $this->ExternalProductCatalogs->ProductCatalogs->find('list', limit: 200)->all(); + $this->set(compact('externalProductCatalog', 'productCatalogs')); + } + + /** + * Edit method + * + * @param string|null $id External Product Catalog id. + * @return \Cake\Http\Response|null|void Redirects on successful edit, renders view otherwise. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function edit($id = null) + { + $externalProductCatalog = $this->ExternalProductCatalogs->get($id, contain: []); + if ($this->request->is(['patch', 'post', 'put'])) { + $externalProductCatalog = $this->ExternalProductCatalogs->patchEntity($externalProductCatalog, $this->request->getData()); + if ($this->ExternalProductCatalogs->save($externalProductCatalog)) { + $this->Flash->success(__('The external product catalog has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::debug(print_r('$externalProductCatalog->getErrors() next - failed /edit', true)); + Log::debug(print_r($externalProductCatalog->getErrors(), true)); + $this->Flash->error(__('The external product catalog could not be saved. Please, try again.')); + } + $productCatalogs = $this->ExternalProductCatalogs->ProductCatalogs->find('list', limit: 200)->all(); + $this->set(compact('externalProductCatalog', 'productCatalogs')); + } + + /** + * Delete method + * + * @param string|null $id External Product Catalog id. + * @return \Cake\Http\Response|null Redirects to index. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function delete($id = null) + { + $this->request->allowMethod(['post', 'delete']); + $externalProductCatalog = $this->ExternalProductCatalogs->get($id); + if ($this->ExternalProductCatalogs->delete($externalProductCatalog)) { + $this->Flash->success(__('The external product catalog has been deleted.')); + } else { + $this->Flash->error(__('The external product catalog could not be deleted. Please, try again.')); + } + + return $this->redirect(['action' => 'index']); + } +} diff --git a/src/Controller/ProductCatalogsController.php b/src/Controller/ProductCatalogsController.php new file mode 100644 index 0000000..7026513 --- /dev/null +++ b/src/Controller/ProductCatalogsController.php @@ -0,0 +1,111 @@ +ProductCatalogs->find(); + $productCatalogs = $this->paginate($query); + + $this->set(compact('productCatalogs')); + } + + /** + * View method + * + * @param string|null $id Product Catalog id. + * @return Response|null|void Renders view + * @throws RecordNotFoundException When record not found. + */ + public function view(InternalCatalogManagerService $catalogManagerService, $id = null) + { + $productCatalog = $catalogManagerService->getCatalog($id); + $this->set(compact('productCatalog')); + } + + /** + * Add method + * + * @return Response|null|void Redirects on successful add, renders view otherwise. + */ + public function add() + { + $productCatalog = $this->ProductCatalogs->newEmptyEntity(); + if ($this->request->is('post')) { + $productCatalog = $this->ProductCatalogs->patchEntity($productCatalog, $this->request->getData()); + if ($this->ProductCatalogs->save($productCatalog)) { + $this->Flash->success(__('The product catalog has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::debug('failed to save new product catalog errors next'); + Log::debug(print_r('$productCatalog->getErrors()', true)); + Log::debug(print_r($productCatalog->getErrors(), true)); + + $this->Flash->error(__('The product catalog could not be saved. Please, try again.')); + } + $this->set(compact('productCatalog')); + } + + /** + * Edit method + * + * @param string|null $id Product Catalog id. + * @return Response|null|void Redirects on successful edit, renders view otherwise. + * @throws RecordNotFoundException When record not found. + */ + public function edit($id = null) + { + $productCatalog = $this->ProductCatalogs->get($id, contain: []); + if ($this->request->is(['patch', 'post', 'put'])) { + $productCatalog = $this->ProductCatalogs->patchEntity($productCatalog, $this->request->getData()); + if ($this->ProductCatalogs->save($productCatalog)) { + $this->Flash->success(__('The product catalog has been saved.')); + + return $this->redirect(['action' => 'index']); + } + $this->Flash->error(__('The product catalog could not be saved. Please, try again.')); + } + $this->set(compact('productCatalog')); + } + + /** + * Delete method + * + * @param string|null $id Product Catalog id. + * @return Response|null Redirects to index. + * @throws RecordNotFoundException When record not found. + */ + public function delete($id = null) + { + $this->request->allowMethod(['post', 'delete']); + $productCatalog = $this->ProductCatalogs->get($id); + if ($this->ProductCatalogs->delete($productCatalog)) { + $this->Flash->success(__('The product catalog has been deleted.')); + } else { + $this->Flash->error(__('The product catalog could not be deleted. Please, try again.')); + } + + return $this->redirect(['action' => 'index']); + } +} diff --git a/src/Controller/ProductCategoriesController.php b/src/Controller/ProductCategoriesController.php new file mode 100644 index 0000000..22ca85c --- /dev/null +++ b/src/Controller/ProductCategoriesController.php @@ -0,0 +1,115 @@ +ProductCategories->find() + ->contain(['ProductCatalogs', 'ParentProductCategories']); + $productCategories = $this->paginate($query); + + $this->set(compact('productCategories')); + } + + /** + * View method + * + * @param string|null $id Product Category id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view(InternalCatalogManagerService $catalogManagerService, $id = null) + { + $productCategory = $catalogManagerService->getCategory($id); + $this->set(compact('productCategory')); + } + + /** + * Add method + * + * @return \Cake\Http\Response|null|void Redirects on successful add, renders view otherwise. + */ + public function add(InternalCatalogManagerService $catalogManagerService) + { + $productCategory = $this->ProductCategories->newEmptyEntity(); + if ($this->request->is('post')) { + $postData = $this->request->getData(); + if ($this->request->getSession()->read('Auth.User.id')) { + $postData['created_by'] = $this->request->getSession()->read('Auth.User.id'); + } + $result = $catalogManagerService->createNewCategory($productCategory, $postData); + Log::debug(print_r('$result from createNewCategory', true)); + Log::debug(print_r($result, true)); + if ($result['result']) { + $this->Flash->success(__('The product category has been saved.')); + + return $this->redirect(['action' => 'index']); + } + $this->Flash->error(__('The product category could not be saved. Please, try again.')); + } + $productCatalogs = $this->ProductCategories->ProductCatalogs->find('list', limit: 200)->all(); + $parentProductCategories = $this->ProductCategories->ParentProductCategories->find('list', limit: 200)->all(); + $this->set(compact('productCategory', 'productCatalogs', 'parentProductCategories')); + } + + /** + * Edit method + * + * @param string|null $id Product Category id. + * @return \Cake\Http\Response|null|void Redirects on successful edit, renders view otherwise. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function edit(InternalCatalogManagerService $catalogManagerService, $id = null) + { + $productCategory = $this->ProductCategories->get($id, contain: []); + if ($this->request->is(['patch', 'post', 'put'])) { + $productCategory = $this->ProductCategories->patchEntity($productCategory, $this->request->getData()); + if ($this->ProductCategories->save($productCategory)) { + $this->Flash->success(__('The product category has been saved.')); + + return $this->redirect(['action' => 'index']); + } + $this->Flash->error(__('The product category could not be saved. Please, try again.')); + } + $productCatalogs = $this->ProductCategories->ProductCatalogs->find('list', limit: 200)->all(); + $parentProductCategories = $this->ProductCategories->ParentProductCategories->find('list', limit: 200)->all(); + $this->set(compact('productCategory', 'productCatalogs', 'parentProductCategories')); + } + + /** + * Delete method + * + * @param string|null $id Product Category id. + * @return \Cake\Http\Response|null Redirects to index. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function delete($id = null) + { + $this->request->allowMethod(['post', 'delete']); + $productCategory = $this->ProductCategories->get($id); + if ($this->ProductCategories->delete($productCategory)) { + $this->Flash->success(__('The product category has been deleted.')); + } else { + $this->Flash->error(__('The product category could not be deleted. Please, try again.')); + } + + return $this->redirect(['action' => 'index']); + } +} diff --git a/src/Controller/ProductCategoryAttributeOptionsController.php b/src/Controller/ProductCategoryAttributeOptionsController.php new file mode 100644 index 0000000..b166725 --- /dev/null +++ b/src/Controller/ProductCategoryAttributeOptionsController.php @@ -0,0 +1,48 @@ +ProductCategoryAttributeOptions->newEmptyEntity(); + $this->set(compact('productCategoryAttributeOption')); + } + + /** + * Delete method + * + * @param string|null $id Product Category Attribute Option id. + * @return \Cake\Http\Response|null Redirects to index. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function delete($id = null) + { + $this->request->allowMethod(['post', 'delete']); + $productCategoryAttributeOption = $this->ProductCategoryAttributeOptions->get($id); + if ($this->ProductCategoryAttributeOptions->delete($productCategoryAttributeOption)) { + $this->Flash->success(__('The product category attribute option has been deleted.')); + } else { + $this->Flash->error(__('The product category attribute option could not be deleted. Please, try again.')); + } + + return $this->redirect(['controller' => 'ProductCategoryAttributes', 'action' => 'view', $productCategoryAttributeOption->product_category_attribute_id]); + } +} diff --git a/src/Controller/ProductCategoryAttributesController.php b/src/Controller/ProductCategoryAttributesController.php new file mode 100644 index 0000000..4e83d89 --- /dev/null +++ b/src/Controller/ProductCategoryAttributesController.php @@ -0,0 +1,144 @@ +ProductCategoryAttributes->find() + ->contain(['ProductCategories']); + $productCategoryAttributes = $this->paginate($query); + + $this->set(compact('productCategoryAttributes')); + } + + /** + * View method + * + * @param string|null $id Product Category Attribute id. + * @return Response|null|void Renders view + * @throws RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $productCategoryAttribute = $this->ProductCategoryAttributes->get($id, contain: [ + 'ProductCategories', + 'ProductCategoryAttributeOptions', + ]); + $this->set(compact('productCategoryAttribute')); + } + + /** + * Add method + * + * @return Response|null|void Redirects on successful add, renders view otherwise. + */ + public function add() + { + $productCategoryAttribute = $this->ProductCategoryAttributes->newEmptyEntity(); + if ($this->request->is('post')) { + $postData = $this->request->getData(); + $saveOptions = [ + 'associated' => ['ProductCategoryAttributeOptions'], + ]; + Log::debug(print_r('$postData', true)); + Log::debug(print_r($postData, true)); +// if ($this->request->getData('attribute_type_id') != ProductCategoryAttributeTypeId::Constrained) { +// $saveOptions['associated'] = []; +// $postData['product_category_attribute_options'] = []; +// } + Log::debug(print_r('$postData', true)); + Log::debug(print_r($postData, true)); + $productCategoryAttribute = $this->ProductCategoryAttributes->patchEntity($productCategoryAttribute, $postData, $saveOptions); + if ($this->ProductCategoryAttributes->save($productCategoryAttribute, $saveOptions)) { + $this->Flash->success(__('The product category attribute has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::debug('failed to save new product category attribute errors next'); + Log::debug(print_r('$productCategoryAttribute->getErrors()', true)); + Log::debug(print_r($productCategoryAttribute->getErrors(), true)); + $this->Flash->error(__('The product category attribute could not be saved. Please, try again.')); + } + $productCategories = $this->ProductCategoryAttributes->ProductCategories->find('list', limit: 200)->all(); + $this->set(compact('productCategoryAttribute', 'productCategories')); + } + + /** + * Edit method + * + * @param string|null $id Product Category Attribute id. + * @return Response|null|void Redirects on successful edit, renders view otherwise. + * @throws RecordNotFoundException When record not found. + */ + public function edit($id = null) + { + $productCategoryAttribute = $this->ProductCategoryAttributes->get($id, contain: ['ProductCategoryAttributeOptions']); + if ($this->request->is(['patch', 'post', 'put'])) { + $postData = $this->request->getData(); + $saveOptions = [ + 'associated' => ['ProductCategoryAttributeOptions'], + ]; + Log::debug(print_r('$postData', true)); + Log::debug(print_r($postData, true)); +// if ($this->request->getData('attribute_type_id') != ProductCategoryAttributeTypeId::Constrained) { +// $saveOptions['associated'] = []; +// $postData['product_category_attribute_options'] = []; +// } + Log::debug(print_r('$postData', true)); + Log::debug(print_r($postData, true)); + $productCategoryAttribute = $this->ProductCategoryAttributes->patchEntity($productCategoryAttribute, $postData, $saveOptions); + + if ($this->ProductCategoryAttributes->save($productCategoryAttribute, $saveOptions)) { + $this->Flash->success(__('The product category attribute has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::debug('failed to save product category attribute on edit errors next'); + Log::debug(print_r('$productCategoryAttribute->getErrors()', true)); + Log::debug(print_r($productCategoryAttribute->getErrors(), true)); + $this->Flash->error(__('The product category attribute could not be saved. Please, try again.')); + } + $productCategories = $this->ProductCategoryAttributes->ProductCategories->find('list', limit: 200)->all(); + $this->set(compact('productCategoryAttribute', 'productCategories')); + } + + /** + * Delete method + * + * @param string|null $id Product Category Attribute id. + * @return Response|null Redirects to index. + * @throws RecordNotFoundException When record not found. + */ + public function delete($id = null) + { + $this->request->allowMethod(['post', 'delete']); + $productCategoryAttribute = $this->ProductCategoryAttributes->get($id); + if ($this->ProductCategoryAttributes->delete($productCategoryAttribute)) { + $this->Flash->success(__('The product category attribute has been deleted.')); + } else { + $this->Flash->error(__('The product category attribute could not be deleted. Please, try again.')); + } + + return $this->redirect(['action' => 'index']); + } +} diff --git a/src/Controller/ProductsController.php b/src/Controller/ProductsController.php new file mode 100644 index 0000000..d3648a2 --- /dev/null +++ b/src/Controller/ProductsController.php @@ -0,0 +1,110 @@ +Products->find() + ->contain(['ProductCategories']); + $products = $this->paginate($query); + + $this->set(compact('products')); + } + + /** + * View method + * + * @param string|null $id Product id. + * @return \Cake\Http\Response|null|void Renders view + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function view($id = null) + { + $product = $this->Products->get($id, contain: ['ProductCategories']); + $this->set(compact('product')); + } + + /** + * Add method + * + * @return \Cake\Http\Response|null|void Redirects on successful add, renders view otherwise. + */ + public function add() + { + $product = $this->Products->newEmptyEntity(); + if ($this->request->is('post')) { + $product = $this->Products->patchEntity($product, $this->request->getData()); + if ($this->Products->save($product)) { + $this->Flash->success(__('The product has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::debug(print_r('$product->getErrors() next - failed in products/add', true)); + Log::debug(print_r($product->getErrors(), true)); + $this->Flash->error(__('The product could not be saved. Please, try again.')); + } + $productCategories = $this->Products->ProductCategories->find('list', limit: 200)->all(); + $this->set(compact('product', 'productCategories')); + } + + /** + * Edit method + * + * @param string|null $id Product id. + * @return \Cake\Http\Response|null|void Redirects on successful edit, renders view otherwise. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function edit($id = null) + { + $product = $this->Products->get($id, contain: []); + if ($this->request->is(['patch', 'post', 'put'])) { + $product = $this->Products->patchEntity($product, $this->request->getData()); + if ($this->Products->save($product)) { + $this->Flash->success(__('The product has been saved.')); + + return $this->redirect(['action' => 'index']); + } + Log::debug(print_r('$product->getErrors() next - failed in products/edit', true)); + Log::debug(print_r($product->getErrors(), true)); + $this->Flash->error(__('The product could not be saved. Please, try again.')); + } + $productCategories = $this->Products->ProductCategories->find('list', limit: 200)->all(); + $this->set(compact('product', 'productCategories')); + } + + /** + * Delete method + * + * @param string|null $id Product id. + * @return \Cake\Http\Response|null Redirects to index. + * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found. + */ + public function delete($id = null) + { + $this->request->allowMethod(['post', 'delete']); + $product = $this->Products->get($id); + if ($this->Products->delete($product)) { + $this->Flash->success(__('The product has been deleted.')); + } else { + $this->Flash->error(__('The product could not be deleted. Please, try again.')); + } + + return $this->redirect(['action' => 'index']); + } +} diff --git a/src/Model/Entity/ExternalProductCatalog.php b/src/Model/Entity/ExternalProductCatalog.php new file mode 100644 index 0000000..9b03a7c --- /dev/null +++ b/src/Model/Entity/ExternalProductCatalog.php @@ -0,0 +1,41 @@ + + */ + protected array $_accessible = [ + 'product_catalog_id' => true, + 'base_url' => true, + 'api_url' => true, + 'created' => true, + 'deleted' => true, + 'enabled' => true, + 'product_catalog' => true, + ]; +} diff --git a/src/Model/Entity/Product.php b/src/Model/Entity/Product.php new file mode 100644 index 0000000..6cac6aa --- /dev/null +++ b/src/Model/Entity/Product.php @@ -0,0 +1,35 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'product_category_id' => true, + 'product_type_id' => true, + 'product_category' => true, + ]; +} diff --git a/src/Model/Entity/ProductCatalog.php b/src/Model/Entity/ProductCatalog.php new file mode 100644 index 0000000..f037960 --- /dev/null +++ b/src/Model/Entity/ProductCatalog.php @@ -0,0 +1,37 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'catalog_description' => true, + 'enabled' => true, + 'product_categories' => true, + 'external_product_catalogs' => true, + ]; +} diff --git a/src/Model/Entity/ProductCategory.php b/src/Model/Entity/ProductCategory.php new file mode 100644 index 0000000..c7e89ee --- /dev/null +++ b/src/Model/Entity/ProductCategory.php @@ -0,0 +1,49 @@ + + */ + protected array $_accessible = [ + 'product_catalog_id' => true, + 'internal_id' => true, + 'name' => true, + 'category_description' => true, + 'parent_id' => true, + 'lft' => true, + 'rght' => true, + 'enabled' => true, + 'product_catalog' => true, + 'parent_product_category' => true, + 'child_product_categories' => true, + ]; +} diff --git a/src/Model/Entity/ProductCategoryAttribute.php b/src/Model/Entity/ProductCategoryAttribute.php new file mode 100644 index 0000000..e056a73 --- /dev/null +++ b/src/Model/Entity/ProductCategoryAttribute.php @@ -0,0 +1,39 @@ + + */ + protected array $_accessible = [ + 'name' => true, + 'product_category_id' => true, + 'attribute_type_id' => true, + 'enabled' => true, + 'product_category' => true, + 'product_category_attribute_options' => true, + ]; +} diff --git a/src/Model/Entity/ProductCategoryAttributeOption.php b/src/Model/Entity/ProductCategoryAttributeOption.php new file mode 100644 index 0000000..1e23953 --- /dev/null +++ b/src/Model/Entity/ProductCategoryAttributeOption.php @@ -0,0 +1,37 @@ + + */ + protected array $_accessible = [ + 'product_category_attribute_id' => true, + 'attribute_value' => true, + 'attribute_label' => true, + 'enabled' => true, + 'product_category_attribute' => true, + ]; +} diff --git a/src/Model/Enum/ProductCategoryAttributeTypeId.php b/src/Model/Enum/ProductCategoryAttributeTypeId.php new file mode 100644 index 0000000..2b024c9 --- /dev/null +++ b/src/Model/Enum/ProductCategoryAttributeTypeId.php @@ -0,0 +1,23 @@ + 'Constrained', + self::Text => 'Text', + self::Integer => 'Integer' + }; + } +} diff --git a/src/Model/Enum/ProductProductTypeId.php b/src/Model/Enum/ProductProductTypeId.php new file mode 100644 index 0000000..4e220fb --- /dev/null +++ b/src/Model/Enum/ProductProductTypeId.php @@ -0,0 +1,23 @@ + 'Service', + self::Product => 'Product', + self::Consumable => 'Consumable' + }; + } +} diff --git a/src/Model/Table/ExternalProductCatalogsTable.php b/src/Model/Table/ExternalProductCatalogsTable.php new file mode 100644 index 0000000..503d351 --- /dev/null +++ b/src/Model/Table/ExternalProductCatalogsTable.php @@ -0,0 +1,115 @@ + newEntities(array $data, array $options = []) + * @method ExternalProductCatalog get(mixed $primaryKey, array|string $finder = 'all', CacheInterface|string|null $cache = null, Closure|string|null $cacheKey = null, mixed ...$args) + * @method ExternalProductCatalog findOrCreate($search, ?callable $callback = null, array $options = []) + * @method ExternalProductCatalog patchEntity(EntityInterface $entity, array $data, array $options = []) + * @method array patchEntities(iterable $entities, array $data, array $options = []) + * @method ExternalProductCatalog|false save(EntityInterface $entity, array $options = []) + * @method ExternalProductCatalog saveOrFail(EntityInterface $entity, array $options = []) + * @method iterable|ResultSetInterface|false saveMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface saveManyOrFail(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface|false deleteMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface deleteManyOrFail(iterable $entities, array $options = []) + * + * @mixin TimestampBehavior + */ +class ExternalProductCatalogsTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('external_product_catalogs'); + $this->setDisplayField('base_url'); + $this->setPrimaryKey('id'); + + $this->addBehavior('Timestamp'); + + $this->belongsTo('ProductCatalogs', [ + 'foreignKey' => 'product_catalog_id', + 'joinType' => 'INNER', + 'className' => 'CakeProducts.ProductCatalogs', + ]); + } + + /** + * Default validation rules. + * + * @param Validator $validator Validator instance. + * @return Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->uuid('product_catalog_id') + ->notEmptyString('product_catalog_id'); + + $validator + ->scalar('base_url') + ->maxLength('base_url', 255) + ->requirePresence('base_url', 'create') + ->notEmptyString('base_url'); +// ->url('base_url'); + + $validator + ->scalar('api_url') + ->maxLength('api_url', 255) + ->requirePresence('api_url', 'create') + ->notEmptyString('api_url'); +// ->url('api_url'); + + $validator + ->dateTime('deleted') + ->allowEmptyDateTime('deleted'); + + $validator + ->boolean('enabled') + ->requirePresence('enabled', 'create') + ->notEmptyString('enabled'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param RulesChecker $rules The rules object to be modified. + * @return RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->existsIn(['product_catalog_id'], 'ProductCatalogs'), ['errorField' => 'product_catalog_id']); + + return $rules; + } +} diff --git a/src/Model/Table/ProductCatalogsTable.php b/src/Model/Table/ProductCatalogsTable.php new file mode 100644 index 0000000..f7c4919 --- /dev/null +++ b/src/Model/Table/ProductCatalogsTable.php @@ -0,0 +1,99 @@ + newEntities(array $data, array $options = []) + * @method ProductCatalog get(mixed $primaryKey, array|string $finder = 'all', CacheInterface|string|null $cache = null, Closure|string|null $cacheKey = null, mixed ...$args) + * @method ProductCatalog findOrCreate($search, ?callable $callback = null, array $options = []) + * @method ProductCatalog patchEntity(EntityInterface $entity, array $data, array $options = []) + * @method array patchEntities(iterable $entities, array $data, array $options = []) + * @method ProductCatalog|false save(EntityInterface $entity, array $options = []) + * @method ProductCatalog saveOrFail(EntityInterface $entity, array $options = []) + * @method iterable|ResultSetInterface|false saveMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface saveManyOrFail(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface|false deleteMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface deleteManyOrFail(iterable $entities, array $options = []) + */ +class ProductCatalogsTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('product_catalogs'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->hasMany('ProductCategories', [ + 'className' => 'CakeProducts.ProductCategories', + ]); + $this->hasMany('ExternalProductCatalogs', [ + 'className' => 'CakeProducts.ExternalProductCatalogs', + ]); + } + + /** + * Default validation rules. + * + * @param Validator $validator Validator instance. + * @return Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 255) + ->requirePresence('name', 'create') + ->notEmptyString('name') + ->add('name', 'unique', ['rule' => 'validateUnique', 'provider' => 'table']); + + $validator + ->scalar('catalog_description') + ->maxLength('catalog_description', 255) + ->allowEmptyString('catalog_description'); + + $validator + ->boolean('enabled') + ->requirePresence('enabled', 'create') + ->notEmptyString('enabled'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param RulesChecker $rules The rules object to be modified. + * @return RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->isUnique(['name']), ['errorField' => 'name']); + + return $rules; + } +} diff --git a/src/Model/Table/ProductCategoriesTable.php b/src/Model/Table/ProductCategoriesTable.php new file mode 100644 index 0000000..f2af56f --- /dev/null +++ b/src/Model/Table/ProductCategoriesTable.php @@ -0,0 +1,164 @@ + newEntities(array $data, array $options = []) + * @method ProductCategory get(mixed $primaryKey, array|string $finder = 'all', CacheInterface|string|null $cache = null, Closure|string|null $cacheKey = null, mixed ...$args) + * @method ProductCategory findOrCreate($search, ?callable $callback = null, array $options = []) + * @method ProductCategory patchEntity(EntityInterface $entity, array $data, array $options = []) + * @method array patchEntities(iterable $entities, array $data, array $options = []) + * @method ProductCategory saveOrFail(EntityInterface $entity, array $options = []) + * @method iterable|ResultSetInterface|false saveMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface saveManyOrFail(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface|false deleteMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface deleteManyOrFail(iterable $entities, array $options = []) + * + * @mixin TreeBehavior + */ +class ProductCategoriesTable extends Table +{ + /** + * Current scope for Tree behavior - per catalog + * + * @var string + */ + protected $treeCatalogId; + + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + $this->treeCatalogId = 1; + + $this->setTable('product_categories'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->addBehavior('Tree'); + + $this->belongsTo('ProductCatalogs', [ + 'foreignKey' => 'product_catalog_id', + 'joinType' => 'INNER', + 'className' => 'CakeProducts.ProductCatalogs', + ]); + $this->belongsTo('ParentProductCategories', [ + 'className' => 'CakeProducts.ProductCategories', + 'foreignKey' => 'parent_id', + ]); + $this->hasMany('ChildProductCategories', [ + 'className' => 'CakeProducts.ProductCategories', + 'foreignKey' => 'parent_id', + ]); + $this->hasMany('ProductCategoryAttributes', [ + 'foreignKey' => 'product_category_id', + 'bindingKey' => 'internal_id', + 'className' => 'CakeProducts.ProductCategoryAttributes', + ]); + $this->behaviors()->Tree->setConfig('scope', ['product_catalog_id' => $this->treeCatalogId]); + } + + /** + * Default validation rules. + * + * @param Validator $validator Validator instance. + * @return Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->uuid('product_catalog_id') + ->notEmptyString('product_catalog_id'); + + $validator + ->scalar('name') + ->maxLength('name', 255) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->scalar('category_description') + ->allowEmptyString('category_description'); + + $validator + ->integer('parent_id') + ->allowEmptyString('parent_id'); + + $validator + ->boolean('enabled') + ->notEmptyString('enabled'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param RulesChecker $rules The rules object to be modified. + * @return RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->isUnique(['product_catalog_id', 'name']), ['errorField' => 'product_catalog_id']); + $rules->add($rules->existsIn(['product_catalog_id'], 'ProductCatalogs'), ['errorField' => 'product_catalog_id']); + $rules->add($rules->existsIn(['parent_id'], 'ParentProductCategories'), ['errorField' => 'parent_id']); + + return $rules; + } + + /** + * @param int $catalogId + * + * @return void + */ + public function setConfigureCatalogId(string $catalogId) + { + $this->treeCatalogId = $catalogId; + $this->behaviors()->Tree->setConfig('scope', ['product_catalog_id' => $this->treeCatalogId]); + } + + /** + * @param EntityInterface $entity + * @param array $options + * + * @return EntityInterface|false + */ + public function save(EntityInterface $entity, array $options = []): EntityInterface|false + { + $this->behaviors()->get('Tree')->setConfig([ + 'scope' => [ + 'product_catalog_id' => $entity->product_catalog_id, + ], + ]); + + return parent::save($entity, $options); + } +} diff --git a/src/Model/Table/ProductCategoryAttributeOptionsTable.php b/src/Model/Table/ProductCategoryAttributeOptionsTable.php new file mode 100644 index 0000000..6e4b0e9 --- /dev/null +++ b/src/Model/Table/ProductCategoryAttributeOptionsTable.php @@ -0,0 +1,103 @@ + newEntities(array $data, array $options = []) + * @method ProductCategoryAttributeOption get(mixed $primaryKey, array|string $finder = 'all', CacheInterface|string|null $cache = null, Closure|string|null $cacheKey = null, mixed ...$args) + * @method ProductCategoryAttributeOption findOrCreate($search, ?callable $callback = null, array $options = []) + * @method ProductCategoryAttributeOption patchEntity(EntityInterface $entity, array $data, array $options = []) + * @method array patchEntities(iterable $entities, array $data, array $options = []) + * @method ProductCategoryAttributeOption|false save(EntityInterface $entity, array $options = []) + * @method ProductCategoryAttributeOption saveOrFail(EntityInterface $entity, array $options = []) + * @method iterable|ResultSetInterface|false saveMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface saveManyOrFail(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface|false deleteMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface deleteManyOrFail(iterable $entities, array $options = []) + */ +class ProductCategoryAttributeOptionsTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('product_category_attribute_options'); + $this->setDisplayField('attribute_value'); + $this->setPrimaryKey('id'); + + $this->belongsTo('ProductCategoryAttributes', [ + 'foreignKey' => 'product_category_attribute_id', + 'joinType' => 'INNER', + 'className' => 'CakeProducts.ProductCategoryAttributes', + ]); + } + + /** + * Default validation rules. + * + * @param Validator $validator Validator instance. + * @return Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->integer('product_category_attribute_id') + ->notEmptyString('product_category_attribute_id'); + + $validator + ->scalar('attribute_value') + ->maxLength('attribute_value', 255) + ->requirePresence('attribute_value', 'create') + ->notEmptyString('attribute_value'); + + $validator + ->scalar('attribute_label') + ->maxLength('attribute_label', 255) + ->requirePresence('attribute_label', 'create') + ->notEmptyString('attribute_label'); + + $validator + ->boolean('enabled') + ->notEmptyString('enabled'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param RulesChecker $rules The rules object to be modified. + * @return RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->existsIn(['product_category_attribute_id'], 'ProductCategoryAttributes'), ['errorField' => '0']); + + return $rules; + } +} diff --git a/src/Model/Table/ProductCategoryAttributesTable.php b/src/Model/Table/ProductCategoryAttributesTable.php new file mode 100644 index 0000000..a2f3cf8 --- /dev/null +++ b/src/Model/Table/ProductCategoryAttributesTable.php @@ -0,0 +1,113 @@ + newEntities(array $data, array $options = []) + * @method ProductCategoryAttribute get(mixed $primaryKey, array|string $finder = 'all', CacheInterface|string|null $cache = null, Closure|string|null $cacheKey = null, mixed ...$args) + * @method ProductCategoryAttribute findOrCreate($search, ?callable $callback = null, array $options = []) + * @method ProductCategoryAttribute patchEntity(EntityInterface $entity, array $data, array $options = []) + * @method array patchEntities(iterable $entities, array $data, array $options = []) + * @method ProductCategoryAttribute|false save(EntityInterface $entity, array $options = []) + * @method ProductCategoryAttribute saveOrFail(EntityInterface $entity, array $options = []) + * @method iterable|ResultSetInterface|false saveMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface saveManyOrFail(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface|false deleteMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface deleteManyOrFail(iterable $entities, array $options = []) + */ +class ProductCategoryAttributesTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('product_category_attributes'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->belongsTo('ProductCategories', [ + 'foreignKey' => 'product_category_id', + 'bindingKey' => 'internal_id', + 'className' => 'CakeProducts.ProductCategories', + ]); + + $this->hasMany('ProductCategoryAttributeOptions', [ + 'foreignKey' => 'product_category_attribute_id', + 'className' => 'CakeProducts.ProductCategoryAttributeOptions', + 'saveStrategy' => 'replace', + ]); + $this->getSchema()->setColumnType('attribute_type_id', EnumType::from(ProductCategoryAttributeTypeId::class)); + } + + /** + * Default validation rules. + * + * @param Validator $validator Validator instance. + * @return Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 255) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->uuid('product_category_id') + ->allowEmptyString('product_category_id'); + + $validator + ->integer('attribute_type_id') + ->requirePresence('attribute_type_id', 'create') + ->notEmptyString('attribute_type_id'); + + $validator + ->boolean('enabled') + ->requirePresence('enabled', 'create') + ->notEmptyString('enabled'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param RulesChecker $rules The rules object to be modified. + * @return RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->isUnique(['name', 'product_category_id'], ['allowMultipleNulls' => true]), ['errorField' => 'name']); + $rules->add($rules->existsIn(['product_category_id'], 'ProductCategories'), ['errorField' => 'product_category_id']); + + return $rules; + } +} diff --git a/src/Model/Table/ProductsTable.php b/src/Model/Table/ProductsTable.php new file mode 100644 index 0000000..e280630 --- /dev/null +++ b/src/Model/Table/ProductsTable.php @@ -0,0 +1,105 @@ + newEntities(array $data, array $options = []) + * @method Product get(mixed $primaryKey, array|string $finder = 'all', CacheInterface|string|null $cache = null, Closure|string|null $cacheKey = null, mixed ...$args) + * @method Product findOrCreate($search, ?callable $callback = null, array $options = []) + * @method Product patchEntity(EntityInterface $entity, array $data, array $options = []) + * @method array patchEntities(iterable $entities, array $data, array $options = []) + * @method Product|false save(EntityInterface $entity, array $options = []) + * @method Product saveOrFail(EntityInterface $entity, array $options = []) + * @method iterable|ResultSetInterface|false saveMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface saveManyOrFail(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface|false deleteMany(iterable $entities, array $options = []) + * @method iterable|ResultSetInterface deleteManyOrFail(iterable $entities, array $options = []) + */ +class ProductsTable extends Table +{ + /** + * Initialize method + * + * @param array $config The configuration for the Table. + * @return void + */ + public function initialize(array $config): void + { + parent::initialize($config); + + $this->setTable('products'); + $this->setDisplayField('name'); + $this->setPrimaryKey('id'); + + $this->belongsTo('ProductCategories', [ + 'foreignKey' => 'product_category_id', + 'bindingKey' => 'internal_id', + 'joinType' => 'INNER', + 'className' => 'CakeProducts.ProductCategories', + ]); + + $this->getSchema()->setColumnType('product_type_id', EnumType::from(ProductProductTypeId::class)); + + } + + /** + * Default validation rules. + * + * @param Validator $validator Validator instance. + * @return Validator + */ + public function validationDefault(Validator $validator): Validator + { + $validator + ->scalar('name') + ->maxLength('name', 255) + ->requirePresence('name', 'create') + ->notEmptyString('name'); + + $validator + ->uuid('product_category_id') + ->notEmptyString('product_category_id'); + + $validator + ->integer('product_type_id') + ->requirePresence('product_type_id', 'create') + ->notEmptyString('product_type_id'); + + return $validator; + } + + /** + * Returns a rules checker object that will be used for validating + * application integrity. + * + * @param RulesChecker $rules The rules object to be modified. + * @return RulesChecker + */ + public function buildRules(RulesChecker $rules): RulesChecker + { + $rules->add($rules->isUnique(['product_category_id', 'name']), ['errorField' => '0']); + $rules->add($rules->existsIn(['product_category_id'], 'ProductCategories'), ['errorField' => '1']); + + return $rules; + } +} diff --git a/src/Service/CatalogManagerServiceProvider.php b/src/Service/CatalogManagerServiceProvider.php new file mode 100644 index 0000000..c0ef7e3 --- /dev/null +++ b/src/Service/CatalogManagerServiceProvider.php @@ -0,0 +1,29 @@ +add(InternalCatalogManagerService::class) + ->addArgument(new ExternalCatalogManagerService()); + } +} diff --git a/src/Service/ExternalCatalogManagerService.php b/src/Service/ExternalCatalogManagerService.php new file mode 100644 index 0000000..336bf86 --- /dev/null +++ b/src/Service/ExternalCatalogManagerService.php @@ -0,0 +1,184 @@ +ProductCatalogs = $this->fetchTable('CakeProducts.ProductCatalogs'); + $this->serviceConfig = new ServiceConfig(); + $this->httpClient = new Client([ +// 'host' => $config['base_url'], +// 'scheme' => 'https', +// 'scheme' => 'http', + ]); + + } + + public function newCategoryCreated(ProductCategory $productCategory) + { + $results = []; + + $externalProductCatalogs = $this->_getExternalProductCatalogsForCatalogId($productCategory->product_catalog_id); + foreach ($externalProductCatalogs as $externalProductCatalog) { + $results[] = $this->_createNewCategoryForExternalProductCatalog($externalProductCatalog, $productCategory); + } + + return $results; + } + + protected function _createNewCategoryForExternalProductCatalog(ExternalProductCatalog $externalProductCatalog, ProductCategory $productCategory) + { + $url = $externalProductCatalog->api_url . '/product-categories'; + $response = $this->postToUrl($url, $productCategory->toArray()); + + Log::debug(print_r('$response->getJson()', true)); + Log::debug(print_r($response->getJson(), true)); + Log::debug(print_r('$response->getStatusCode()', true)); + Log::debug(print_r($response->getStatusCode(), true)); + + return $response->getStatusCode(); + } + + /** + * @return mixed|null + */ + public function getJwtToken() + { + Log::debug('inside getJwtToken'); + if (Cache::read('product_catalog_api_token')) { + Log::debug('token was cached'); +// return Cache::read('product_catalog_api_token'); + } else { + Log::debug('token was **NOT** cached'); + } + + $response = $this->httpClient->post('http://localhost:8766/api/v1/users/token', json_encode([ + 'username' => 'test', + 'password' => 'test', + ]), ['headers' => ['Accept' => 'application/json', 'Content-Type' => 'application/json']]); +// $this->httpClient->getConfig(); + if ($response->isOk()) { + $json = $response->getJson(); + $token = array_key_exists('token', $json) ? $json['token'] : null; + Cache::write('product_catalog_api_token', $token); + Log::debug('$token'); + Log::debug($token); + + return $token; + } + Log::debug('$response->getStringBody()'); + Log::debug($response->getStringBody()); + Log::debug(print_r('$response->getStatusCode()', true)); + Log::debug(print_r($response->getStatusCode(), true)); + + return null; + } + + public function postToUrl(string $url, array $data, int $tries = 0) + { +// if (true || !Cache::read('product_catalog_api_token')) { + $token = $this->getJwtToken(); +// } + Log::debug('$token inside postToUrl' . $token); + + Log::debug('Cache::read(product_catalog_api_token)'); + Log::debug(Cache::read('product_catalog_api_token') ? Cache::read('product_catalog_api_token') : 'NULL'); + Log::debug('ATTEMPT # ' . $tries); + + $response = $this->httpClient->post($url, json_encode($data), [ + 'headers' => [ + 'Accept' => 'application/json', + 'Content-Type' => 'application/json', +// 'Authorization' => 'Bearer ' . base64_encode(Cache::read('product_catalog_api_token')) + 'Authorization' => 'Bearer ' . $token, + ] + ]); + + if (!$response->isOk()) { + $tries++; + } + if ($tries > 3) { + return $response; + } + if ($response->getStatusCode() == 401) { + $this->postToUrl($url, $data, $tries); + } + Log::debug('$response->getJson'); + Log::debug(print_r($response->getJson(), true)); + + return $response; + } + + /** + * @param string $url + * @param array $data + * @param int $tries + * + * @return mixed + */ + public function putToUrl(string $url, array $data, int $tries = 0) + { + if (!Cache::read('product_catalog_api_token')) { + $this->getJwtToken(); + } + + $response = $this->httpClient->put($url, json_encode($data), [ + 'headers' => [ + 'Accept' => 'application/json', + 'Content-Type' => 'application/json', + 'Authorization' => 'Bearer ' . Cache::read('product_catalog_api_token') + ], + ]); + + if (!$response->isOk()) { + $tries++; + } + if ($tries > 3) { + return $response; + } + if ($response->getStatusCode() == 401) { + $this->getJwtToken(); + $this->putToUrl($url, $data, $tries); + } + + return $response; + } + + protected function _getExternalProductCatalogsForCatalogId(string $productCatalogId) + { + return $this->ProductCatalogs->ExternalProductCatalogs->find()->where(['product_catalog_id' => $productCatalogId])->toArray(); + } +} diff --git a/src/Service/InternalCatalogManagerService.php b/src/Service/InternalCatalogManagerService.php new file mode 100644 index 0000000..28aaa94 --- /dev/null +++ b/src/Service/InternalCatalogManagerService.php @@ -0,0 +1,106 @@ +ProductCatalogs = $this->fetchTable('CakeProducts.ProductCatalogs'); + $this->serviceConfig = new ServiceConfig(); + + if ($this->serviceConfig->get('CakeProducts.internal.enabled') && $this->serviceConfig->get('CakeProducts.internal.syncExternally')) { + $this->externalCatalogManager = $externalCatalogManagerService; + } + + } + public function getCatalog(string $id = null) + { + $contain = ['ProductCategories']; + if ($this->serviceConfig->get('CakeProducts.internal.syncExternally')) { + $contain[] = 'ExternalProductCatalogs'; + } + + return $this->ProductCatalogs->get($id, contain: $contain); + } + + /** + * @param string|null $id + * + * @return \App\Model\Entity\ProductCategory|EntityInterface + */ + public function getCategory(string $id = null) + { + $contain = ['ProductCatalogs', 'ParentProductCategories', 'ChildProductCategories']; + + return $this->ProductCatalogs->ProductCategories->get($id, contain: $contain); + } + + /** + * @param ProductCategory $productCategory product category entity + * @param array $data data to save + * + * @return array + */ + public function createNewCategory(ProductCategory $productCategory, array $data = []): array + { + $now = Time::now(); + $associated = []; + + Log::info('posted data - adding new ProductCategory'); + Log::info(print_r($data, true)); + + $saveOptions = [ + 'associated' => $associated, + ]; + if (!array_key_exists('internal_id', $data) || !$data['internal_id']) { + $data['internal_id'] = Text::uuid(); + } + $productCategory = $this->ProductCatalogs->ProductCategories->patchEntity($productCategory, $data, $saveOptions); + if ($productCategory->getErrors()) { + Log::debug(print_r('$productCategory->getErrors() next - failed to save from create new product category', true)); + Log::debug(print_r($productCategory->getErrors(), true)); + } + $returnData = [ + 'entity' => $productCategory, + 'result' => $this->ProductCatalogs->ProductCategories->save($productCategory, $saveOptions), + 'apiResults' => [], + ]; + if ($returnData['result'] && $this->externalCatalogManager) { + $returnData['apiResults'] = $this->externalCatalogManager->newCategoryCreated($returnData['result']); + } + + return $returnData; + } +} diff --git a/templates/ExternalProductCatalogs/add.php b/templates/ExternalProductCatalogs/add.php new file mode 100644 index 0000000..1c06841 --- /dev/null +++ b/templates/ExternalProductCatalogs/add.php @@ -0,0 +1,32 @@ + +
+ +
+
+ Form->create($externalProductCatalog) ?> +
+ + Form->control('product_catalog_id', ['options' => $productCatalogs]); + echo $this->Form->control('base_url'); + echo $this->Form->control('api_url'); + echo $this->Form->control('deleted', ['empty' => true]); + echo $this->Form->control('enabled'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/ExternalProductCatalogs/edit.php b/templates/ExternalProductCatalogs/edit.php new file mode 100644 index 0000000..3485c52 --- /dev/null +++ b/templates/ExternalProductCatalogs/edit.php @@ -0,0 +1,37 @@ + +
+ +
+
+ Form->create($externalProductCatalog) ?> +
+ + Form->control('product_catalog_id', ['options' => $productCatalogs]); + echo $this->Form->control('base_url'); + echo $this->Form->control('api_url'); + echo $this->Form->control('deleted', ['empty' => true]); + echo $this->Form->control('enabled'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/ExternalProductCatalogs/index.php b/templates/ExternalProductCatalogs/index.php new file mode 100644 index 0000000..eca326b --- /dev/null +++ b/templates/ExternalProductCatalogs/index.php @@ -0,0 +1,54 @@ + $externalProductCatalogs + */ +?> +
+ Html->link(__('New External Product Catalog'), ['action' => 'add'], ['class' => 'button float-right']) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('product_catalog_id') ?>Paginator->sort('base_url') ?>Paginator->sort('api_url') ?>Paginator->sort('created') ?>Paginator->sort('deleted') ?>Paginator->sort('enabled') ?>
Number->format($externalProductCatalog->id) ?>hasValue('product_catalog') ? $this->Html->link($externalProductCatalog->product_catalog->name, ['controller' => 'ProductCatalogs', 'action' => 'view', $externalProductCatalog->product_catalog->id]) : '' ?>base_url) ?>api_url) ?>created) ?>deleted) ?>enabled) ?> + Html->link(__('View'), ['action' => 'view', $externalProductCatalog->id]) ?> + Html->link(__('Edit'), ['action' => 'edit', $externalProductCatalog->id]) ?> + Form->postLink(__('Delete'), ['action' => 'delete', $externalProductCatalog->id], ['confirm' => __('Are you sure you want to delete # {0}?', $externalProductCatalog->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/ExternalProductCatalogs/view.php b/templates/ExternalProductCatalogs/view.php new file mode 100644 index 0000000..abe3e59 --- /dev/null +++ b/templates/ExternalProductCatalogs/view.php @@ -0,0 +1,52 @@ + +
+ +
+
+

base_url) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
hasValue('product_catalog') ? $this->Html->link($externalProductCatalog->product_catalog->name, ['controller' => 'ProductCatalogs', 'action' => 'view', $externalProductCatalog->product_catalog->id]) : '' ?>
base_url) ?>
api_url) ?>
Number->format($externalProductCatalog->id) ?>
created) ?>
deleted) ?>
enabled ? __('Yes') : __('No'); ?>
+
+
+
diff --git a/templates/ProductCatalogs/add.php b/templates/ProductCatalogs/add.php new file mode 100644 index 0000000..af1d12f --- /dev/null +++ b/templates/ProductCatalogs/add.php @@ -0,0 +1,29 @@ + +
+ +
+
+ Form->create($productCatalog) ?> +
+ + Form->control('name'); + echo $this->Form->control('catalog_description'); + echo $this->Form->control('enabled'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/ProductCatalogs/edit.php b/templates/ProductCatalogs/edit.php new file mode 100644 index 0000000..5eecae1 --- /dev/null +++ b/templates/ProductCatalogs/edit.php @@ -0,0 +1,34 @@ + +
+ +
+
+ Form->create($productCatalog) ?> +
+ + Form->control('name'); + echo $this->Form->control('catalog_description'); + echo $this->Form->control('enabled'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/ProductCatalogs/index.php b/templates/ProductCatalogs/index.php new file mode 100644 index 0000000..5dc9d2e --- /dev/null +++ b/templates/ProductCatalogs/index.php @@ -0,0 +1,48 @@ + $productCatalogs + */ +?> +
+ Html->link(__('New Product Catalog'), ['action' => 'add'], ['class' => 'button float-right']) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('catalog_description') ?>Paginator->sort('enabled') ?>
id; ?>name) ?>catalog_description) ?>enabled) ?> + Html->link(__('View'), ['action' => 'view', $productCatalog->id]) ?> + Html->link(__('Edit'), ['action' => 'edit', $productCatalog->id]) ?> + Form->postLink(__('Delete'), ['action' => 'delete', $productCatalog->id], ['confirm' => __('Are you sure you want to delete # {0}?', $productCatalog->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/ProductCatalogs/view.php b/templates/ProductCatalogs/view.php new file mode 100644 index 0000000..d0b294c --- /dev/null +++ b/templates/ProductCatalogs/view.php @@ -0,0 +1,73 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + +
name) ?>
catalog_description) ?>
id; ?>
enabled ? __('Yes') : __('No'); ?>
+ +
+
+
diff --git a/templates/ProductCategories/add.php b/templates/ProductCategories/add.php new file mode 100644 index 0000000..293abab --- /dev/null +++ b/templates/ProductCategories/add.php @@ -0,0 +1,33 @@ + +
+ +
+
+ Form->create($productCategory) ?> +
+ + Form->control('product_catalog_id', ['options' => $productCatalogs]); + echo $this->Form->control('name'); + echo $this->Form->control('category_description'); + echo $this->Form->control('parent_id', ['options' => $parentProductCategories, 'empty' => true]); + echo $this->Form->control('enabled'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/ProductCategories/edit.php b/templates/ProductCategories/edit.php new file mode 100644 index 0000000..d2b8a22 --- /dev/null +++ b/templates/ProductCategories/edit.php @@ -0,0 +1,38 @@ + +
+ +
+
+ Form->create($productCategory) ?> +
+ + Form->control('product_catalog_id', ['options' => $productCatalogs]); + echo $this->Form->control('name'); + echo $this->Form->control('category_description'); + echo $this->Form->control('parent_id', ['options' => $parentProductCategories, 'empty' => true]); + echo $this->Form->control('enabled'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/ProductCategories/index.php b/templates/ProductCategories/index.php new file mode 100644 index 0000000..de301d4 --- /dev/null +++ b/templates/ProductCategories/index.php @@ -0,0 +1,50 @@ + $productCategories + */ +?> +
+ Html->link(__('New Product Category'), ['action' => 'add'], ['class' => 'button float-right']) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('product_catalog_id') ?>Paginator->sort('name') ?>Paginator->sort('parent_id') ?>Paginator->sort('enabled') ?>
id; ?>hasValue('product_catalog') ? $this->Html->link($productCategory->product_catalog->name, ['controller' => 'ProductCatalogs', 'action' => 'view', $productCategory->product_catalog->id]) : '' ?>name) ?>hasValue('parent_product_category') ? $this->Html->link($productCategory->parent_product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategory->parent_product_category->id]) : '' ?>enabled) ?> + Html->link(__('View'), ['action' => 'view', $productCategory->id]) ?> + Html->link(__('Edit'), ['action' => 'edit', $productCategory->id]) ?> + Form->postLink(__('Delete'), ['action' => 'delete', $productCategory->id], ['confirm' => __('Are you sure you want to delete # {0}?', $productCategory->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/ProductCategories/view.php b/templates/ProductCategories/view.php new file mode 100644 index 0000000..74d8984 --- /dev/null +++ b/templates/ProductCategories/view.php @@ -0,0 +1,95 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
hasValue('product_catalog') ? $this->Html->link($productCategory->product_catalog->name, ['controller' => 'ProductCatalogs', 'action' => 'view', $productCategory->product_catalog->id]) : '' ?>
name) ?>
hasValue('parent_product_category') ? $this->Html->link($productCategory->parent_product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategory->parent_product_category->id]) : '' ?>
id; ?>
Number->format($productCategory->lft) ?>
Number->format($productCategory->rght) ?>
enabled ? __('Yes') : __('No'); ?>
+
+ +
+ Text->autoParagraph(h($productCategory->category_description)); ?> +
+
+ +
+
+
diff --git a/templates/ProductCategoryAttributeOptions/add.php b/templates/ProductCategoryAttributeOptions/add.php new file mode 100644 index 0000000..9025b01 --- /dev/null +++ b/templates/ProductCategoryAttributeOptions/add.php @@ -0,0 +1,20 @@ +setLayout('ajax'); +$prefix = $prefix ?? ''; +if ($this->request->getQuery('prefix') !== null) { + $prefix = 'product_category_attribute_options.' . $this->request->getQuery('prefix') . '.'; +} +echo '
'; +echo $this->element('ProductCategoryAttributes/product_category_attribute_option_form', [ + 'prefix' => $prefix +]); +?> diff --git a/templates/ProductCategoryAttributes/add.php b/templates/ProductCategoryAttributes/add.php new file mode 100644 index 0000000..877275f --- /dev/null +++ b/templates/ProductCategoryAttributes/add.php @@ -0,0 +1,27 @@ + +
+ +
+
+ Form->create($productCategoryAttribute) ?> +
+ + element('ProductCategoryAttributes/form'); ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
+Html->script('CakeProducts.product_category_attribute_options.js'); ?> diff --git a/templates/ProductCategoryAttributes/edit.php b/templates/ProductCategoryAttributes/edit.php new file mode 100644 index 0000000..f1e2ad1 --- /dev/null +++ b/templates/ProductCategoryAttributes/edit.php @@ -0,0 +1,32 @@ + +
+ +
+
+ Form->create($productCategoryAttribute) ?> +
+ + element('ProductCategoryAttributes/form'); ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
+Html->script('CakeProducts.product_category_attribute_options.js'); ?> diff --git a/templates/ProductCategoryAttributes/index.php b/templates/ProductCategoryAttributes/index.php new file mode 100644 index 0000000..cf164c5 --- /dev/null +++ b/templates/ProductCategoryAttributes/index.php @@ -0,0 +1,50 @@ + $productCategoryAttributes + */ +?> +
+ Html->link(__('New Product Category Attribute'), ['action' => 'add'], ['class' => 'button float-right']) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('product_category_id') ?>Paginator->sort('attribute_type_id') ?>Paginator->sort('enabled') ?>
id ?>name) ?>hasValue('product_category') ? $this->Html->link($productCategoryAttribute->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategoryAttribute->product_category->id]) : '' ?>attribute_type_id->name ?>enabled) ?> + Html->link(__('View'), ['action' => 'view', $productCategoryAttribute->id]) ?> + Html->link(__('Edit'), ['action' => 'edit', $productCategoryAttribute->id]) ?> + Form->postLink(__('Delete'), ['action' => 'delete', $productCategoryAttribute->id], ['confirm' => __('Are you sure you want to delete # {0}?', $productCategoryAttribute->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/ProductCategoryAttributes/view.php b/templates/ProductCategoryAttributes/view.php new file mode 100644 index 0000000..08d57ec --- /dev/null +++ b/templates/ProductCategoryAttributes/view.php @@ -0,0 +1,71 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + +
name) ?>
hasValue('product_category') ? $this->Html->link($productCategoryAttribute->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategoryAttribute->product_category->id]) : '' ?>
id ?>
enabled ? __('Yes') : __('No'); ?>
+ +
+
+
diff --git a/templates/Products/add.php b/templates/Products/add.php new file mode 100644 index 0000000..39bf6b0 --- /dev/null +++ b/templates/Products/add.php @@ -0,0 +1,30 @@ + +
+ +
+
+ Form->create($product) ?> +
+ + Form->control('name'); + echo $this->Form->control('product_category_id', ['options' => $productCategories]); + echo $this->Form->control('product_type_id'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Products/edit.php b/templates/Products/edit.php new file mode 100644 index 0000000..5d49a17 --- /dev/null +++ b/templates/Products/edit.php @@ -0,0 +1,35 @@ + +
+ +
+
+ Form->create($product) ?> +
+ + Form->control('name'); + echo $this->Form->control('product_category_id', ['options' => $productCategories]); + echo $this->Form->control('product_type_id'); + ?> +
+ Form->button(__('Submit')) ?> + Form->end() ?> +
+
+
diff --git a/templates/Products/index.php b/templates/Products/index.php new file mode 100644 index 0000000..c4a0f52 --- /dev/null +++ b/templates/Products/index.php @@ -0,0 +1,48 @@ + $products + */ +?> +
+ Html->link(__('New Product'), ['action' => 'add'], ['class' => 'button float-right']) ?> +

+
+ + + + + + + + + + + + + + + + + + + + + +
Paginator->sort('id') ?>Paginator->sort('name') ?>Paginator->sort('product_category_id') ?>Paginator->sort('product_type_id') ?>
Number->format($product->id) ?>name) ?>hasValue('product_category') ? $this->Html->link($product->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $product->product_category->id]) : '' ?>product_type_id->name ?> + Html->link(__('View'), ['action' => 'view', $product->id]) ?> + Html->link(__('Edit'), ['action' => 'edit', $product->id]) ?> + Form->postLink(__('Delete'), ['action' => 'delete', $product->id], ['confirm' => __('Are you sure you want to delete # {0}?', $product->id)]) ?> +
+
+
+
    + Paginator->first('<< ' . __('first')) ?> + Paginator->prev('< ' . __('previous')) ?> + Paginator->numbers() ?> + Paginator->next(__('next') . ' >') ?> + Paginator->last(__('last') . ' >>') ?> +
+

Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>

+
+
diff --git a/templates/Products/view.php b/templates/Products/view.php new file mode 100644 index 0000000..ee86f4d --- /dev/null +++ b/templates/Products/view.php @@ -0,0 +1,40 @@ + +
+ +
+
+

name) ?>

+ + + + + + + + + + + + + + + + + +
name) ?>
hasValue('product_category') ? $this->Html->link($product->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $product->product_category->id]) : '' ?>
Number->format($product->id) ?>
product_type_id->name ?>
+
+
+
diff --git a/templates/element/Layout/submenu.php b/templates/element/Layout/submenu.php new file mode 100644 index 0000000..21480a6 --- /dev/null +++ b/templates/element/Layout/submenu.php @@ -0,0 +1,55 @@ +ActiveLink->link('Catalogs', [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'index', +], [ + 'class' => 'submenu-link', + 'target' => [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + ], +]); ?> +ActiveLink->link('Products', [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'index', +], [ + 'class' => 'submenu-link', + 'target' => [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + ], +]); ?> +ActiveLink->link('Categories', [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'index', +], [ + 'class' => 'submenu-link', + 'target' => [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + ], +]); ?> +ActiveLink->link('Attributes', [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'index', +], [ + 'class' => 'submenu-link', + 'target' => [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + ], +]); ?> +ActiveLink->link('External Catalogs', [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'index', +], [ + 'class' => 'submenu-link', + 'target' => [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + ], +]); ?> diff --git a/templates/element/ProductCategoryAttributes/form.php b/templates/element/ProductCategoryAttributes/form.php new file mode 100644 index 0000000..c6a5c88 --- /dev/null +++ b/templates/element/ProductCategoryAttributes/form.php @@ -0,0 +1,49 @@ +hasValue('product_category_attribute_options') || empty($productCategoryAttribute->product_category_attribute_options) ? 0 : count($productCategoryAttribute->product_category_attribute_options); +$cnt = 0; +$prefix = $prefix ?? ''; +?> +Form->control('name'); + echo $this->Form->control('product_category_id', ['options' => $productCategories, 'empty' => true]); + echo $this->Form->control('attribute_type_id'); + echo $this->Form->control('enabled'); +?> +' . $this->Html->link('Add Option', '#', [ + 'id' => 'add-option-button', + ]) . ''; ?> +Form->number('prefix', [ + 'value' => $numOptions - 1, + 'id' => 'attribute_options_prefix', + 'style' => 'display:none;', + 'hx-get' => $this->Url->build([ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributeOptions', + 'action' => 'add', + ]), + 'hx-trigger' => 'change', + 'hx-target' => '#attribute-options-container', + 'hx-swap' => 'beforeend', + 'data-test' => 1, +]); ?> + +
+ hasValue('product_category_attribute_options')) : ?> + product_category_attribute_options as $attributeOption) { + $prefix = 'product_category_attribute_options.' . $cnt . '.'; + echo '
'; + echo $this->element('CakeProducts.ProductCategoryAttributes/product_category_attribute_option_form', [ + 'attributeOption' => $attributeOption, + 'prefix' => $prefix, + ]); + $cnt++; + } ?> + +
diff --git a/templates/element/ProductCategoryAttributes/product_category_attribute_option_form.php b/templates/element/ProductCategoryAttributes/product_category_attribute_option_form.php new file mode 100644 index 0000000..ec79239 --- /dev/null +++ b/templates/element/ProductCategoryAttributes/product_category_attribute_option_form.php @@ -0,0 +1,32 @@ + +
+
+
+ Form->control($prefix . 'attribute_value', [ + 'label' => 'Value', + ]); ?> +
+
+ Form->control($prefix . 'attribute_label', [ + 'label' => 'Label', + ]); ?> +
+
+ Form->control($prefix . 'enabled', [ + 'type' => 'checkbox', + 'checked' => true, + 'label' => 'Enabled', + ]); ?> +
+
+ +
diff --git a/tests/Fixture/ExternalProductCatalogsFixture.php b/tests/Fixture/ExternalProductCatalogsFixture.php new file mode 100644 index 0000000..8b93827 --- /dev/null +++ b/tests/Fixture/ExternalProductCatalogsFixture.php @@ -0,0 +1,33 @@ +records = [ + [ + 'id' => 1, + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'base_url' => 'http://localhost:8766', + 'api_url' => 'http://localhost:8766/api', + 'created' => '2024-11-22 09:39:37', + 'deleted' => '2024-11-22 09:39:37', + 'enabled' => 1, + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/ProductCatalogsFixture.php b/tests/Fixture/ProductCatalogsFixture.php new file mode 100644 index 0000000..c189736 --- /dev/null +++ b/tests/Fixture/ProductCatalogsFixture.php @@ -0,0 +1,36 @@ +records = [ + [ + 'id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'name' => 'Automotive', + 'catalog_description' => '', + 'enabled' => true, + ], + [ + 'id' => 'f56f3412-ed23-490b-be6e-016208c415d2', + 'name' => 'Software', + 'catalog_description' => '', + 'enabled' => true, + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/ProductCategoriesFixture.php b/tests/Fixture/ProductCategoriesFixture.php new file mode 100644 index 0000000..2d3d520 --- /dev/null +++ b/tests/Fixture/ProductCategoriesFixture.php @@ -0,0 +1,101 @@ +records = [ + [ + 'id' => 1, + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'internal_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e', + 'name' => 'Engine', + 'category_description' => '', + 'parent_id' => null, + 'lft' => 1, + 'rght' => 4, + 'enabled' => true, + ], + [ + 'id' => 2, + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'internal_id' => '3c2377c5-b97c-4bc9-9660-8f77b4893d8b', + 'name' => 'Engine Internals', + 'category_description' => '', + 'parent_id' => 1, + 'lft' => 2, + 'rght' => 3, + 'enabled' => true, + ], + [ + 'id' => 3, + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'internal_id' => 'fbee6709-396f-4bb4-b60b-e125b0bc4e83', + 'name' => 'Electrical', + 'category_description' => '', + 'parent_id' => null, + 'lft' => 5, + 'rght' => 8, + 'enabled' => true, + ], + [ + 'id' => 4, + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'internal_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23', + 'name' => 'Wiring', + 'category_description' => '', + 'parent_id' => 3, + 'lft' => 6, + 'rght' => 7, + 'enabled' => true, + ], + [ + 'id' => 5, + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'internal_id' => 'c447b6f4-0fb1-4d59-ba45-5613829a725a', + 'name' => 'Suspension', + 'category_description' => '', + 'parent_id' => null, + 'lft' => 9, + 'rght' => 12, + 'enabled' => true, + ], + [ + 'id' => 6, + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'internal_id' => '1e749d3b-aee0-48a5-8d6c-8cf2b83e9b6e', + 'name' => 'Coilovers', + 'category_description' => '', + 'parent_id' => 5, + 'lft' => 10, + 'rght' => 11, + 'enabled' => true, + ], + [ + 'id' => 7, + 'product_catalog_id' => 'f56f3412-ed23-490b-be6e-016208c415d2', + 'internal_id' => '8c89a3ca-d56f-46bf-a738-7e85b3342b2a', + 'name' => 'Support', + 'category_description' => '', + 'parent_id' => null, + 'lft' => 1, + 'rght' => 2, + 'enabled' => true, + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/ProductCategoryAttributeOptionsFixture.php b/tests/Fixture/ProductCategoryAttributeOptionsFixture.php new file mode 100644 index 0000000..0a53303 --- /dev/null +++ b/tests/Fixture/ProductCategoryAttributeOptionsFixture.php @@ -0,0 +1,31 @@ +records = [ + [ + 'id' => 'e06f1723-2456-483a-b3c4-004603e032a8', + 'product_category_attribute_id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c', + 'attribute_value' => 'Lorem ipsum dolor sit amet', + 'attribute_label' => 'Lorem ipsum dolor sit amet', + 'enabled' => 1, + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/ProductCategoryAttributesFixture.php b/tests/Fixture/ProductCategoryAttributesFixture.php new file mode 100644 index 0000000..1f77437 --- /dev/null +++ b/tests/Fixture/ProductCategoryAttributesFixture.php @@ -0,0 +1,31 @@ +records = [ + [ + 'id' => '37078cf0-0130-4b93-bb7e-abe7d665ed2c', + 'name' => 'Color', + 'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23', + 'attribute_type_id' => 1, + 'enabled' => 1, + ], + ]; + parent::init(); + } +} diff --git a/tests/Fixture/ProductsFixture.php b/tests/Fixture/ProductsFixture.php new file mode 100644 index 0000000..5f55d74 --- /dev/null +++ b/tests/Fixture/ProductsFixture.php @@ -0,0 +1,30 @@ +records = [ + [ + 'id' => 'cfc98a9a-29b2-44c8-b587-8156adc05317', + 'name' => '12AWG RED TXL Wire', + 'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23', + 'product_type_id' => 1, + ], + ]; + parent::init(); + } +} diff --git a/tests/TestCase/Controller/BaseControllerTest.php b/tests/TestCase/Controller/BaseControllerTest.php new file mode 100644 index 0000000..eae19fc --- /dev/null +++ b/tests/TestCase/Controller/BaseControllerTest.php @@ -0,0 +1,25 @@ +session(['Auth.User.id' => 1]); + $this->session(['Auth.id' => 1]); + } + + /** + * @return void + */ + public function testTest() + { + $this->assertEquals(1, 1); + } +} diff --git a/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php new file mode 100644 index 0000000..02ab223 --- /dev/null +++ b/tests/TestCase/Controller/ExternalProductCatalogsControllerTest.php @@ -0,0 +1,446 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ExternalProductCatalogs', + 'plugin.CakeProducts.ProductCatalogs', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->enableCsrfToken(); + $this->enableSecurityToken(); + $this->ExternalProductCatalogs = $this->getTableLocator()->get('ExternalProductCatalogs'); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ExternalProductCatalogs); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = 1; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = 1; + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->ExternalProductCatalogs->find()->count(); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ExternalProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->ExternalProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->ExternalProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInSuccess(): void + { + $cntBefore = $this->ExternalProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'add', + ]; + $data = [ + 'product_catalog_id' => 'f56f3412-ed23-490b-be6e-016208c415d2', + 'base_url' => 'http://localhost:8766', + 'api_url' => 'http://localhost:8766/api/v1/', + 'enabled' => true, + ]; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('external-product-catalogs'); + + $cntAfter = $this->ExternalProductCatalogs->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInFailure(): void + { + $cntBefore = $this->ExternalProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'add', + ]; + $data = [ + 'product_catalog_id' => 999999, + 'base_url' => '', + 'api_url' => 'http://localhost:8766/api/v1/', + 'enabled' => true, + ]; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->ExternalProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test edit method + * + * Tests the edit action with an unauthenticated user (not logged in) + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'edit', + 1, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test edit method + * + * Tests the edit action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'edit', + 1, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInSuccess(): void + { + $this->loginUserByRole('admin'); + $id = 1; + $before = $this->ExternalProductCatalogs->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'edit', + $id, + ]; + $data = [ + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'base_url' => 'http://localhost:8766', + 'api_url' => 'http://localhost:8766/api/v1/', + 'enabled' => true, + ]; + $this->put($url, $data); + + $this->assertResponseCode(302); + $this->assertRedirectContains('external-product-catalogs'); + + $after = $this->ExternalProductCatalogs->get($id); + // assert saved properly below + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInFailure(): void + { + $this->loginUserByRole('admin'); + $id = 1; + $before = $this->ExternalProductCatalogs->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'edit', + $id, + ]; + $data = [ + 'product_catalog_id' => 9999999, + 'base_url' => '', + 'api_url' => 'http://localhost:8766/api/v1/', + 'enabled' => true, + ]; + $this->put($url, $data); + $this->assertResponseCode(200); + $after = $this->ExternalProductCatalogs->get($id); + + // assert save failed below + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->ExternalProductCatalogs->find()->count(); + + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ExternalProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @uses \CakeProducts\Controller\ExternalProductCatalogsController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->ExternalProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ExternalProductCatalogs', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('external-product-catalogs'); + + $cntAfter = $this->ExternalProductCatalogs->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Controller/ProductCatalogsControllerTest.php b/tests/TestCase/Controller/ProductCatalogsControllerTest.php new file mode 100644 index 0000000..ffe2423 --- /dev/null +++ b/tests/TestCase/Controller/ProductCatalogsControllerTest.php @@ -0,0 +1,450 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCatalogs', + 'plugin.CakeProducts.ProductCategories', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->enableCsrfToken(); + $this->enableSecurityToken(); + $config = $this->getTableLocator()->exists('ProductCatalogs') ? [] : ['className' => ProductCatalogsTable::class]; + $this->ProductCatalogs = $this->getTableLocator()->get('ProductCatalogs', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCatalogs); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses ProductCatalogsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeProducts\Controller\ProductCatalogsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses ProductCatalogsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = '115153f3-2f59-4234-8ff8-e1b205761428'; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @uses ProductCatalogsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = '115153f3-2f59-4234-8ff8-e1b205761428'; + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @uses ProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->ProductCatalogs->find()->count(); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @uses ProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->ProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses ProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInSuccess(): void + { + $cntBefore = $this->ProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'add', + ]; + $data = [ + 'name' => 'new catalog', + 'catalog_description' => 'description', + 'enabled' => true, + ]; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-catalogs'); + + $cntAfter = $this->ProductCatalogs->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses ProductCatalogsController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInFailure(): void + { + $cntBefore = $this->ProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'add', + ]; + $data = [ + 'name' => '', + 'catalog_description' => '', + 'enabled' => '', + ]; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test edit method + * + * Tests the edit action with an unauthenticated user (not logged in) + * + * @uses ProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetUnauthenticated(): void + { + $id = '115153f3-2f59-4234-8ff8-e1b205761428'; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'edit', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test edit method + * + * Tests the edit action with a logged in user + * + * @uses ProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $id = '115153f3-2f59-4234-8ff8-e1b205761428'; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'edit', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @uses ProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInSuccess(): void + { + $this->loginUserByRole('admin'); + $id = '115153f3-2f59-4234-8ff8-e1b205761428'; +// $before = $this->ProductCatalogs->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'edit', + $id, + ]; + $data = [ + // test new data here + 'name' => 'edited name', + 'catalog_description' => 'new catalog description', + 'enabled' => true, + ]; + $this->put($url, $data); + + $this->assertResponseCode(302); + $this->assertRedirectContains('product-catalogs'); + + $after = $this->ProductCatalogs->get($id); + $this->assertEquals($data['name'], $after->name); + $this->assertEquals($data['catalog_description'], $after->catalog_description); + // assert saved properly below + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @uses ProductCatalogsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInFailure(): void + { + $this->loginUserByRole('admin'); + $id = '115153f3-2f59-4234-8ff8-e1b205761428'; + $before = $this->ProductCatalogs->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'edit', + $id, + ]; + $data = [ + 'name' => '', + 'catalog_description' => 'edited description', + 'enabled' => '', + ]; + $this->put($url, $data); + $this->assertResponseCode(200); + $after = $this->ProductCatalogs->get($id); + $this->assertEquals($before->name, $after->name); + $this->assertEquals($before->catalog_description, $after->catalog_description); + // assert save failed below + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @uses ProductCatalogsController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->ProductCatalogs->find()->count(); + + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCatalogs->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @uses ProductCatalogsController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->ProductCatalogs->find()->count(); + + $this->loginUserByRole('admin'); + $id = '115153f3-2f59-4234-8ff8-e1b205761428'; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCatalogs', + 'action' => 'delete', + $id, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-catalogs'); + + $cntAfter = $this->ProductCatalogs->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Controller/ProductCategoriesControllerTest.php b/tests/TestCase/Controller/ProductCategoriesControllerTest.php new file mode 100644 index 0000000..1808f4e --- /dev/null +++ b/tests/TestCase/Controller/ProductCategoriesControllerTest.php @@ -0,0 +1,455 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCatalogs', + 'plugin.CakeProducts.ProductCategories', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->enableCsrfToken(); + $this->enableSecurityToken(); + $this->ProductCategories = $this->getTableLocator()->get('ProductCategories'); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCategories); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::index + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::index + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::view + */ + public function testViewGetUnauthenticated(): void + { + $id = 1; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::view + */ + public function testViewGetLoggedIn(): void + { + $id = 1; + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::add + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->ProductCategories->find()->count(); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCategories->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::add + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->ProductCategories->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCategories->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::add + */ + public function testAddPostLoggedInSuccess(): void + { + $cntBefore = $this->ProductCategories->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'add', + ]; + $data = [ + 'name' => 'Electrical Plugs', + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'category_description' => 'electrical', + 'parent_id' => 3, + 'enabled' => true, + ]; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-categories'); + + $cntAfter = $this->ProductCategories->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::add + */ + public function testAddPostLoggedInFailure(): void + { + $cntBefore = $this->ProductCategories->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'add', + ]; + $data = [ + 'name' => '', + 'product_catalog_id' => '', + 'category_description' => 'electrical', + 'parent_id' => '', + 'enabled' => true, + ]; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCategories->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test edit method + * + * Tests the edit action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::edit + */ + public function testEditGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'edit', + 1, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test edit method + * + * Tests the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::edit + */ + public function testEditGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'edit', + 1, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::edit + */ + public function testEditPutLoggedInSuccess(): void + { + $this->loginUserByRole('admin'); + $id = 1; + $before = $this->ProductCategories->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'edit', + $id, + ]; + $data = [ + // test new data here + 'name' => 'Electrical v2', + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'category_description' => 'electrical v2', + 'parent_id' => '', + 'enabled' => true, + ]; + $this->put($url, $data); + + $this->assertResponseCode(302); + $this->assertRedirectContains('product-categories'); + + $after = $this->ProductCategories->get($id); + $this->assertEquals($data['name'], $after->name); + $this->assertEquals($data['product_catalog_id'], $after->product_catalog_id); + $this->assertEquals($data['category_description'], $after->category_description); + $this->assertNull($after->parent_id); + // assert saved properly below + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::edit + */ + public function testEditPutLoggedInFailure(): void + { + $this->loginUserByRole('admin'); + $id = 1; + $before = $this->ProductCategories->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'edit', + $id, + ]; + $data = [ + 'name' => '', + 'product_catalog_id' => '', + 'category_description' => 'electrical', + 'parent_id' => '', + 'enabled' => true, + ]; + $this->put($url, $data); + $this->assertResponseCode(200); + $after = $this->ProductCategories->get($id); + + // assert save failed below + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoriesController::delete + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->ProductCategories->find()->count(); + + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCategories->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @return void + *@throws Exception + * + * @uses ProductCategoriesController::delete + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->ProductCategories->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategories', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-categories'); + + $cntAfter = $this->ProductCategories->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Controller/ProductCategoryAttributeOptionsControllerTest.php b/tests/TestCase/Controller/ProductCategoryAttributeOptionsControllerTest.php new file mode 100644 index 0000000..05fb7b4 --- /dev/null +++ b/tests/TestCase/Controller/ProductCategoryAttributeOptionsControllerTest.php @@ -0,0 +1,198 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCategoryAttributeOptions', + 'plugin.CakeProducts.ProductCategoryAttributes', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->enableCsrfToken(); + $this->enableSecurityToken(); + $config = $this->getTableLocator()->exists('ProductCategoryAttributeOptions') ? [] : ['className' => ProductCategoryAttributeOptionsTable::class]; + $this->ProductCategoryAttributeOptions = $this->getTableLocator()->get('ProductCategoryAttributeOptions', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCategoryAttributeOptions); + + parent::tearDown(); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses CustomersContactsController::add + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->ProductCategoryAttributeOptions->find()->count(); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributeOptions', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCategoryAttributeOptions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses CustomersContactsController::add + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->ProductCategoryAttributeOptions->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributeOptions', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCategoryAttributeOptions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses CustomersContactsController::add + */ + public function testAddPostLoggedInHasNoEffect(): void + { + $cntBefore = $this->ProductCategoryAttributeOptions->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributeOptions', + 'action' => 'add', + ]; + $data = []; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCategoryAttributeOptions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses CustomersContactsController::delete + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->ProductCategoryAttributeOptions->find()->count(); + + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributeOptions', + 'action' => 'delete', + 'e06f1723-2456-483a-b3c4-004603e032a8', + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCategoryAttributeOptions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @return void + *@throws Exception + * + * @uses CustomersContactsController::delete + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->ProductCategoryAttributeOptions->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributeOptions', + 'action' => 'delete', + 'e06f1723-2456-483a-b3c4-004603e032a8', + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-category-attributes'); + + $cntAfter = $this->ProductCategoryAttributeOptions->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Controller/ProductCategoryAttributesControllerTest.php b/tests/TestCase/Controller/ProductCategoryAttributesControllerTest.php new file mode 100644 index 0000000..f79fdf4 --- /dev/null +++ b/tests/TestCase/Controller/ProductCategoryAttributesControllerTest.php @@ -0,0 +1,498 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCategoryAttributes', + 'plugin.CakeProducts.ProductCategories', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->enableCsrfToken(); + $this->enableSecurityToken(); + $config = $this->getTableLocator()->exists('ProductCategoryAttributes') ? [] : ['className' => ProductCategoryAttributesTable::class]; + $this->ProductCategoryAttributes = $this->getTableLocator()->get('ProductCategoryAttributes', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCategoryAttributes); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::index + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::index + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::view + */ + public function testViewGetUnauthenticated(): void + { + $id = '37078cf0-0130-4b93-bb7e-abe7d665ed2c'; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::view + */ + public function testViewGetLoggedIn(): void + { + $id = '37078cf0-0130-4b93-bb7e-abe7d665ed2c'; + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::add + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->ProductCategoryAttributes->find()->count(); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCategoryAttributes->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::add + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->ProductCategoryAttributes->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCategoryAttributes->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::add + */ + public function testAddPostLoggedInSuccess(): void + { + $cntBefore = $this->ProductCategoryAttributes->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'add', + ]; + $data = [ + 'name' => 'Size', + 'product_category_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e', + 'attribute_type_id' => 2, + 'enabled' => true, + ]; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-category-attributes'); + + $cntAfter = $this->ProductCategoryAttributes->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::add + */ + public function testAddPostLoggedInSuccessConstrainedWithOptions(): void + { + $cntBefore = $this->ProductCategoryAttributes->find()->count(); + $cntOptionsBefore = $this->ProductCategoryAttributes->ProductCategoryAttributeOptions->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'add', + ]; + $data = [ + 'name' => 'Size', + 'product_category_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e', + 'attribute_type_id' => 1, + 'enabled' => true, + 'product_category_attribute_options' => [ + [ + 'attribute_value' => 'XL', + 'attribute_label' => 'XL', + 'enabled' => true, + ], + [ + 'attribute_value' => 'L', + 'attribute_label' => 'L', + 'enabled' => true, + ] + ], + ]; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-category-attributes'); + + $cntAfter = $this->ProductCategoryAttributes->find()->count(); + $cntOptionsAfter = $this->ProductCategoryAttributes->ProductCategoryAttributeOptions->find()->count(); + + $this->assertEquals($cntBefore + 1, $cntAfter); + $this->assertEquals($cntOptionsBefore + 2, $cntOptionsAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::add + */ + public function testAddPostLoggedInFailure(): void + { + $cntBefore = $this->ProductCategoryAttributes->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'add', + ]; + $data = [ + 'name' => '', + 'product_category_id' => 1, + 'attribute_type_id' => 1, + 'enabled' => true, + ]; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->ProductCategoryAttributes->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test edit method + * + * Tests the edit action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::edit + */ + public function testEditGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'edit', + '37078cf0-0130-4b93-bb7e-abe7d665ed2c', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test edit method + * + * Tests the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::edit + */ + public function testEditGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'edit', + '37078cf0-0130-4b93-bb7e-abe7d665ed2c', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::edit + */ + public function testEditPutLoggedInSuccess(): void + { + $this->loginUserByRole('admin'); + $id = '37078cf0-0130-4b93-bb7e-abe7d665ed2c'; + $before = $this->ProductCategoryAttributes->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'edit', + $id, + ]; + $data = [ + // test new data here + 'name' => 'Color', + 'product_category_id' => 'db4b4273-eddc-46d4-93c8-45cf7c6e058e', + 'attribute_type_id' => 1, + 'enabled' => true, + ]; + $this->put($url, $data); + + $this->assertResponseCode(302); + $this->assertRedirectContains('product-category-attributes'); + + $after = $this->ProductCategoryAttributes->get($id); + // assert saved properly below + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::edit + */ + public function testEditPutLoggedInFailure(): void + { + $this->loginUserByRole('admin'); + $id = '37078cf0-0130-4b93-bb7e-abe7d665ed2c'; + $before = $this->ProductCategoryAttributes->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'edit', + $id, + ]; + $data = [ + 'name' => '', + 'product_category_id' => 1, + 'attribute_type_id' => 1, + 'enabled' => true, + ]; + $this->put($url, $data); + $this->assertResponseCode(200); + $after = $this->ProductCategoryAttributes->get($id); + + // assert save failed below + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductCategoryAttributesController::delete + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->ProductCategoryAttributes->find()->count(); + + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'delete', + '37078cf0-0130-4b93-bb7e-abe7d665ed2c', + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ProductCategoryAttributes->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @return void + *@throws Exception + * + * @uses ProductCategoryAttributesController::delete + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->ProductCategoryAttributes->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'ProductCategoryAttributes', + 'action' => 'delete', + '37078cf0-0130-4b93-bb7e-abe7d665ed2c', + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('product-category-attributes'); + + $cntAfter = $this->ProductCategoryAttributes->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Controller/ProductsControllerTest.php b/tests/TestCase/Controller/ProductsControllerTest.php new file mode 100644 index 0000000..0517918 --- /dev/null +++ b/tests/TestCase/Controller/ProductsControllerTest.php @@ -0,0 +1,452 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.Products', + 'plugin.CakeProducts.ProductCategories', +// 'plugin.CakeProducts.ProductCatalogs', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->enableCsrfToken(); + $this->enableSecurityToken(); + $config = $this->getTableLocator()->exists('Products') ? [] : ['className' => ProductsTable::class]; + $this->Products = $this->getTableLocator()->get('Products', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Products); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductsController::index + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::index + */ + public function testIndexGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductsController::view + */ + public function testViewGetUnauthenticated(): void + { + $id = 'cfc98a9a-29b2-44c8-b587-8156adc05317'; + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test view method + * + * Tests the view action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::view + */ + public function testViewGetLoggedIn(): void + { + $id = 'cfc98a9a-29b2-44c8-b587-8156adc05317'; + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductsController::add + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->Products->find()->count(); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->Products->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::add + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->Products->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->Products->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::add + */ + public function testAddPostLoggedInSuccess(): void + { + $cntBefore = $this->Products->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'add', + ]; + $data = [ + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23', + 'name' => '16AWG WIRE RED', + 'product_type_id' => 1, + ]; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('products'); + + $cntAfter = $this->Products->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::add + */ + public function testAddPostLoggedInFailure(): void + { + $cntBefore = $this->Products->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'add', + ]; + $data = [ + 'product_catalog_id' => '', + 'product_category_id' => '', + 'name' => '', + 'product_type_id' => 1, + ]; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->Products->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test edit method + * + * Tests the edit action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductsController::edit + */ + public function testEditGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'edit', + 'cfc98a9a-29b2-44c8-b587-8156adc05317', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test edit method + * + * Tests the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::edit + */ + public function testEditGetLoggedIn(): void + { + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'edit', + 'cfc98a9a-29b2-44c8-b587-8156adc05317', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::edit + */ + public function testEditPutLoggedInSuccess(): void + { + $this->loginUserByRole('admin'); + $id = 'cfc98a9a-29b2-44c8-b587-8156adc05317'; + $before = $this->Products->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'edit', + $id, + ]; + $data = [ + // test new data here + 'product_catalog_id' => '115153f3-2f59-4234-8ff8-e1b205761428', + 'product_category_id' => '6d223283-361b-4f9f-a7f1-c97aa0ca4c23', + 'name' => 'edited product name', + 'product_type_id' => 1, + ]; + $this->put($url, $data); + + $this->assertResponseCode(302); + $this->assertRedirectContains('products'); + + $after = $this->Products->get($id); + $this->assertEquals($data['name'], $after->name); + // assert saved properly below + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @return void + * @throws Exception + * + * @uses ProductsController::edit + */ + public function testEditPutLoggedInFailure(): void + { + $this->loginUserByRole('admin'); + $id = 'cfc98a9a-29b2-44c8-b587-8156adc05317'; + $before = $this->Products->get($id); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'edit', + $id, + ]; + $data = [ + 'product_catalog_id' => '', + 'product_category_id' => '', + 'name' => 'edited name not gonna take', + 'product_type_id' => 1, + ]; + $this->put($url, $data); + $this->assertResponseCode(200); + $after = $this->Products->get($id); + $this->assertEquals($before->name, $after->name); + $this->assertEquals($before->product_category_id, $after->product_category_id); + // assert save failed below + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @return void + * @throws Exception + * + * @uses ProductsController::delete + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->Products->find()->count(); + + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'delete', + 'cfc98a9a-29b2-44c8-b587-8156adc05317', + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->Products->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @return void + *@throws Exception + * + * @uses ProductsController::delete + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->Products->find()->count(); + + $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeProducts', + 'controller' => 'Products', + 'action' => 'delete', + 'cfc98a9a-29b2-44c8-b587-8156adc05317', + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('products'); + + $cntAfter = $this->Products->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Model/Table/ExternalProductCatalogsTableTest.php b/tests/TestCase/Model/Table/ExternalProductCatalogsTableTest.php new file mode 100644 index 0000000..168ae37 --- /dev/null +++ b/tests/TestCase/Model/Table/ExternalProductCatalogsTableTest.php @@ -0,0 +1,107 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ExternalProductCatalogs', + 'plugin.CakeProducts.ProductCatalogs', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('ExternalProductCatalogs') ? [] : ['className' => ExternalProductCatalogsTable::class]; + $this->ExternalProductCatalogs = $this->getTableLocator()->get('ExternalProductCatalogs', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ExternalProductCatalogs); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses \CakeProducts\Model\Table\ExternalProductCatalogsTable::initialize() + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'ProductCatalogs', + ]; + $associations = $this->ExternalProductCatalogs->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->ExternalProductCatalogs->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = [ + 'Timestamp', + ]; + $behaviors = $this->ExternalProductCatalogs->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->ExternalProductCatalogs->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeProducts\Model\Table\ExternalProductCatalogsTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses \CakeProducts\Model\Table\ExternalProductCatalogsTable::buildRules() + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/ProductCatalogsTableTest.php b/tests/TestCase/Model/Table/ProductCatalogsTableTest.php new file mode 100644 index 0000000..a74882a --- /dev/null +++ b/tests/TestCase/Model/Table/ProductCatalogsTableTest.php @@ -0,0 +1,96 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCatalogs', + 'plugin.CakeProducts.ProductCategories', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('ProductCatalogs') ? [] : ['className' => ProductCatalogsTable::class]; + $this->ProductCatalogs = $this->getTableLocator()->get('ProductCatalogs', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCatalogs); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses ProductCatalogsTable::initialize + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'ProductCategories', + 'ExternalProductCatalogs', + ]; + $associations = $this->ProductCatalogs->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->ProductCatalogs->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = []; + $behaviors = $this->ProductCatalogs->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->ProductCatalogs->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses ProductCatalogsTable::validationDefault + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/ProductCategoriesTableTest.php b/tests/TestCase/Model/Table/ProductCategoriesTableTest.php new file mode 100644 index 0000000..79c8a19 --- /dev/null +++ b/tests/TestCase/Model/Table/ProductCategoriesTableTest.php @@ -0,0 +1,111 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCategories', + 'plugin.CakeProducts.ProductCatalogs', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('ProductCategories') ? [] : ['className' => ProductCategoriesTable::class]; + $this->ProductCategories = $this->getTableLocator()->get('ProductCategories', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCategories); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses \CakeProducts\Model\Table\ProductCategoriesTable::initialize() + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'ProductCatalogs', + 'ParentProductCategories', + 'ChildProductCategories', +// 'Products', +// 'ProductCategoryAttributes', + ]; + $associations = $this->ProductCategories->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->ProductCategories->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = [ + 'Tree', + ]; + $behaviors = $this->ProductCategories->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->ProductCategories->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeProducts\Model\Table\ProductCategoriesTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses \CakeProducts\Model\Table\ProductCategoriesTable::buildRules() + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/ProductCategoryAttributeOptionsTableTest.php b/tests/TestCase/Model/Table/ProductCategoryAttributeOptionsTableTest.php new file mode 100644 index 0000000..a5a0f53 --- /dev/null +++ b/tests/TestCase/Model/Table/ProductCategoryAttributeOptionsTableTest.php @@ -0,0 +1,104 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCategoryAttributeOptions', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('ProductCategoryAttributeOptions') ? [] : ['className' => ProductCategoryAttributeOptionsTable::class]; + $this->ProductCategoryAttributeOptions = $this->getTableLocator()->get('ProductCategoryAttributeOptions', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCategoryAttributeOptions); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses ProductCategoryAttributeOptionsTable::initialize + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'ProductCategoryAttributes', + ]; + $associations = $this->ProductCategoryAttributeOptions->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->ProductCategoryAttributeOptions->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = []; + $behaviors = $this->ProductCategoryAttributeOptions->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->ProductCategoryAttributeOptions->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses ProductCategoryAttributeOptionsTable::validationDefault + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses ProductCategoryAttributeOptionsTable::buildRules + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/ProductCategoryAttributesTableTest.php b/tests/TestCase/Model/Table/ProductCategoryAttributesTableTest.php new file mode 100644 index 0000000..5e97ab0 --- /dev/null +++ b/tests/TestCase/Model/Table/ProductCategoryAttributesTableTest.php @@ -0,0 +1,107 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.ProductCategoryAttributes', + 'plugin.CakeProducts.ProductCategoryAttributeOptions', + 'plugin.CakeProducts.ProductCategories', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('ProductCategoryAttributes') ? [] : ['className' => ProductCategoryAttributesTable::class]; + $this->ProductCategoryAttributes = $this->getTableLocator()->get('ProductCategoryAttributes', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ProductCategoryAttributes); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses ProductCategoryAttributesTable::initialize + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'ProductCategories', + 'ProductCategoryAttributeOptions', + ]; + $associations = $this->ProductCategoryAttributes->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->ProductCategoryAttributes->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = []; + $behaviors = $this->ProductCategoryAttributes->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->ProductCategoryAttributes->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses ProductCategoryAttributesTable::validationDefault + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses ProductCategoryAttributesTable::buildRules + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/TestCase/Model/Table/ProductsTableTest.php b/tests/TestCase/Model/Table/ProductsTableTest.php new file mode 100644 index 0000000..57bb0bd --- /dev/null +++ b/tests/TestCase/Model/Table/ProductsTableTest.php @@ -0,0 +1,105 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeProducts.Products', + 'plugin.CakeProducts.ProductCategories', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('Products') ? [] : ['className' => ProductsTable::class]; + $this->Products = $this->getTableLocator()->get('Products', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->Products); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses ProductsTable::initialize + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = [ + 'ProductCategories', + ]; + $associations = $this->Products->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->Products->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = []; + $behaviors = $this->Products->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->Products->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses ProductsTable::validationDefault + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } + + /** + * Test buildRules method + * + * @return void + * @uses ProductsTable::buildRules + */ + public function testBuildRules(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/bootstrap.php b/tests/bootstrap.php new file mode 100644 index 0000000..5ae28bc --- /dev/null +++ b/tests/bootstrap.php @@ -0,0 +1,55 @@ +loadSqlFiles('tests/schema.sql', 'test'); diff --git a/tests/schema.sql b/tests/schema.sql new file mode 100644 index 0000000..ef9d09a --- /dev/null +++ b/tests/schema.sql @@ -0,0 +1 @@ +-- Test database schema for CakeProducts diff --git a/webroot/.gitkeep b/webroot/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/webroot/js/product_category_attribute_options.js b/webroot/js/product_category_attribute_options.js new file mode 100644 index 0000000..4404709 --- /dev/null +++ b/webroot/js/product_category_attribute_options.js @@ -0,0 +1,15 @@ +const addOptionButton = document.getElementById('add-option-button'); +const attributeOptionPrefixInput = document.getElementById('attribute_options_prefix'); +if (addOptionButton && attributeOptionPrefixInput) { + addOptionButton.addEventListener('click', addOptionButtonClicked); +} +function addOptionButtonClicked(e) +{ + e.preventDefault(); + console.debug('attributeOptionPrefixInput.value'); + console.debug(attributeOptionPrefixInput.value); + attributeOptionPrefixInput.value = parseInt(attributeOptionPrefixInput.value) + 1; + attributeOptionPrefixInput.dispatchEvent(new Event('change')); + console.debug('attributeOptionPrefixInput.value'); + console.debug(attributeOptionPrefixInput.value); +}