+ = $this->Text->autoParagraph(h($contactUsFormSubmission->message)); ?> ++
= $this->Paginator->sort('id') ?> | += $this->Paginator->sort('submitted_at') ?> | += $this->Paginator->sort('client_ip') ?> | += $this->Paginator->sort('name') ?> | += $this->Paginator->sort('email') ?> | += $this->Paginator->sort('subject') ?> | += $this->Paginator->sort('confirm_email_sent') ?> | += $this->Paginator->sort('backend_email_sent') ?> | += __('Actions') ?> | +
---|---|---|---|---|---|---|---|---|
= h($contactUsFormSubmission->id) ?> | += h($contactUsFormSubmission->submitted_at) ?> | += h($contactUsFormSubmission->client_ip) ?> | += h($contactUsFormSubmission->name) ?> | += h($contactUsFormSubmission->email) ?> | += h($contactUsFormSubmission->subject) ?> | += h($contactUsFormSubmission->confirm_email_sent) ?> | += h($contactUsFormSubmission->backend_email_sent) ?> | ++ = $this->Html->link(__('View'), ['action' => 'view', $contactUsFormSubmission->id]) ?> + = $this->Html->link(__('Edit'), ['action' => 'edit', $contactUsFormSubmission->id]) ?> + = $this->Form->postLink(__('Delete'), ['action' => 'delete', $contactUsFormSubmission->id], ['confirm' => __('Are you sure you want to delete # {0}?', $contactUsFormSubmission->id)]) ?> + | +
= $this->Paginator->counter(__('Page {{page}} of {{pages}}, showing {{current}} record(s) out of {{count}} total')) ?>
+= __('Id') ?> | += h($contactUsFormSubmission->id) ?> | +
---|---|
= __('Client Ip') ?> | += h($contactUsFormSubmission->client_ip) ?> | +
= __('Name') ?> | += h($contactUsFormSubmission->name) ?> | +
= __('Email') ?> | += h($contactUsFormSubmission->email) ?> | +
= __('Subject') ?> | += h($contactUsFormSubmission->subject) ?> | +
= __('Submitted At') ?> | += h($contactUsFormSubmission->submitted_at) ?> | +
= __('Confirm Email Sent') ?> | += h($contactUsFormSubmission->confirm_email_sent) ?> | +
= __('Backend Email Sent') ?> | += h($contactUsFormSubmission->backend_email_sent) ?> | +
+ = $this->Text->autoParagraph(h($contactUsFormSubmission->message)); ?> ++
+ = __d('cake_contact_us', "A contact us form submission was received at {0}", $contactUsFormSubmission->submitted_at) ?>, +
++ = h($contactUsFormSubmission->name); ?> +
+email)) : ?> ++ = __d('cake_contact_us', 'Email: ') ?> + = $this->Html->link($contactUsFormSubmission->email, 'mailto:' . $contactUsFormSubmission->email); ?> +
+ + +subject)) : ?> ++ = __d('cake_contact_us', 'Subject: ') ?> + = h($contactUsFormSubmission->subject); ?> +
+ ++ = __d('cake_contact_us', 'Message: ') ?> + = h($contactUsFormSubmission->message); ?> +
+ diff --git a/templates/email/html/confirmation.php b/templates/email/html/confirmation.php new file mode 100644 index 0000000..2a5126d --- /dev/null +++ b/templates/email/html/confirmation.php @@ -0,0 +1,9 @@ ++ = __d('cake_contact_us', "Hi {0}", isset($contactUsFormSubmission->name) ? $contactUsFormSubmission->name : '') ?>, +
++ = __d('cake_contact_us', 'We have received your message. We will be in touch soon.') ?> +
++ = __d('cake_contact_us', 'Thank you') ?>, +
diff --git a/templates/email/text/backend.php b/templates/email/text/backend.php new file mode 100644 index 0000000..136ea08 --- /dev/null +++ b/templates/email/text/backend.php @@ -0,0 +1,25 @@ + += __d('cake_contact_us', "A contact us form submission was received at {0}", $contactUsFormSubmission->submitted_at) ?>, + + += __d('cake_contact_us', 'Name: ') ?>= h($contactUsFormSubmission->name); ?> + +email)) : ?> + = __d('cake_contact_us', 'Email: ') ?> + = $contactUsFormSubmission->email; ?> + + +subject)) : ?> + = __d('cake_contact_us', 'Subject: ') ?> + = h($contactUsFormSubmission->subject); ?> + + += __d('cake_contact_us', 'Message: ') ?> += h($contactUsFormSubmission->message); ?> diff --git a/templates/email/text/confirmation.php b/templates/email/text/confirmation.php new file mode 100644 index 0000000..5332911 --- /dev/null +++ b/templates/email/text/confirmation.php @@ -0,0 +1,17 @@ + += __d('cake_contact_us', "Hi {0}", isset($first_name) ? $first_name : '') ?>, + += __d('cake_contact_us','We have received your message. We will be in touch soon.') ?> + += __d('cake_contact_us', 'Thank you') ?>, + diff --git a/tests/Fixture/ContactUsFormSubmissionsFixture.php b/tests/Fixture/ContactUsFormSubmissionsFixture.php new file mode 100644 index 0000000..9b12016 --- /dev/null +++ b/tests/Fixture/ContactUsFormSubmissionsFixture.php @@ -0,0 +1,35 @@ +records = [ + [ + 'id' => '76fbe7fb-1949-4670-a3d2-c0b48eb98e8d', + 'submitted_at' => '2025-01-03 09:16:50', + 'client_ip' => 'Lorem ipsum dolor sit amet', + 'name' => 'Lorem ipsum dolor sit amet', + 'email' => 'Lorem ipsum dolor sit amet', + 'subject' => 'Lorem ipsum dolor sit amet', + 'message' => 'Lorem ipsum dolor sit amet, aliquet feugiat. Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget sollicitudin venenatis cum nullam, vivamus ut a sed, mollitia lectus. Nulla vestibulum massa neque ut et, id hendrerit sit, feugiat in taciti enim proin nibh, tempor dignissim, rhoncus duis vestibulum nunc mattis convallis.', + 'confirm_email_sent' => '2025-01-03 09:16:50', + 'backend_email_sent' => '2025-01-03 09:16:50', + ], + ]; + parent::init(); + } +} diff --git a/tests/TestCase/Controller/Component/ContactUsComponentTest.php b/tests/TestCase/Controller/Component/ContactUsComponentTest.php new file mode 100644 index 0000000..b1e1ba9 --- /dev/null +++ b/tests/TestCase/Controller/Component/ContactUsComponentTest.php @@ -0,0 +1,45 @@ +ContactUs = new ContactUsComponent($registry); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ContactUs); + + parent::tearDown(); + } +} diff --git a/tests/TestCase/Controller/ContactUsFormSubmissionsControllerTest.php b/tests/TestCase/Controller/ContactUsFormSubmissionsControllerTest.php new file mode 100644 index 0000000..39b310d --- /dev/null +++ b/tests/TestCase/Controller/ContactUsFormSubmissionsControllerTest.php @@ -0,0 +1,418 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeContactUs.ContactUsFormSubmissions', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $this->ContactUsFormSubmissions = $this->getTableLocator()->get('ContactUsFormSubmissions'); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ContactUsFormSubmissions); + + parent::tearDown(); + } + + /** + * Test index method + * + * Tests the index action with an unauthenticated user (not logged in) + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + } + + /** + * Test index method + * + * Tests the index action with a logged in user + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::index() + * @throws Exception + * + * @return void + */ + public function testIndexGetLoggedIn(): void + { + // $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'index', + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test view method + * + * Tests the view action with an unauthenticated user (not logged in) + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetUnauthenticated(): void + { + $id = 1; + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + '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 \CakeContactUs\Controller\ContactUsFormSubmissionsController::view() + * @throws Exception + * + * @return void + */ + public function testViewGetLoggedIn(): void + { + $id = 1; + // $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'view', + $id, + ]; + $this->get($url); + $this->assertResponseCode(200); + } + + /** + * Test add method + * + * Tests the add action with an unauthenticated user (not logged in) + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetUnauthenticated(): void + { + $cntBefore = $this->ContactUsFormSubmissions->find()->count(); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ContactUsFormSubmissions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests the add action with a logged in user + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::add() + * @throws Exception + * + * @return void + */ + public function testAddGetLoggedIn(): void + { + $cntBefore = $this->ContactUsFormSubmissions->find()->count(); + + // $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'add', + ]; + $this->get($url); + $this->assertResponseCode(200); + + $cntAfter = $this->ContactUsFormSubmissions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInSuccess(): void + { + $cntBefore = $this->ContactUsFormSubmissions->find()->count(); + + // $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'add', + ]; + $data = []; + $this->post($url, $data); + $this->assertResponseCode(302); + $this->assertRedirectContains('contactusformsubmissions/view'); + + $cntAfter = $this->ContactUsFormSubmissions->find()->count(); + $this->assertEquals($cntBefore + 1, $cntAfter); + } + + /** + * Test add method + * + * Tests a POST request to the add action with a logged in user + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::add() + * @throws Exception + * + * @return void + */ + public function testAddPostLoggedInFailure(): void + { + $cntBefore = $this->ContactUsFormSubmissions->find()->count(); + + // $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'add', + ]; + $data = []; + $this->post($url, $data); + $this->assertResponseCode(200); + + $cntAfter = $this->ContactUsFormSubmissions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test edit method + * + * Tests the edit action with an unauthenticated user (not logged in) + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetUnauthenticated(): void + { + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + '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 \CakeContactUs\Controller\ContactUsFormSubmissionsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditGetLoggedIn(): void + { + // $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + '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 \CakeContactUs\Controller\ContactUsFormSubmissionsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInSuccess(): void + { + // $this->loginUserByRole('admin'); + $id = 1; + $before = $this->ContactUsFormSubmissions->get($id); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'edit', + $id, + ]; + $data = [ + // test new data here + ]; + $this->put($url, $data); + + $this->assertResponseCode(302); + $this->assertRedirectContains('contactusformsubmissions/view'); + + $after = $this->ContactUsFormSubmissions->get($id); + // assert saved properly below + } + + /** + * Test edit method + * + * Tests a PUT request to the edit action with a logged in user + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::edit() + * @throws Exception + * + * @return void + */ + public function testEditPutLoggedInFailure(): void + { + // $this->loginUserByRole('admin'); + $id = 1; + $before = $this->ContactUsFormSubmissions->get($id); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'edit', + $id, + ]; + $data = []; + $this->put($url, $data); + $this->assertResponseCode(200); + $after = $this->ContactUsFormSubmissions->get($id); + + // assert save failed below + } + + /** + * Test delete method + * + * Tests the delete action with an unauthenticated user (not logged in) + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteUnauthenticated(): void + { + $cntBefore = $this->ContactUsFormSubmissions->find()->count(); + + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('login'); + + $cntAfter = $this->ContactUsFormSubmissions->find()->count(); + $this->assertEquals($cntBefore, $cntAfter); + } + + /** + * Test delete method + * + * Tests the delete action with a logged in user + * + * @uses \CakeContactUs\Controller\ContactUsFormSubmissionsController::delete() + * @throws Exception + * + * @return void + */ + public function testDeleteLoggedIn(): void + { + $cntBefore = $this->ContactUsFormSubmissions->find()->count(); + + // $this->loginUserByRole('admin'); + $url = [ + 'plugin' => 'CakeContactUs', + 'controller' => 'ContactUsFormSubmissions', + 'action' => 'delete', + 1, + ]; + $this->delete($url); + $this->assertResponseCode(302); + $this->assertRedirectContains('contactusformsubmissions'); + + $cntAfter = $this->ContactUsFormSubmissions->find()->count(); + $this->assertEquals($cntBefore - 1, $cntAfter); + } +} diff --git a/tests/TestCase/Model/Table/ContactUsFormSubmissionsTableTest.php b/tests/TestCase/Model/Table/ContactUsFormSubmissionsTableTest.php new file mode 100644 index 0000000..90d4dcd --- /dev/null +++ b/tests/TestCase/Model/Table/ContactUsFormSubmissionsTableTest.php @@ -0,0 +1,91 @@ + + */ + protected array $fixtures = [ + 'plugin.CakeContactUs.ContactUsFormSubmissions', + ]; + + /** + * setUp method + * + * @return void + */ + protected function setUp(): void + { + parent::setUp(); + $config = $this->getTableLocator()->exists('ContactUsFormSubmissions') ? [] : ['className' => ContactUsFormSubmissionsTable::class]; + $this->ContactUsFormSubmissions = $this->getTableLocator()->get('ContactUsFormSubmissions', $config); + } + + /** + * tearDown method + * + * @return void + */ + protected function tearDown(): void + { + unset($this->ContactUsFormSubmissions); + + parent::tearDown(); + } + + /** + * TestInitialize method + * + * @return void + * @uses \CakeContactUs\Model\Table\ContactUsFormSubmissionsTable::initialize() + */ + public function testInitialize(): void + { + // verify all associations loaded + $expectedAssociations = []; + $associations = $this->ContactUsFormSubmissions->associations(); + + $this->assertCount(count($expectedAssociations), $associations); + foreach ($expectedAssociations as $expectedAssociation) { + $this->assertTrue($this->ContactUsFormSubmissions->hasAssociation($expectedAssociation)); + } + + // verify all behaviors loaded + $expectedBehaviors = []; + $behaviors = $this->ContactUsFormSubmissions->behaviors(); + + $this->assertCount(count($expectedBehaviors), $behaviors); + foreach ($expectedBehaviors as $expectedBehavior) { + $this->assertTrue($this->ContactUsFormSubmissions->hasBehavior($expectedBehavior)); + } + } + + /** + * Test validationDefault method + * + * @return void + * @uses \CakeContactUs\Model\Table\ContactUsFormSubmissionsTable::validationDefault() + */ + public function testValidationDefault(): void + { + $this->markTestIncomplete('Not implemented yet.'); + } +} diff --git a/tests/bootstrap.php b/tests/bootstrap.php new file mode 100644 index 0000000..3437b66 --- /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..ec83b63 --- /dev/null +++ b/tests/schema.sql @@ -0,0 +1 @@ +-- Test database schema for CakeContactUs diff --git a/webroot/.gitkeep b/webroot/.gitkeep new file mode 100644 index 0000000..e69de29