/reference-projects/ui-examples/src/test/groovy/org.telluriumsource.test/FormExampleTestCase.java

http://aost.googlecode.com/ · Java · 114 lines · 88 code · 18 blank · 8 comment · 1 complexity · f10c1720c37a5402e0734119370c02fa MD5 · raw file

  1. package org.telluriumsource.test;
  2. import org.telluriumsource.entity.UiByTagResponse;
  3. import org.telluriumsource.module.FormExampleModule;
  4. import org.telluriumsource.test.java.TelluriumMockTestNGTestCase;
  5. import org.testng.annotations.*;
  6. import java.util.HashMap;
  7. import java.util.Map;
  8. import static org.testng.AssertJUnit.assertNotNull;
  9. /**
  10. * @author Jian Fang (John.Jian.Fang@gmail.com)
  11. *
  12. * Date: Jan 3, 2010
  13. *
  14. */
  15. public class FormExampleTestCase extends TelluriumMockTestNGTestCase {
  16. private static FormExampleModule fem;
  17. @BeforeClass
  18. public static void initUi() {
  19. registerHtmlBody("FormExample");
  20. fem = new FormExampleModule();
  21. fem.defineUi();
  22. useTelluriumEngine(true);
  23. useTrace(true);
  24. useEngineLog(true);
  25. }
  26. @DataProvider(name = "config-provider")
  27. public Object[][] configParameters() {
  28. // boolean useSelector, boolean useCache, boolean useTeApi
  29. return new Object[][]{
  30. new Object[]{true, true, true},
  31. new Object[]{true, true, false},
  32. new Object[]{true, false, true},
  33. new Object[]{true, false, false},
  34. new Object[]{false, true, true},
  35. new Object[]{false, true, false},
  36. new Object[]{false, false, true},
  37. new Object[]{false, false, false}
  38. };
  39. }
  40. @BeforeMethod
  41. public void connectToLocal() {
  42. connect("FormExample");
  43. }
  44. @Test
  45. public void testStringifyUiModule(){
  46. String json = fem.toString("Form");
  47. System.out.println(json);
  48. }
  49. @Test
  50. public void testDiagnose(){
  51. fem.diagnose("Form.Username.Input");
  52. }
  53. @Test
  54. public void testValidateUiModule(){
  55. fem.validate("Form");
  56. }
  57. @Test
  58. public void testGetCSS(){
  59. String[] css = fem.getCSS("Form.Username.Input", "background-color");
  60. assertNotNull(css);
  61. System.out.println("Background color for Form.Username.Input: " + css[0]);
  62. }
  63. @Test
  64. public void testGetHTMLSource(){
  65. fem.getHTMLSource("Form");
  66. }
  67. @Test
  68. public void testShowUi(){
  69. // fem.show("Form", 10000);
  70. fem.startShow("Form");
  71. fem.endShow("Form");
  72. }
  73. @Test
  74. public void testGetUiByTag(){
  75. Map filter = new HashMap();
  76. filter.put("type", "text");
  77. UiByTagResponse resp = fem.getUiByTag("input", filter);
  78. String[] teuids = resp.getTids();
  79. assertNotNull(teuids);
  80. for(String teuid: teuids){
  81. fem.keyType(teuid, "Tellurium Source");
  82. }
  83. fem.removeMarkedUids("input");
  84. }
  85. @Test(dataProvider = "config-provider")
  86. @Parameters({"useSelector", "useCache", "useTeApi"})
  87. public void testLogon(boolean useSelector, boolean useCache, boolean useTeApi) {
  88. useCssSelector(useSelector);
  89. useTelluriumEngine(useCache);
  90. fem.logon("test", "test");
  91. }
  92. @AfterClass
  93. public static void tearDown(){
  94. showTrace();
  95. }
  96. }