blob: 6f44b04e120419a0400b9eced08d572bc573d608 [file] [log] [blame] [view]
Manuel Carrasco Moñino08c79912014-10-08 13:21:30 +02001## GWT
2
3 GWT is the official open source project for GWT releases 2.5 and onwards.
4
5 In this document you have some quick instructions to build the SDK from
6 source code and to run its tests.
7
8 For a more detailed documentation visit our [web site](http://gwtproject.org).
9 If you are interested in contributing with the project, please read the
10 [Making GWT better](http://gwtproject.gquery.org/makinggwtbetter.html)
11 section.
12
13### Building the GWT SDK:
14
15 - In order to build GWT, `java` and `ant` are required in your system.
16
17 - Optional: if you want to compile elemental you need
18 `python` and `g++` installed.
19
John Huss7e1ca4f2014-12-08 12:49:26 -060020 - You need the [gwt-tools](https://google-web-toolkit.googlecode.com/svn/tools/)
Manuel Carrasco Moñino08c79912014-10-08 13:21:30 +020021 checked out and up-to-date, and it will be placed
22 by default at `../tools`. You can override the default
23 location using the GWT_TOOLS environment variable or passing `-Dgwt.tools=`
24 argument to ant.
25
26 _Note: that you need `svn` to checkout `gwt-tools`_
27
28 - To create the SDK distribution files run:
29
30 `$ ant clean elemental dist-dev`
31
32 or if you don't have `python` and `g++` just run
33
34 `$ ant clean dist-dev`
35
36 Then you will get all `.jar` files in the folder `build/lib` and
37 the redistributable file will be: `build/dist/gwt-0.0.0.zip`
38
39 if you want to specify a different version number run:
40
41 `$ ant elemental clean dist-dev -Dgwt.version=x.x.x`
42
43 - To compile everything including examples you have to run
44
45 `$ ant clean elemental dist`
46
47### How to verify GWT code conventions:
48
49 - In GWT we have some conventions so as all code written
50 by contributors look similar being easier to review.
51
52 - After you make any modification, run this command to compile
53 everything including tests, to check APIs, and to verify code style.
54 It shouldn't take longer than 3-4 minutes.
55
56 `$ ant compile.tests apicheck checkstyle -Dprecompile.disable=true`
57
58### How to run GWT tests
59
60 - Previously to run any test you have to set some environment variables
61 to guarantee that they are run in the same conditions for all
62 developers.
63
64 In a _Unix_ like platform you can use the `export` command:
65
66 `$ export TZ=America/Los_Angeles ANT_OPTS=-Dfile.encoding=UTF-8`
67
68 But in _Windows_ you have to set the time-zone in your control panel, and
69 the environment variables using the command `set`.
70
71 - Finally you can run all test suites with the following command, but be
72 prepared because it could take hours, and probably it would fail because
73 of timeouts, etc.
74
75 `$ ant test`
76
77 - Thus, you might want to run only certain tests so as you can
78 focus on checking the modifications you are working on.
79
80 GWT build scripts use specific ant tasks and a bunch of system
81 properties listed in the following table to specify which tests
82 to run and how.
83
84 For instance to run the task `test` in the module `user` you
85 have to change to the `user` folder and run `ant` with the task
86 as argument, adding any other property with the `-D` flag:
87
88 `$ ( cd user && ant test -Dtest.emma.htmlunit.disable=true ; cd .. )`
89
90 Module | Task | Property to skip
91 -------------- | ---------------------- | ----------------
92 dev | test | test.dev.disable
93 codeserver | test | test.codeserver.disable
94 user | test | test.user.disable
95 user | test.nongwt | test.nongwt.disable
96 user | test.dev.htmlunit | test.dev.htmlunit.disable
97 user | test.web.htmlunit | test.web.htmlunit.disable
98 user | test.draft.htmlunit | test.draft.htmlunit.disable
99 user | test.nometa.htmlunit | test.nometa.htmlunit.disable
100 user | test.emma.htmlunit | test.emma.htmlunit.disable
101 user | test.coverage.htmlunit | test.coverage.htmlunit.disable
102 user | test.dev.selenium | test.dev.selenium.disable
103 user | test.web.selenium | test.web.selenium.disable
104 user | test.draft.selenium | test.draft.selenium.disable
105 user | test.nometa.selenium | test.nometa.selenium.disable
106 user | test.emma.selenium | test.emma.selenium.disable
107 requestfactory | test |
108 elemental | test |
109 elemental | test.nongwt |
110 elemental | test.dev.htmlunit |
111 elemental | test.web.htmlunit |
112 tools | test |
113
114 Additionally you can utilize some variables to filter which test to run in each task:
115
116 Module | Task | Properties | Default
117 ---------------|---------------------------------------|--------------------------------------|-------------------
118 dev/core | test | gwt.junit.testcase.dev.core.includes | `**/com/google/**/*Test.class`
119 | | gwt.junit.testcase.dev.core.excludes |
120 user | test | gwt.junit.testcase.includes | `**/*Suite.class`
121 user | test.nongwt | gwt.nongwt.testcase.includes | `**/*JreSuite.class`
122 | | gwt.nongwt.testcase.excludes |
123 user | test.web.* test.draft.* test.nometa.* | gwt.junit.testcase.web.includes | `**/*Suite.class`
124 | | gwt.junit.testcase.web.excludes | `**/*JsInteropSuite.class,**/*JreSuite.class,***/OptimizedOnly*`
125 user | test.dev.* test.emma.* | gwt.junit.testcase.dev.includes | `**/*Suite.class`
126 | | gwt.junit.testcase.dev.excludes | `**/*JsInteropSuite.class,**/*JreSuite.class,***/OptimizedOnly*`
127
128### Examples
129
130 - Run all tests in dev
131
132 `$ ( cd dev && ant test ; cd .. )`
133
134 _Note: that the last `cd ..' is only needed in Windows._
135
136 - There is another option to do the same but without changing to the
137 module folder. We have to specify the module as the ant task, and
138 the task as a target argument.
139
140 `$ ant dev -Dtarget=test`
141
142 - Run all tests in codeserver
143
144 `$ ( cd dev/codeserver && ant test )`
145
146 or
147
148 `$ ant codeserver -Dtarget=test -Dtest.dev.disable=true`
149
150 _Note: that we disable dev tests because code server depends on dev
151 and we don`t want to run its tests._
152
153 - Run all tests in elemental:
154
155 `$ ( cd elemental && ant test.nongwt )`
156
157 or
158
159 `$ ant elemental -Dtarget=test -Dtest.dev.disable=true -Dtest.user.disable=true`
160
161 _Note: that we have to disable dev and user tests because elemental
162 depends on both._
163
164 - Run all tests in tools
165
166 `$ ant tools -Dtarget=test -Dtest.dev.disable=true -Dtest.user.disable=true`
167
168 - Run only the JsniRefTest in dev
169
170 ```
171 $ ant dev -Dtarget=test \
172 -Dgwt.junit.testcase.dev.core.includes="**/JsniRefTest.class"
173 ```
174
175 - Run a couple of tests in dev
176
177 ```
178 $ ant dev -Dtarget=test \
179 -Dgwt.junit.testcase.dev.core.includes="**/JsniRefTest.class,**/JsParserTest.class"
180 ```
181
182 _Note: that you have to use regular expressions separated by comma to
183 select the test classes to execute._
184
185 - Run all Jre tests in user, they should take not longer than 3min.
186 We have two ways to run them. Although the second case is more
187 complex it is here to know how disable properties work.
188
189 `$ ( cd user && ant test.nongwt )`
190
191 or
192
193 ```
194 $ ant user -Dtarget=test -Dtest.dev.disable=true \
195 -Dtest.dev.htmlunit.disable=true \
196 -Dtest.web.htmlunit.disable=true \
197 -Dtest.coverage.htmlunit.disable=true \
198 -Dtest.dev.selenium.disable=true \
199 -Dtest.draft.htmlunit.disable=true \
200 -Dtest.draft.selenium.disable=true \
201 -Dtest.emma.htmlunit.disable=true \
202 -Dtest.emma.selenium.disable=true \
203 -Dtest.nometa.htmlunit.disable=true \
204 -Dtest.nometa.selenium.disable=true \
205 -Dtest.web.selenium.disable=true
206 ```
207
208 _Note: that we have to set all disable variables but `test.nongwt.disable`_
209
210 - Run certain Jre tests in the user module.
211
212 `$ ( cd user && ant test.nongwt -Dgwt.nongwt.testcase.includes="**/I18NJreSuite.class" )`
213
214 - Run all GWT tests in user using htmlunit in dev mode.
215
216 `$ ( cd user && ant test.dev.htmlunit )`
217