regress.xsd 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ################################################################################
  4. # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
  5. #
  6. # Licensed under the Apache License, Version 2.0 (the "License");
  7. # you may not use this file except in compliance with the License.
  8. # You may obtain a copy of the License at
  9. #
  10. # http://www.apache.org/licenses/LICENSE-2.0
  11. #
  12. # Unless required by applicable law or agreed to in writing, software
  13. # distributed under the License is distributed on an "AS IS" BASIS,
  14. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. # See the License for the specific language governing permissions and
  16. # limitations under the License.
  17. ################################################################################
  18. -->
  19. <!-- edited with XMLSPY v5 rel. 4 U (http://www.xmlspy.com) by Rajeev Moondhra (Seisint, Inc.) -->
  20. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:seisint="http://seisint.com" elementFormDefault="qualified" attributeFormDefault="unqualified">
  21. <xs:include schemaLocation="environment.xsd"/>
  22. <xs:element name="RegressionSuiteProcess">
  23. <xs:complexType>
  24. <xs:sequence>
  25. <xs:element name="Instance" maxOccurs="unbounded">
  26. <xs:annotation>
  27. <xs:appinfo>
  28. <viewType>instance</viewType>
  29. </xs:appinfo>
  30. </xs:annotation>
  31. <xs:complexType>
  32. <xs:attribute name="computer" type="computerType" use="required">
  33. <xs:annotation>
  34. <xs:appinfo>
  35. <colIndex>1</colIndex>
  36. </xs:appinfo>
  37. </xs:annotation>
  38. </xs:attribute>
  39. <xs:attribute name="netAddress" type="ipAddress" use="optional">
  40. <xs:annotation>
  41. <xs:appinfo>
  42. <viewType>readonly</viewType>
  43. <colIndex>2</colIndex>
  44. </xs:appinfo>
  45. </xs:annotation>
  46. </xs:attribute>
  47. <xs:attribute name="directory" type="absolutePath" use="optional">
  48. <xs:annotation>
  49. <xs:appinfo>
  50. <viewType>hidden</viewType>
  51. <colIndex>2</colIndex>
  52. </xs:appinfo>
  53. </xs:annotation>
  54. </xs:attribute>
  55. </xs:complexType>
  56. </xs:element>
  57. <xs:element name="Notes" maxOccurs="unbounded">
  58. <xs:annotation>
  59. <xs:appinfo>
  60. <viewChildNodes>true</viewChildNodes>
  61. </xs:appinfo>
  62. </xs:annotation>
  63. <xs:complexType>
  64. <xs:sequence>
  65. <xs:element name="Note" type="xs:string" minOccurs="0" maxOccurs="1"/>
  66. </xs:sequence>
  67. <xs:attribute name="severity" use="optional" default="Minor">
  68. <xs:annotation>
  69. <xs:appinfo>
  70. <tooltip>Significance of this note.</tooltip>
  71. <title>Severity</title>
  72. <colIndex>1</colIndex>
  73. </xs:appinfo>
  74. </xs:annotation>
  75. <xs:simpleType>
  76. <xs:restriction base="xs:string">
  77. <xs:enumeration value="Minor"/>
  78. <xs:enumeration value="Normal"/>
  79. <xs:enumeration value="Critical"/>
  80. </xs:restriction>
  81. </xs:simpleType>
  82. </xs:attribute>
  83. <xs:attribute name="date" type="AutoTimeStampType" use="optional">
  84. <xs:annotation>
  85. <xs:appinfo>
  86. <title>Date / Time</title>
  87. <tooltip>Date and time this note was entered</tooltip>
  88. <viewType>readonly</viewType>
  89. <width>120</width>
  90. <colIndex>2</colIndex>
  91. </xs:appinfo>
  92. </xs:annotation>
  93. </xs:attribute>
  94. <xs:attribute name="computer" type="AutoComputerType" use="optional">
  95. <xs:annotation>
  96. <xs:appinfo>
  97. <title>Computer</title>
  98. <tooltip>Computer from which this note was entered</tooltip>
  99. <viewType>readonly</viewType>
  100. <colIndex>3</colIndex>
  101. </xs:appinfo>
  102. </xs:annotation>
  103. </xs:attribute>
  104. <xs:attribute name="user" type="AutoUseridType" use="optional">
  105. <xs:annotation>
  106. <xs:appinfo>
  107. <title>User</title>
  108. <tooltip>User account from which this note was entered</tooltip>
  109. <viewType>readonly</viewType>
  110. <colIndex>4</colIndex>
  111. </xs:appinfo>
  112. </xs:annotation>
  113. </xs:attribute>
  114. </xs:complexType>
  115. </xs:element>
  116. </xs:sequence>
  117. <xs:attribute name="build" type="buildType" use="required">
  118. <xs:annotation>
  119. <xs:appinfo>
  120. <tooltip>The build name to be deployed</tooltip>
  121. <viewType>hidden</viewType>
  122. </xs:appinfo>
  123. </xs:annotation>
  124. </xs:attribute>
  125. <xs:attribute name="buildSet" type="buildSetType" use="required">
  126. <xs:annotation>
  127. <xs:appinfo>
  128. <tooltip>The component within the build</tooltip>
  129. <viewType>hidden</viewType>
  130. </xs:appinfo>
  131. </xs:annotation>
  132. </xs:attribute>
  133. <xs:attribute name="name" type="xs:string" use="required">
  134. <xs:annotation>
  135. <xs:appinfo>
  136. <tooltip>Name for this process</tooltip>
  137. </xs:appinfo>
  138. </xs:annotation>
  139. </xs:attribute>
  140. <xs:attribute name="description" type="xs:string" use="optional" default="Regression test suite">
  141. <xs:annotation>
  142. <xs:appinfo>
  143. <tooltip>Regression test suite</tooltip>
  144. </xs:appinfo>
  145. </xs:annotation>
  146. </xs:attribute>
  147. <xs:attribute name="server" type="espBindingType" use="optional">
  148. <xs:annotation>
  149. <xs:appinfo>
  150. <tooltip>Name of the ECL Watch server to use</tooltip>
  151. <serviceType>WsSMC</serviceType>
  152. </xs:appinfo>
  153. </xs:annotation>
  154. </xs:attribute>
  155. <xs:attribute name="roxieconfig" type="espBindingType" use="optional">
  156. <xs:annotation>
  157. <xs:appinfo>
  158. <tooltip>Name of the RoxieConfig service to use for roxie testing</tooltip>
  159. <serviceType>ws_roxieconfig</serviceType>
  160. </xs:appinfo>
  161. </xs:annotation>
  162. </xs:attribute>
  163. <xs:attribute name="eclServer" type="eclServerType" use="required">
  164. <xs:annotation>
  165. <xs:appinfo>
  166. <tooltip>name of the ECL Server process to use</tooltip>
  167. </xs:appinfo>
  168. </xs:annotation>
  169. </xs:attribute>
  170. <xs:attribute name="userid" type="xs:string" use="required">
  171. <xs:annotation>
  172. <xs:appinfo>
  173. <tooltip>Specifies the user name for executing queries.</tooltip>
  174. </xs:appinfo>
  175. </xs:annotation>
  176. </xs:attribute>
  177. <xs:attribute name="compareProgram" type="xs:string" use="optional">
  178. <xs:annotation>
  179. <xs:appinfo>
  180. <tooltip>path name of the program to use for comparing results with keyed results (for regress.bat)</tooltip>
  181. </xs:appinfo>
  182. </xs:annotation>
  183. </xs:attribute>
  184. <xs:attribute name="parallel_queries" type="xs:string" use="optional">
  185. <xs:annotation>
  186. <xs:appinfo>
  187. <tooltip>number of parallel queries to send (used for multi-thor testing)</tooltip>
  188. </xs:appinfo>
  189. </xs:annotation>
  190. </xs:attribute>
  191. <xs:attribute name="purge" type="xs:string" use="optional" default="move">
  192. <xs:annotation>
  193. <xs:appinfo>
  194. <tooltip>set to 'move' (default) to keep one previous result set (by moving it) or 'delete' not to do this</tooltip>
  195. </xs:appinfo>
  196. </xs:annotation>
  197. </xs:attribute>
  198. <xs:attribute name="report_types" type="xs:string" use="optional">
  199. <xs:annotation>
  200. <xs:appinfo>
  201. <tooltip>set which report types to generate by default (for runregress)</tooltip>
  202. </xs:appinfo>
  203. </xs:annotation>
  204. </xs:attribute>
  205. </xs:complexType>
  206. </xs:element>
  207. </xs:schema>