summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/validators/tests/DatePickerTestCase.php
blob: ab68a6192dbe43303371b801c48bde6dd1da267a (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
<?php

class DatePickerTestCase extends PradoGenericSelenium2Test
{
	function test()
	{
		$year=2012;
		$year2=2013;
		$base = "ctl0_Content_";
		$this->url("validators/index.php?page=DatePicker");
		$this->assertContains("Date Picker validation Test", $this->source());
		$this->assertNotVisible("{$base}validator1");
		$this->assertNotVisible("{$base}validator2");
		$this->assertNotVisible("{$base}validator4");
		$this->assertNotVisible("{$base}validator5");
		$this->assertNotVisible("{$base}validator6");
		$this->assertNotVisible("{$base}validator8");

		$this->byId("{$base}submit1")->click();
		$this->assertVisible("{$base}validator1");
		$this->assertNotVisible("{$base}validator2");

		//the range validator is visible because the date is a drop down list
		//thus has default value != ""
		$this->assertVisible("{$base}validator4");
		$this->assertVisible("{$base}validator5");
		$this->assertNotVisible("{$base}validator6");
		$this->assertVisible("{$base}validator8");

		$this->type("{$base}picker1", "13/4/$year");
		$this->select("{$base}picker2_month", "9");
		$this->select("{$base}picker2_day", "10");
		$this->select("{$base}picker2_year", "$year");
		$this->pause(250);
		$this->type("{$base}picker3", "14/4/$year");
		$this->pause(250);
		$this->type("{$base}picker4", "7/4/$year");
		$this->select("{$base}picker5_day", "6");
		$this->select("{$base}picker5_month", "3");
		$this->select("{$base}picker5_year", "$year2");
		$this->select("{$base}picker6_month", "3");
		$this->select("{$base}picker6_year", "$year2");
		$this->select("{$base}picker6_day", "5");
		$this->byId("{$base}submit1")->click();
		$this->pause(500);

		$this->assertNotVisible("{$base}validator1");
		$this->assertVisible("{$base}validator2");
		$this->assertNotVisible("{$base}validator4");
		$this->assertNotVisible("{$base}validator5");
		$this->assertVisible("{$base}validator6");
		$this->assertVisible("{$base}validator8");

		$this->type("{$base}picker1", "20/4/$year2");
		$this->type("{$base}picker4", "29/4/$year");
		$this->select("{$base}picker6_day", "10");

		$this->byId("{$base}submit1")->click();

		$this->assertNotVisible("{$base}validator1");
		$this->assertNotVisible("{$base}validator2");
		$this->assertNotVisible("{$base}validator4");
		$this->assertNotVisible("{$base}validator5");
		$this->assertNotVisible("{$base}validator6");
		$this->assertNotVisible("{$base}validator8");
	}

}