/IronPython_Main/Languages/IronPython/Samples/tests/Direct3D/WinClass.cs

# · C# · 230 lines · 175 code · 28 blank · 27 comment · 0 complexity · 71c5b0e6a52313525347386a70b701d3 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Apache License, Version 2.0, please send an email to
  8. * ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Apache License, Version 2.0.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using System;
  16. using System.Collections.Generic;
  17. using System.Text;
  18. using System.Diagnostics;
  19. using MS.Internal.Mita.Foundation.Controls;
  20. using MS.Internal.Mita.Foundation;
  21. using MS.Internal.Mita.Foundation.Waiters;
  22. using System.Threading;
  23. namespace TestDirect3D
  24. {
  25. class WinClass
  26. {
  27. public WinClass(string cmdPara)
  28. {
  29. this.CMD = cmdPara;
  30. }
  31. public void Test_Checkpoint1()
  32. {
  33. //checkpoint1
  34. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  35. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  36. Process.Start(CMD, ".\\checkpoints\\checkpoint1.py");
  37. wait1.Wait(20000);
  38. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  39. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  40. Button buttonClose = new Button(uiClose);
  41. Thread.Sleep(3000);
  42. buttonClose.Click();
  43. }
  44. public void Test_Checkpoint2()
  45. {
  46. //checkpoint1
  47. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  48. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  49. Process.Start(CMD, ".\\checkpoints\\checkpoint2.py");
  50. wait1.Wait(20000);
  51. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  52. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  53. Button buttonClose = new Button(uiClose);
  54. Thread.Sleep(2000);
  55. buttonClose.Click();
  56. }
  57. public void Test_Checkpoint3()
  58. {
  59. //checkpoint1
  60. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  61. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  62. Process.Start(CMD, ".\\checkpoints\\checkpoint3.py");
  63. wait1.Wait(20000);
  64. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  65. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  66. Button buttonClose = new Button(uiClose);
  67. Thread.Sleep(3000);
  68. buttonClose.Click();
  69. }
  70. public void Test_Checkpoint4()
  71. {
  72. //checkpoint1
  73. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  74. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  75. Process.Start(CMD, ".\\checkpoints\\checkpoint4.py");
  76. wait1.Wait(20000);
  77. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  78. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  79. Button buttonClose = new Button(uiClose);
  80. Thread.Sleep(3000);
  81. buttonClose.Click();
  82. }
  83. public void Test_Checkpoint5()
  84. {
  85. //checkpoint1
  86. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  87. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  88. Process.Start(CMD, ".\\checkpoints\\checkpoint5.py");
  89. wait1.Wait(20000);
  90. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  91. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  92. Button buttonClose = new Button(uiClose);
  93. Thread.Sleep(3000);
  94. buttonClose.Click();
  95. }
  96. public void Test_Checkpoint6()
  97. {
  98. //checkpoint1
  99. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  100. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  101. Process.Start(CMD, ".\\checkpoints\\checkpoint6.py");
  102. wait1.Wait(20000);
  103. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  104. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  105. Button buttonClose = new Button(uiClose);
  106. Thread.Sleep(3000);
  107. buttonClose.Click();
  108. }
  109. public void Test_demo1()
  110. {
  111. //checkpoint1
  112. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  113. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  114. Process.Start(CMD, ".\\demo1.py");
  115. wait1.Wait(20000);
  116. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  117. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  118. Button buttonClose = new Button(uiClose);
  119. Thread.Sleep(5000);
  120. buttonClose.Click();
  121. }
  122. public void Test_demo2()
  123. {
  124. //checkpoint1
  125. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  126. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  127. Process.Start(CMD, ".\\demo2.py");
  128. wait1.Wait(20000);
  129. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  130. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  131. Button buttonClose = new Button(uiClose);
  132. Thread.Sleep(5000);
  133. buttonClose.Click();
  134. }
  135. public void Test_demo3()
  136. {
  137. //checkpoint1
  138. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  139. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  140. Process.Start(CMD, ".\\demo3.py");
  141. wait1.Wait(20000);
  142. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  143. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  144. Button buttonClose = new Button(uiClose);
  145. Thread.Sleep(5000);
  146. buttonClose.Click();
  147. }
  148. public void Test_demo4()
  149. {
  150. //checkpoint1
  151. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  152. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  153. Process.Start(CMD, ".\\demo4.py");
  154. wait1.Wait(20000);
  155. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  156. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  157. Button buttonClose = new Button(uiClose);
  158. Thread.Sleep(5000);
  159. buttonClose.Click();
  160. }
  161. public void Test_GravityDemo()
  162. {
  163. //checkpoint1
  164. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  165. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  166. Process.Start(CMD, ".\\GravityDemo.py");
  167. wait1.Wait(20000);
  168. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  169. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  170. Button buttonClose = new Button(uiClose);
  171. Thread.Sleep(5000);
  172. buttonClose.Click();
  173. }
  174. public void Test_MeshDemo()
  175. {
  176. //checkpoint1
  177. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  178. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  179. Process.Start(CMD, ".\\meshdemo.py");
  180. wait1.Wait(20000);
  181. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  182. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  183. Button buttonClose = new Button(uiClose);
  184. Thread.Sleep(5000);
  185. buttonClose.Click();
  186. }
  187. public void Test_Tutorial()
  188. {
  189. //checkpoint1
  190. UICondition uIcondition = UICondition.Create("@ControlType=Window and @Name='IronPython Direct3D'", new object[0]);
  191. WindowOpenedWaiter wait1 = new WindowOpenedWaiter(uIcondition);
  192. Process.Start(CMD, ".\\tutorial.py");
  193. wait1.Wait(20000);
  194. UIObject ui = UIObject.Root.Children.Find(uIcondition);
  195. UIObject uiClose = ui.FirstChild.Children.Find("Close");
  196. Button buttonClose = new Button(uiClose);
  197. Thread.Sleep(5000);
  198. buttonClose.Click();
  199. }
  200. private string CMD;
  201. }
  202. }