summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/tests/ActiveCheckBoxListTestCase.php
blob: af7ea1f01fc7e7335a51baa8c0429128c619b09c (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
<?php

class ActiveCheckBoxListTestCase extends SeleniumTestCase
{
	function test()
	{
		$this->open("active-controls/index.php?page=TActiveCheckBoxListTest");
		$this->verifyTextPresent("TActiveCheckBoxList Test Case");
		
		$this->assertText("label1", "Label 1");
		
		$this->click("button1");
		$this->pause(500);
		$this->assertCheckBoxes(array(1,2,3));
		
		$this->click("button2");
		$this->pause(500);
		$this->assertCheckBoxes(array());
		
		
		$this->click("button3");
		$this->pause(500);
		$this->assertCheckBoxes(array(0));
		
		
		$this->click("button4");
		$this->pause(500);
		$this->assertCheckBoxes(array(4));
		
		
		$this->click("button5");
		$this->pause(500);
		$this->assertCheckBoxes(array(1,4));
		
		$this->click("list1_c2");
		$this->pause(500);
		$this->assertText("label1", "Selection: value 2, value 3, value 5");		

		$this->click("list1_c2");
		$this->pause(500);
		$this->assertText("label1", "Selection: value 2, value 5");			

	}
	
	function assertCheckBoxes($checks, $total = 5)
	{
		for($i = 0; $i < $total; $i++)
		{
			if(in_array($i, $checks))
				$this->assertChecked("list1_c{$i}");
			else
				$this->assertNotChecked("list1_c{$i}");
		}
	}
}

?>