summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/tickets/tests/Ticket700TestCase.php
blob: 0366c2fcbd15a905eaf1144fe4ff53274c4db3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
class Ticket700TestCase extends PradoGenericSeleniumTest
{
	function test()
	{
		// page: Home
		$this->open('tickets/index700.php');
		$this->clickAndWait('ctl0_Logout');
		$this->clickAndWait('pageHome');
		$this->assertTitle("Home");
		$this->assertTextPresent('|Param1: Set at app config|');
		$this->assertTextPresent('|Param2: Set at root|');
		$this->assertTextPresent('|Param3: default 3|');
		$this->assertTextPresent('|Param4: default 4|');
		$this->assertTextPresent('|Param5: Set at root|');

		// page: admin.Home
		$this->clickAndWait('pageAdminHome');
		$this->assertTitle('UserLogin');
		$this->type('ctl0_Main_Username','AdminUser');
		$this->type('ctl0_Main_Password','demo');
		$this->clickAndWait('ctl0_Main_LoginButton');
		$this->clickAndWait('pageAdminHome');
		$this->assertTitle('admin.Home');
		$this->assertTextPresent('|Param1: Set at app config|');
		$this->assertTextPresent('|Param2: Set at admin|');
		$this->assertTextPresent('|Param3: Set at admin|');
		$this->assertTextPresent('|Param4: Set at app config|');
		$this->assertTextPresent('|Param5: Set at app config|');

		// page: admin.Home2
		$this->clickAndWait('pageAdminHome2');
		$this->assertTitle('admin.Home2');
		$this->clickAndWait('ctl0_Logout');
		$this->clickAndWait('pageAdminHome2');
		$this->assertTitle('admin.Home2');

		// page: admin.users.Home
		$this->clickAndWait('pageAdminUsersHome');
		$this->assertTitle('UserLogin');
		$this->type('ctl0_Main_Username','NormalUser');
		$this->type('ctl0_Main_Password','demo');
		$this->clickAndWait('ctl0_Main_LoginButton');
		$this->clickAndWait('pageAdminUsersHome');
		$this->assertTitle('UserLogin');
		$this->type('ctl0_Main_Username','AdminUser');
		$this->type('ctl0_Main_Password','demo');
		$this->clickAndWait('ctl0_Main_LoginButton');
		$this->clickAndWait('pageAdminUsersHome');
		$this->assertTitle('admin.users.Home');
		$this->assertTextPresent('|Param1: Set at admin|');
		$this->assertTextPresent('|Param2: Set at admin.users|');
		$this->assertTextPresent('|Param3: default 3|');
		$this->assertTextPresent('|Param4: Set at admin|');
		$this->assertTextPresent('|Param5: Set at app config|');

		// page: admin.users.Home2
		$this->clickAndWait('pageAdminUsersHome2');
		$this->assertTitle('admin.users.Home2');

		// page: content.Home
		$this->clickAndWait('pageContentHome');
		$this->assertTitle('content.Home');
		$this->assertTextPresent('|Param1: Set at app config|');
		$this->assertTextPresent('|Param2: Set at root|');
		$this->assertTextPresent('|Param3: default 3|');
		$this->assertTextPresent('|Param4: default 4|');
		$this->assertTextPresent('|Param5: Set at app config|');
		$this->clickAndWait('ctl0_Logout');
	}
}