-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refine testcases and move some ztl testcases to zats
- Loading branch information
1 parent
1a6ff5a
commit 5171b34
Showing
11 changed files
with
507 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
zktest/src/test/java/org/zkoss/zktest/zats/test2/B30_1898094Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* B30_1898094Test.java | ||
Purpose: | ||
Description: | ||
History: | ||
Wed Dec 04 15:08:13 CST 2024, Created by jamson | ||
Copyright (C) 2024 Potix Corporation. All Rights Reserved. | ||
*/ | ||
package org.zkoss.zktest.zats.test2; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertFalse; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.util.Collections; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
import org.openqa.selenium.chrome.ChromeOptions; | ||
|
||
import org.zkoss.test.webdriver.ExternalZkXml; | ||
import org.zkoss.test.webdriver.ForkJVMTestOnly; | ||
import org.zkoss.test.webdriver.WebDriverTestCase; | ||
import org.zkoss.test.webdriver.ztl.JQuery; | ||
|
||
@ForkJVMTestOnly | ||
public class B30_1898094Test extends WebDriverTestCase { | ||
|
||
@RegisterExtension | ||
public static final ExternalZkXml CONFIG = new ExternalZkXml("/test2/enable-tablet-ui-zk.xml"); | ||
|
||
@Override | ||
protected ChromeOptions getWebDriverOptions() { | ||
return super.getWebDriverOptions() | ||
.setExperimentalOption("mobileEmulation", Collections.singletonMap("deviceName", "iPad")); | ||
} | ||
|
||
@Test | ||
public void test() { | ||
connect(); | ||
|
||
sleep(1000); | ||
|
||
//Look for a textbox focused | ||
JQuery b = jq("@textbox:focus"); | ||
|
||
//Look for a button focused | ||
JQuery r = jq("@button:focus"); | ||
|
||
//Textbox focused Exists? | ||
boolean bb = b.exists(); | ||
|
||
//Button focused Exists? | ||
boolean br = r.exists(); | ||
|
||
//Assert | ||
assertTrue(bb); | ||
assertFalse(br); | ||
} | ||
} |
57 changes: 57 additions & 0 deletions
57
zktest/src/test/java/org/zkoss/zktest/zats/test2/B36_2807475Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* B36_2807475Test.java | ||
Purpose: | ||
Description: | ||
History: | ||
Wed Dec 04 15:14:53 CST 2024, Created by jamson | ||
Copyright (C) 2024 Potix Corporation. All Rights Reserved. | ||
*/ | ||
package org.zkoss.zktest.zats.test2; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.util.Collections; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
import org.openqa.selenium.chrome.ChromeOptions; | ||
|
||
import org.zkoss.test.webdriver.ExternalZkXml; | ||
import org.zkoss.test.webdriver.ForkJVMTestOnly; | ||
import org.zkoss.test.webdriver.WebDriverTestCase; | ||
|
||
@ForkJVMTestOnly | ||
public class B36_2807475Test extends WebDriverTestCase { | ||
|
||
@RegisterExtension | ||
public static final ExternalZkXml CONFIG = new ExternalZkXml("/test2/enable-tablet-ui-zk.xml"); | ||
|
||
@Override | ||
protected ChromeOptions getWebDriverOptions() { | ||
return super.getWebDriverOptions() | ||
.setExperimentalOption("mobileEmulation", Collections.singletonMap("deviceName", "iPad")); | ||
} | ||
|
||
@Test | ||
public void test() { | ||
connect(); | ||
|
||
// Click on menu popup | ||
click(jq("$menubar")); | ||
waitResponse(); | ||
|
||
// Click textbox | ||
click(jq("$demo1")); | ||
waitResponse(); | ||
|
||
// Verify that the popup textbox has focus | ||
assertTrue(jq("$demo1:focus").exists(), "The textbox should have focus"); | ||
|
||
// Verify that the value is updated | ||
assertEquals("2", jq("$demo2").val(), "The text should be selected"); | ||
} | ||
} |
47 changes: 47 additions & 0 deletions
47
zktest/src/test/java/org/zkoss/zktest/zats/test2/B36_2973306Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* B36_2973306Test.java | ||
Purpose: | ||
Description: | ||
History: | ||
Fri Nov 29 19:19:41 CST 2024, Created by jamson | ||
Copyright (C) 2024 Potix Corporation. All Rights Reserved. | ||
*/ | ||
package org.zkoss.zktest.zats.test2; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
import java.util.Collections; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
import org.openqa.selenium.chrome.ChromeOptions; | ||
|
||
import org.zkoss.test.webdriver.ExternalZkXml; | ||
import org.zkoss.test.webdriver.ForkJVMTestOnly; | ||
import org.zkoss.test.webdriver.WebDriverTestCase; | ||
import org.zkoss.test.webdriver.ztl.Widget; | ||
|
||
@ForkJVMTestOnly | ||
public class B36_2973306Test extends WebDriverTestCase { | ||
|
||
@RegisterExtension | ||
public static final ExternalZkXml CONFIG = new ExternalZkXml("/test2/enable-tablet-ui-zk.xml"); | ||
|
||
@Override | ||
protected ChromeOptions getWebDriverOptions() { | ||
return super.getWebDriverOptions() | ||
.setExperimentalOption("mobileEmulation", Collections.singletonMap("deviceName", "Nexus 7")); | ||
} | ||
|
||
@Test | ||
public void test() { | ||
connect(); | ||
Widget detail = jq("$detail").toWidget(); | ||
click(detail.$n("icon")); | ||
waitResponse(); | ||
assertEquals(1, jq(detail.$n("fake")).find(">td").length()); | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
zktest/src/test/java/org/zkoss/zktest/zats/test2/B50_2928109Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* B50_2928109Test.java | ||
Purpose: | ||
Description: | ||
History: | ||
Wed Dec 04 15:22:47 CST 2024, Created by jamson | ||
Copyright (C) 2024 Potix Corporation. All Rights Reserved. | ||
*/ | ||
package org.zkoss.zktest.zats.test2; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.util.Collections; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
import org.openqa.selenium.chrome.ChromeOptions; | ||
|
||
import org.zkoss.test.webdriver.ExternalZkXml; | ||
import org.zkoss.test.webdriver.ForkJVMTestOnly; | ||
import org.zkoss.test.webdriver.WebDriverTestCase; | ||
|
||
@ForkJVMTestOnly | ||
public class B50_2928109Test extends WebDriverTestCase { | ||
|
||
@RegisterExtension | ||
public static final ExternalZkXml CONFIG = new ExternalZkXml("/test2/enable-tablet-ui-zk.xml"); | ||
|
||
@Override | ||
protected ChromeOptions getWebDriverOptions() { | ||
return super.getWebDriverOptions() | ||
.setExperimentalOption("mobileEmulation", Collections.singletonMap("deviceName", "iPad")); | ||
} | ||
|
||
@Test | ||
public void test() { | ||
connect(); | ||
assertTrue(jq(jq(".z-window-embedded").toWidget().$n("cave")).height() < 24); | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
zktest/src/test/java/org/zkoss/zktest/zats/test2/B50_ZK_580Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* B50_ZK_580Test.java | ||
Purpose: | ||
Description: | ||
History: | ||
Fri Nov 29 16:29:59 CST 2024, Created by jamson | ||
Copyright (C) 2024 Potix Corporation. All Rights Reserved. | ||
*/ | ||
package org.zkoss.zktest.zats.test2; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertNotEquals; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import org.zkoss.test.webdriver.FirefoxWebDriverTestCase; | ||
import org.zkoss.test.webdriver.ztl.JQuery; | ||
|
||
public class B50_ZK_580Test extends FirefoxWebDriverTestCase { | ||
|
||
@Test | ||
public void test() { | ||
connect(); | ||
JQuery textbox = jq(".z-textbox"); | ||
clickAt(textbox, -40, 5); | ||
waitResponse(); | ||
String originCursorPosition = zk(textbox).eval("getSelectionRange()[0]"); | ||
|
||
mouseOver(jq(".z-label")); | ||
waitResponse(); | ||
|
||
clickAt(textbox, -10, 5); | ||
waitResponse(); | ||
assertNotEquals(originCursorPosition, zk(textbox).eval("getSelectionRange()[0]")); | ||
} | ||
} |
81 changes: 81 additions & 0 deletions
81
zktest/src/test/java/org/zkoss/zktest/zats/test2/B60_ZK_765Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* B60_ZK_765Test.java | ||
Purpose: | ||
Description: | ||
History: | ||
Wed Dec 04 14:55:30 CST 2024, Created by jamson | ||
Copyright (C) 2024 Potix Corporation. All Rights Reserved. | ||
*/ | ||
package org.zkoss.zktest.zats.test2; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.util.Collections; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
import org.openqa.selenium.chrome.ChromeOptions; | ||
|
||
import org.zkoss.test.webdriver.ExternalZkXml; | ||
import org.zkoss.test.webdriver.ForkJVMTestOnly; | ||
import org.zkoss.test.webdriver.WebDriverTestCase; | ||
import org.zkoss.test.webdriver.ztl.JQuery; | ||
import org.zkoss.test.webdriver.ztl.Widget; | ||
|
||
@ForkJVMTestOnly | ||
public class B60_ZK_765Test extends WebDriverTestCase { | ||
|
||
@RegisterExtension | ||
public static final ExternalZkXml CONFIG = new ExternalZkXml("/test2/enable-tablet-ui-zk.xml"); | ||
|
||
@Override | ||
protected ChromeOptions getWebDriverOptions() { | ||
return super.getWebDriverOptions() | ||
.setExperimentalOption("mobileEmulation", Collections.singletonMap("deviceName", "iPad")); | ||
} | ||
|
||
@Test | ||
public void test() { | ||
connect(); | ||
|
||
Widget btnOne = jq("@button:eq(0)").toWidget(), | ||
btnTwo = jq("@button:eq(1)").toWidget(), | ||
btnThree = jq("@button:eq(2)").toWidget(); | ||
|
||
clickAndWait(btnTwo); | ||
assertTrue(jq("$msg:contains(selected index is undefined, no selection)").exists() | ||
|| jq("$msg:contains(selected index is -1)").exists(), | ||
"message should be 'selected index is undefined, no selection or ... index is -1 ...'"); | ||
clickAndWait(jq(".z-listitem:contains(Item 1)")); | ||
clickAndWait(btnTwo); | ||
assertTrue(jq("$msg:contains(selected index is 1, widget selected is true)").exists(), "message should be 'selected index is 1, widget selected is true'"); | ||
clickAndWait(btnOne); | ||
clickAndWait(btnTwo); | ||
assertTrue(jq("$msg:contains(selected index is 1, widget selected is true)").exists(), "message should be 'selected index is 1, widget selected is true'"); | ||
|
||
waitResponse(); | ||
driver.navigate().refresh(); | ||
waitResponse(); | ||
|
||
clickAndWait(btnThree); | ||
assertTrue(jq("$msg:contains(selected no selection)").exists(), "message should be 'selected no selection'"); | ||
clickAndWait(jq(".z-listitem:contains(Item 1)")); | ||
clickAndWait(btnThree); | ||
assertTrue(jq("$msg:contains(selected index is 1)").exists(), "message should be 'selected index is 1'"); | ||
clickAndWait(btnOne); | ||
clickAndWait(btnThree); | ||
assertTrue(jq("$msg:contains(selected index is 1)").exists(), "message should be 'selected index is 1'"); | ||
} | ||
|
||
private void clickAndWait(Widget wgt) { | ||
click(wgt); | ||
waitResponse(); | ||
} | ||
|
||
private void clickAndWait(JQuery jq) { | ||
clickAndWait(jq.toWidget()); | ||
} | ||
} |
Oops, something went wrong.