root / ToolkitAutomatedTesting / config.xml

Revision 4694, 4.5 kB (checked in by matti.tahvonen@…, 6 months ago)

reasonable timeout for datefield test

Line 
1<?xml version="1.0" encoding="ISO-8859-1" ?>
2
3<configuration>
4        <testingtoolsserver>
5                <ip>192.168.1.121</ip>
6        </testingtoolsserver>
7        <!-- Define testing target main url: used to acquire memory consumption -->
8        <toolkitserver>
9                <!-- url where testable target applications reside -->
10                <url>http://192.168.1.121:8888/</url>
11                <!-- how long to wait (seconds) for sessions to expire -->
12                <sessionlifetime>1200</sessionlifetime>
13        </toolkitserver>
14        <!-- Define how email raport is sent -->
15        <email>
16                <smtpserver>mail.itmill.com</smtpserver>
17                <!-- email address in separate parts (prevent email hijacking) -->
18                <tolocalpart>jani.laakso</tolocalpart>
19                <todomainpart>itmill.com</todomainpart>
20                <fromlocalpart>r2d2</fromlocalpart>
21                <fromdomainpart>dev.itmill.com</fromdomainpart>
22                <raporturl>http://www.itmill.com/download/nightly/</raporturl>
23        </email>
24        <!-- Define alerts, what triggers email sending -->
25        <alert>
26                <!--  alert if memory consumption for subsequent testruns changes more than 10% -->
27                <memconsumptionchangepercent>0.1</memconsumptionchangepercent>
28                <!--  alert if execution time for subsequent testcases changes more than 10% -->
29                <exectimechangepercent>0.1</exectimechangepercent>
30        </alert>
31
32        <!-- Every testrun contains multiple testcases and produces two HTML raport files -->
33        <!-- - result/testrun.name.html contains latest testruns -->
34        <!-- - result/testrun.name-all.html contains all testruns -->
35        <!-- - testresult HTML files are stored under result/testrun.name-timestamp/* directory -->
36        <testruns>
37                <testrun>
38                        <active>true</active>
39                        <!-- HTML raport name -->
40                        <name>Default</name>
41                        <!-- analyze subsequent testrun changes and notify if neccessary -->
42                        <analyzer>
43                                <emailnotify>true</emailnotify>
44                        </analyzer>
45                        <!-- run following testcases in given order -->
46                        <testcases>
47                                <testcase>
48                                        <script>smoketest.txt</script>
49                                        <timeout>30</timeout>
50                                        <target>1</target>
51                                        <host>0</host>
52                                </testcase>
53                                <testcase>
54                                        <script>component-initialization.txt</script>
55                                        <timeout>60</timeout>
56                                        <target>2</target>
57                                        <host>0</host>
58                                </testcase>
59                                <testcase>
60                                        <script>labels.txt</script>
61                                        <timeout>30</timeout>
62                                        <target>2</target>
63                                        <host>0</host>
64                                </testcase>
65                                <testcase>
66                                        <script>buttons.txt</script>
67                                        <timeout>60</timeout>
68                                        <target>2</target>
69                                        <host>0</host>
70                                </testcase>
71                                <testcase>
72                                        <script>datefields.txt</script>
73                                        <timeout>60</timeout>
74                                        <target>2</target>
75                                        <host>0</host>
76                                </testcase>
77                                <testcase>
78                                        <script>textfields.txt</script>
79                                        <timeout>60</timeout>
80                                        <target>2</target>
81                                        <host>0</host>
82                                </testcase>
83                                <testcase>
84                                        <script>slider.txt</script>
85                                        <timeout>60</timeout>
86                                        <target>2</target>
87                                        <host>0</host>
88                                </testcase>
89                                <testcase>
90                                        <script>select-listmultiple.txt</script>
91                                        <timeout>60</timeout>
92                                        <target>2</target>
93                                        <host>0</host>
94                                </testcase>
95                                <testcase>
96                                        <script>select-listsingle.txt</script>
97                                        <timeout>60</timeout>
98                                        <target>2</target>
99                                        <host>0</host>
100                                </testcase>
101                                <testcase>
102                                        <script>select-optiongroup.txt</script>
103                                        <timeout>60</timeout>
104                                        <target>2</target>
105                                        <host>0</host>
106                                </testcase>
107                                <testcase>
108                                        <script>select-radiobuttons.txt</script>
109                                        <timeout>60</timeout>
110                                        <target>2</target>
111                                        <host>0</host>
112                                </testcase>
113                                <testcase>
114                                        <script>select-native.txt</script>
115                                        <timeout>60</timeout>
116                                        <target>2</target>
117                                        <host>0</host>
118                                </testcase>
119                                <testcase>
120                                        <script>select-combobox.txt</script>
121                                        <timeout>60</timeout>
122                                        <target>2</target>
123                                        <host>0</host>
124                                </testcase>
125                                <testcase>
126                                        <script>
127                                                select-combobox-startswithfilter.txt
128                                        </script>
129                                        <timeout>60</timeout>
130                                        <target>2</target>
131                                        <host>0</host>
132                                </testcase>
133                                <testcase>
134                                        <script>select-twincolselect.txt</script>
135                                        <timeout>60</timeout>
136                                        <target>2</target>
137                                        <host>0</host>
138                                </testcase>
139                                <testcase>
140                                        <script>layouts.txt</script>
141                                        <timeout>60</timeout>
142                                        <target>2</target>
143                                        <host>0</host>
144                                </testcase>
145                                <testcase>
146                                        <script>tables.txt</script>
147                                        <timeout>60</timeout>
148                                        <target>2</target>
149                                        <host>0</host>
150                                </testcase>
151                                <testcase>
152                                        <script>tree.txt</script>
153                                        <timeout>60</timeout>
154                                        <target>2</target>
155                                        <host>0</host>
156                                </testcase>
157                                <testcase>
158                                        <script>robustness-complex.txt</script>
159                                        <timeout>200</timeout>
160                                        <target>3</target>
161                                        <host>0</host>
162                                </testcase>
163                        </testcases>
164                </testrun>
165        </testruns>
166
167</configuration>
Note: See TracBrowser for help on using the browser.