summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests
diff options
context:
space:
mode:
authorxue <>2006-04-26 21:18:01 +0000
committerxue <>2006-04-26 21:18:01 +0000
commit8ab196ce6c2d5de323bdd8ebcc11a73814c0cdca (patch)
treee77b1306648d03920439290bb8f3e27821410804 /tests/FunctionalTests
parent5ba6cd4be568f686d890835a77586077cde1a943 (diff)
Merge from 3.0 branch till 971.
Diffstat (limited to 'tests/FunctionalTests')
-rw-r--r--tests/FunctionalTests/validators/tests/DataTypeValidatorTestCase.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/FunctionalTests/validators/tests/DataTypeValidatorTestCase.php b/tests/FunctionalTests/validators/tests/DataTypeValidatorTestCase.php
new file mode 100644
index 00000000..1ca3de5d
--- /dev/null
+++ b/tests/FunctionalTests/validators/tests/DataTypeValidatorTestCase.php
@@ -0,0 +1,49 @@
+<?php
+/*
+ * Created on 25/04/2006
+ */
+
+class DataTypeValidatorTestCase extends SeleniumTestCase
+{
+ function test()
+ {
+ $base = "ctl0_Content_";
+ $this->open("validators/index.php?page=DataTypeValidator", "");
+ $this->verifyTextPresent("Data Type Validator Tests", "");
+ $this->clickAndWait("//input[@type='submit' and @value='submit!']", "");
+
+ $this->assertNotVisible("{$base}validator1");
+ $this->assertNotVisible("{$base}validator2");
+ $this->assertNotVisible("{$base}validator3");
+
+ $this->type("{$base}textbox1", "a");
+ $this->type("{$base}textbox2", "b");
+ $this->type("{$base}textbox3", "c");
+ $this->click("//input[@type='submit' and @value='submit!']", "");
+
+ $this->assertVisible("{$base}validator1");
+ $this->assertVisible("{$base}validator2");
+ $this->assertVisible("{$base}validator3");
+
+ $this->type("{$base}textbox1", "12");
+ $this->type("{$base}textbox2", "12.5");
+ $this->type("{$base}textbox3", "2/10/2005");
+ $this->clickAndWait("//input[@type='submit' and @value='submit!']", "");
+
+ $this->assertNotVisible("{$base}validator1");
+ $this->assertNotVisible("{$base}validator2");
+ $this->assertNotVisible("{$base}validator3");
+
+ $this->type("{$base}textbox1", "12.2");
+ $this->type("{$base}textbox2", "-12.5");
+ $this->type("{$base}textbox3", "2/13/2005");
+ $this->click("//input[@type='submit' and @value='submit!']", "");
+
+ $this->assertVisible("{$base}validator1");
+ $this->assertNotVisible("{$base}validator2");
+ $this->assertVisible("{$base}validator3");
+ }
+
+}
+
+?>