Merge pull request #8118 from scardinius/crm-18108
[civicrm-core.git] / tests / phpunit / WebTest / Admin / Form / ScheduleReminderTest.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2016 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27 require_once 'CiviTest/CiviSeleniumTestCase.php';
28
29 /**
30 * Class WebTest_Admin_Form_ScheduleReminderTest
31 */
32 class WebTest_Admin_Form_ScheduleReminderTest extends CiviSeleniumTestCase {
33
34 protected function setUp() {
35 parent::setUp();
36 }
37
38 public function testScheduleReminder() {
39 $this->webtestLogin();
40
41 // Add new Schedule Reminder
42 $this->openCiviPage("admin/scheduleReminders", "action=add&reset=1", '_qf_ScheduleReminders_cancel-bottom');
43
44 // Fill Title
45 $title = 'Title' . substr(sha1(rand()), 0, 4);
46 $htmlMessage = "Schedule Reminder Test";
47 $this->type('title', $title);
48
49 // Fill Entity Details
50 $this->click('entity_0');
51 $this->select('entity_0', 'label=Activity');
52 $this->addSelection('entity_1', 'label=Meeting');
53 $this->addSelection('entity_2', 'label=Completed');
54 $this->select('start_action_offset', 'label=1');
55 $this->select('start_action_condition', 'label=after');
56 $this->click('is_repeat');
57 $this->select('repetition_frequency_interval', 'label=1');
58 $this->click('recipient');
59 $this->select('recipient', 'label=Activity Assignees');
60
61 // Fill Subject
62 $subject = 'subject' . substr(sha1(rand()), 0, 4);
63 $this->type('subject', $subject);
64 $this->waitForElementPresent("html_message");
65 $this->fillRichTextField("html_message", $htmlMessage);
66
67 //click on save
68 $this->click('_qf_ScheduleReminders_next-bottom');
69 $this->waitForElementPresent("xpath=//div[@id='reminder']/div/table/tbody//tr/td[1]/div[text()='{$title}']/../../td[7]/span/a[text()='Edit']");
70 $this->click("xpath=//div[@id='reminder']/div/table/tbody//tr/td[1]/div[text()='{$title}']/../../td[7]/span/a[text()='Edit']");
71 $this->waitForElementPresent('_qf_ScheduleReminders_cancel-bottom');
72
73 $this->assertEquals($title, $this->getValue('id=title'));
74 $this->removeSelection('entity_1', 'label=Meeting');
75 $this->addSelection('entity_1', 'label=Phone Call');
76 $this->addSelection('entity_1', 'label=Interview');
77 $this->removeSelection('entity_2', 'label=Completed');
78 $this->addSelection('entity_2', 'label=Scheduled');
79 $this->addSelection('entity_2', 'label=Completed');
80
81 $this->assertEquals('1', $this->getSelectedValue('id=start_action_offset'));
82 $this->assertEquals('hour', $this->getSelectedValue('id=start_action_unit'));
83 $this->assertEquals('after', $this->getSelectedValue('id=start_action_condition'));
84 $this->assertEquals('activity_date_time', $this->getSelectedValue('id=start_action_date'));
85
86 $this->assertChecked('is_repeat');
87
88 $this->assertEquals('1', $this->getSelectedValue('id=recipient'));
89 $this->assertChecked('is_active');
90 }
91
92 }