assert the link record was created

This commit is contained in:
Brandon Shipley 2025-03-31 02:02:34 -07:00
parent 04d03bd0bf
commit 8e778cce57
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 4 additions and 2 deletions

View File

@ -5,6 +5,7 @@ namespace CakeProducts\Test\TestCase\Controller;
use Cake\Log\Log;
use Cake\ORM\Table;
use Cake\ORM\TableRegistry;
use Cake\TestSuite\IntegrationTestTrait;
use Cake\TestSuite\TestCase;
use CakeProducts\Controller\ExternalProductCatalogsController;
@ -148,8 +149,9 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
*/
public function testAddPostSuccess(): void
{
$linksTable = TableRegistry::getTableLocator()->get('CakeProducts.ExternalProductCatalogsProductCatalogs');
$cntBefore = $this->ExternalProductCatalogs->find()->count();
$linksBefore = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count();
$linksBefore = $linksTable->find()->count();
$this->loginUserByRole('admin');
$url = [
@ -170,7 +172,7 @@ class ExternalProductCatalogsControllerTest extends BaseControllerTest
$this->assertRedirectContains('external-product-catalogs');
$cntAfter = $this->ExternalProductCatalogs->find()->count();
$linksAfter = $this->ExternalProductCatalogs->ExternalProductCatalogsProductCatalogs->find()->count();
$linksAfter = $linksTable->find()->count();
$this->assertEquals($cntBefore + 1, $cntAfter);
$this->assertEquals($linksBefore + 1, $linksAfter);