forked from hugs/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
448 lines (383 loc) · 17.1 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
verbose false
# The CrazyFun build grammar. There's no magic here, just ruby
require 'rake-tasks/crazy_fun'
require 'rake-tasks/crazy_fun/mappings/gcc'
require 'rake-tasks/crazy_fun/mappings/java'
require 'rake-tasks/crazy_fun/mappings/javascript'
require 'rake-tasks/crazy_fun/mappings/mozilla'
require 'rake-tasks/crazy_fun/mappings/rake'
require 'rake-tasks/crazy_fun/mappings/ruby'
# The original build rules
require 'rake-tasks/task-gen'
require 'rake-tasks/checks'
require 'rake-tasks/dotnet'
require 'rake-tasks/zip'
require 'rake-tasks/c'
require 'rake-tasks/java'
require 'rake-tasks/iphone'
require 'rake-tasks/selenium'
require 'rake-tasks/se-ide'
require 'rake-tasks/ie_code_generator'
version = "2.0a4"
ide_version = "1.0.8-SNAPSHOT"
# The build system used by webdriver is layered on top of rake, and we call it
# "crazy fun" for no readily apparent reason.
# First off, create a new CrazyFun object.
crazy_fun = CrazyFun.new
# Secondly, we add the handlers, which are responsible for turning a build
# rule into a (series of) rake tasks. For example if we're looking at a file
# in subdirectory "subdir" contains the line:
#
# java_library(:name => "example", :srcs => ["foo.java"])
#
# we would generate a rake target of "//subdir:example" which would generate
# a Java JAR at "build/subdir/example.jar".
#
# If crazy fun doesn't know how to handle a particular output type ("java_library"
# in the example above) then it will throw an exception, stopping the build
GccMappings.new.add_all(crazy_fun)
JavaMappings.new.add_all(crazy_fun)
JavascriptMappings.new.add_all(crazy_fun)
MozillaMappings.new.add_all(crazy_fun)
RakeMappings.new.add_all(crazy_fun)
RubyMappings.new.add_all(crazy_fun)
# Not every platform supports building every binary needed, so we sometimes
# need to fall back to prebuilt binaries. The prebuilt binaries are stored in
# a directory structure identical to that used in the "build" folder, but
# rooted at one of the following locations:
["chrome/prebuilt", "common/prebuilt", "firefox/prebuilt", "jobbie/prebuilt", "ide/prebuilt"].each do |pre|
crazy_fun.prebuilt_roots << pre
end
# Finally, find every file named "build.desc" in the project, and generate
# rake tasks from them. These tasks are normal rake tasks, and can be invoked
# from rake.
crazy_fun.create_tasks(Dir["**/build.desc"])
# Notice that because we're using rake, anything you can do in a normal rake
# build can also be done here. For example, here we set the default task
task :default => [:test]
# TODO(simon): Shatter the build file into subdirectories, then remove these
task :all => [:'selenium-java']
task :all_zip => [:'selenium-java_zip']
task :chrome => [ "//chrome" ]
task :common => [ "//common" ]
task :common_core => [ "//common:core" ]
task :htmlunit => [ "//htmlunit" ]
task :ie => [ "//jobbie" ]
task :firefox => [ "//firefox" ]
task :jobbie => [:ie]
task :jsapi => "//jsapi:debug:run"
task :remote => [:remote_common, :remote_server, :remote_client]
task :remote_common => ["//remote/common"]
task :remote_client => ["//remote/client"]
task :remote_server => ["//remote/server"]
task :selenium => [ "//selenium" ]
task :support => [ "//support" ]
task :iphone_client => ['//iphone']
task :iphone => [:iphone_server, :iphone_client]
task :'selenium-server-standalone' => ["//remote/server:server:uber"]
task :ide => [ "//ide:selenium-ide" ]
task :test_common => [ "//common:test" ]
task :test_chrome => [ "//chrome:test:run" ]
task :test_htmlunit => [ "//htmlunit:test:run" ]
task :test_ie => [ "//jobbie:test:run" ]
task :test_jobbie => [ "//jobbie:test:run" ]
task :test_jsapi => "//jsapi:test:run"
task :test_firefox => [ "//firefox:test:run" ]
task :test_remote => [ "//remote/server:test:run" ]
task :test_selenium => [ "//selenium:selenium_test:run", "//selenium:test-selenese:run", :'test_core']
task :test_support => [ "//support:test:run" ]
task :test_iphone_client => [:'webdriver-iphone-client-test']
task :test_iphone => [:test_iphone_server, :test_iphone_client]
if (windows?)
task :test_core => [:'test_core_ie']
end
task :test_core => [:'test_core_firefox']
task :build => [:all, :iphone, :remote, :selenium]
task :test => [
:test_htmlunit,
:test_firefox,
:test_ie,
:test_support,
:test_chrome,
:test_remote,
:test_selenium,
:test_core
]
task :clean do
rm_rf 'build/'
rm_rf 'iphone/build/'
end
dll(:name => "ie_win32_dll",
:src => [ "common/src/cpp/webdriver-interactions/**/*", "jobbie/src/cpp/InternetExplorerDriver/**/*" ],
:solution => "WebDriver.sln",
:out => "Win32/Release/InternetExplorerDriver.dll",
:prebuilt => "jobbie/prebuilt")
dll(:name => "ie_x64_dll",
:src => [ "common/src/cpp/webdriver-interactions/**/*", "jobbie/src/cpp/InternetExplorerDriver/**/*" ],
:solution => "WebDriver.sln",
:out => "x64/Release/InternetExplorerDriver.dll",
:prebuilt => "jobbie/prebuilt")
dotnet_library(:name => "dotnet_assemblies",
:project => "rake-tasks/msbuild/webdriver.msbuild.proj",
:target => "BuildManagedCode")
task :dotnet => [ :ie_win32_dll, :ie_x64_dll, :firefox, :chrome, :'dotnet_assemblies' ]
# Generate a C++ Header file for mapping between magic numbers and #defines
# in the C++ code.
ie_generate_type_mapping(:name => "ie_result_type_cpp",
:src => "jobbie/src/common/result_types.txt",
:type => "cpp",
:out => "cpp/InternetExplorerDriver/IEReturnTypes.h")
# Generate a Java class for mapping between magic numbers and Java static
# class members describing them.
ie_generate_type_mapping(:name => "ie_result_type_java",
:src => "jobbie/src/common/result_types.txt",
:type => "java",
:out => "java/org/openqa/selenium/ie/IeReturnTypes.java")
dll(:name => "firefox_dll",
:src => [ "common/src/cpp/webdriver-interactions/**/*", "jobbie/src/cpp/webdriver-firefox/**/*" ],
:solution => "WebDriver.sln",
:out => "Win32/Release/webdriver-firefox.dll",
:deps => [
"//firefox:native_events_xpt",
],
:prebuilt => "firefox/prebuilt")
gecko_sdk = "third_party/gecko-1.9.0.11/linux/"
dll(:name => "libwebdriver_firefox_so",
:src => FileList.new('common/src/cpp/webdriver-interactions/*_linux.cpp') +
FileList.new('firefox/src/cpp/webdriver-firefox/*.cpp'),
:arch => "i386",
:args => " -DXPCOM_GLUE -DXPCOM_GLUE_USE_NSPR -I common/src/cpp/webdriver-interactions -I #{gecko_sdk}include -I /usr/include/nspr " + "`pkg-config gtk+-2.0 --cflags`",
:link_args => "-fno-rtti -fno-exceptions -shared -fPIC -L#{gecko_sdk}lib -L#{gecko_sdk}bin -Wl,-rpath-link,#{gecko_sdk}bin -lxpcomglue_s -lxpcom -lnspr4 -lrt ",
:prebuilt => "firefox/prebuilt",
:out => "linux/Release/libwebdriver-firefox.so")
# There is no official 64 bit gecko SDK. Fall back to trying to use the one on
# system, but be ready for this to fail. I have a Ubuntu machine, so that's
# what I'm basing this on. I understand that's a Bad Idea
gecko_devels = FileList.new("/usr/lib/xulrunner-devel-1.9.*/sdk")
local_gecko = gecko_devels.empty? ? "" : gecko_devels.to_a[0] + "/"
dll(:name => "libwebdriver_firefox_so64",
:src => FileList.new('common/src/cpp/webdriver-interactions/*_linux.cpp') + FileList.new('firefox/src/cpp/webdriver-firefox/native_events.cpp'),
:arch => "amd64",
:args => " -DXPCOM_GLUE -DXPCOM_GLUE_USE_NSPR -fPIC -fshort-wchar -I common/src/cpp/webdriver-interactions -I #{local_gecko}include -I /usr/include/nspr `pkg-config gtk+-2.0 --cflags` ",
:link_args => "-Wall -Os -L#{local_gecko}lib -L#{local_gecko}bin -Wl,-rpath-link,#{local_gecko}bin -lxpcomglue_s -lxpcom -lnspr4 -lrt `pkg-config gtk+-2.0 --libs` -fno-rtti -fno-exceptions -shared -fPIC",
:prebuilt => "firefox/prebuilt",
:out => "linux64/Release/libwebdriver-firefox.so")
task :'selenium-server_zip' do
temp = "build/selenium-server_zip"
mkdir_p temp
sh "cd #{temp} && jar xf ../selenium-server.zip"
rm_f "build/selenium-server.zip"
Dir["#{temp}/webdriver-*.jar"].each { |file| rm_rf file }
mv "#{temp}/selenium-server.jar", "#{temp}/selenium-server-#{version}.jar"
sh "cd #{temp} && jar cMf ../selenium-server.zip *"
end
dll(:name => "chrome_dll",
:src => [ "common/src/cpp/webdriver-interactions/**/*", "chome/src/cpp/**/*" ],
:solution => "WebDriver.sln",
:out => 'Win32/Release/npchromedriver.dll',
:prebuilt => "chrome/prebuilt")
java_jar(:name => "selenium-core",
:resources => [
{"selenium/test/js/**" => "tests"},
"common/src/js/core"
])
selenium_test(:name => "test_core_firefox",
:srcs => [ "common/test/js/core/*.js" ],
:deps => [
"//remote/server",
:"selenium-core"
],
:browser => "*chrome" )
selenium_test(:name => "test_core_ie",
:srcs => [ "common/test/js/core/*.js" ],
:deps => [
"//remote/server",
:"selenium-core"
],
:browser => "*iexploreproxy")
# Copy things around to make life easier when packaging IDE
file "build/ide/selenium" => "//common:js_core" do
rm_rf "build/ide/selenium"
mkdir_p "build/ide"
puts Rake::Task["//common:js_core"].out
cp_r Rake::Task["//common:js_core"].out + "/", "build/ide/selenium/"
Dir["build/ide/selenium/**/.svn"].each { |file| rm_rf file }
end
task "rename_core" => "build/ide/selenium"
task :javadocs => [:common, :firefox, "//htmlunit", :jobbie, :remote, :support, :chrome, :selenium] do
mkdir_p "build/javadoc"
sourcepath = ""
classpath = "third_party/java/hamcrest/hamcrest-all-1.1.jar"
%w(common firefox jobbie htmlunit support remote/common remote/client chrome selenium).each do |m|
sourcepath += ":#{m}/src/java"
end
cmd = "javadoc -d build/javadoc -sourcepath #{sourcepath} -classpath #{classpath} -subpackages org.openqa.selenium -subpackages com.thoughtworks"
if (windows?)
cmd = cmd.gsub(/\//, "\\").gsub(/:/, ";")
end
sh cmd
end
# Installs the webdriver python bindings using virtualenv for testing.
task :webdriver_py => [:chrome, :firefox, "//firefox:webdriver", :remote_client] do
if python? then
sh "virtualenv build/python", :verbose => true do |ok, res|
if ! ok
puts ""
puts "PYTHON DEPENDENCY ERROR: Virtualenv not found."
puts "Please run '[sudo] pip install virtualenv'"
puts ""
end
end
sh "build/python/bin/pip install simplejson py", :verbose => true
# Copy browser extensions over to src so setup.py will pick them up. This is such a hack.
cp 'build/chrome/chrome-extension.zip', "chrome/src/py/", :verbose => true
cp 'build/firefox/webdriver.xpi', "firefox/src/py/", :verbose => true
sh "build/python/bin/python setup.py build", :verbose => true
# Remove the extensions we copied to src.
rm "chrome/src/py/chrome-extension.zip", :verbose => true
rm "firefox/src/py/webdriver.xpi", :verbose => true
end
end
task :test_chrome_py => :webdriver_py do
if python? then
sh "virtualenv build/python", :verbose => true do |ok, res|
if ! ok
puts ""
puts "PYTHON DEPENDENCY ERROR: Virtualenv not found."
puts "Please run '[sudo] pip install virtualenv'"
puts ""
end
end
if File.exists?('build/python/bin/py.test')
py_test = 'build/python/bin/py.test'
else
py_test = 'py.test'
end
test_dir = Dir.glob('build/lib**/selenium/chrome_tests').first
sh py_test, test_dir, :verbose => true
end
end
task :test_firefox_py => :webdriver_py do
if python? then
sh "virtualenv build/python", :verbose => true do |ok, res|
if ! ok
puts ""
puts "PYTHON DEPENDENCY ERROR: Virtualenv not found."
puts "Please run '[sudo] pip install virtualenv'"
puts ""
end
end
if File.exists?('build/python/bin/py.test')
py_test = 'build/python/bin/py.test'
else
py_test = 'py.test'
end
test_dir = Dir.glob('build/lib**/selenium/firefox_tests').first
sh py_test, test_dir, :verbose => true
end
end
task :test_remote_py => [:webdriver_py, :'selenium-server-standalone'] do
if python? then
sh "virtualenv build/python", :verbose => true do |ok, res|
if ! ok
puts ""
puts "PYTHON DEPENDENCY ERROR: Virtualenv not found."
puts "Please run '[sudo] pip install virtualenv'"
puts ""
end
end
if File.exists?('build/python/bin/py.test')
py_test = 'build/python/bin/py.test'
else
py_test = 'py.test'
end
test_dir = Dir.glob('build/lib**/selenium/remote_tests').first
sh py_test, test_dir, :verbose => true
end
end
task :test_selenium_py => [:'selenium-core', :'selenium-server-standalone'] do
if python? then
sh "python2.6 selenium/test/py/runtests.py", :verbose => true
end
end
iphone_test(:name => "webdriver-iphone-client-test",
:srcs => [ "iphone/test/java/**/*.java" ],
:deps => [
:test_common,
:iphone_server,
:iphone_client
])
#### iPhone ####
task :iphone_server do
sdk = iPhoneSDK?
if sdk != nil then
puts "Building iWebDriver iphone app"
sh "cd iphone && xcodebuild -sdk #{sdk} ARCHS=i386 -target iWebDriver >/dev/null"
else
puts "XCode not found. Not building the iphone driver."
end
end
# This does not depend on :iphone_server because the dependancy is specified in xcode
task :test_iphone_server do
sdk = iPhoneSDK?
if sdk != nil then
sh "cd iphone && xcodebuild -sdk #{sdk} ARCHS=i386 -target Tests"
else
puts "XCode and/or iPhoneSDK not found. Not testing iphone_server."
end
end
def version
`svn info | grep Revision | awk -F: '{print $2}' | tr -d '[:space:]' | tr -d '\n'`
end
task :remote_release => [:remote] do
mkdir_p "build/dist/remote_client"
cp 'remote/build/webdriver-remote-client.jar', 'build/dist/remote_client'
cp 'remote/build/webdriver-remote-common.jar', 'build/dist/remote_client'
cp 'common/build/webdriver-common.jar', 'build/dist/remote_client'
cp Dir.glob('remote/common/lib/runtime/*.jar'), 'build/dist/remote_client'
cp Dir.glob('remote/client/lib/runtime/*.jar'), 'build/dist/remote_client'
cp 'third_party/java/google-collect/google-collect-1.0.jar', 'build/dist/remote_client'
sh "cd build/dist && zip -r webdriver-remote-client-#{version}.zip remote_client/*"
rm_rf "build/dist/remote_client"
mkdir_p "build/dist/remote_server"
cp 'remote/build/webdriver-remote-server.jar', 'build/dist/remote_server'
cp 'remote/build/webdriver-remote-common.jar', 'build/dist/remote_server'
cp 'common/build/webdriver-common.jar', 'build/dist/remote_server'
cp Dir.glob('remote/common/lib/runtime/*.jar'), 'build/dist/remote_server'
cp Dir.glob('remote/server/lib/runtime/*.jar'), 'build/dist/remote_server'
cp 'third_party/java/google-collect/google-collect-1.0.jar', 'build/dist/remote_server'
rm Dir.glob('build/dist/remote_server/servlet*.jar')
sh "cd build/dist && zip -r webdriver-remote-server-#{version}.zip remote_server/*"
rm_rf "build/dist/remote_server"
end
task :release => [:'all_zip', :'selenium-server-standalone', :'selenium-server_zip'] do
cp "build/selenium-server-standalone.jar", "build/selenium-server-standalone-#{version}.jar"
cp "build/selenium-java.zip", "build/selenium-java-#{version}.zip"
cp "build/selenium-server.zip", "build/selenium-server-#{version}.zip"
end
task :'selenium-java_zip' do
temp = "build/selenium-java_zip"
mkdir_p temp
sh "cd #{temp} && jar xf ../selenium-java.zip"
rm_f "build/selenium-java.zip"
Dir["#{temp}/webdriver-*.jar"].each { |file| rm_rf file }
mv "#{temp}/selenium-java.jar", "#{temp}/selenium-java-#{version}.jar"
sh "cd #{temp} && jar cMf ../selenium-java.zip *"
end
desc 'Build the selenium client jars'
task 'selenium-java' => 'build/selenium-java.jar'
file 'build/selenium-java.jar' => '//remote/client:combined:project' do
cp 'build/remote/client/combined-nodeps.jar', 'build/selenium-java.jar'
end
desc 'Build the standalone server'
task 'selenium-server-standalone' => 'build/selenium-server-standalone.jar'
file 'build/selenium-server-standalone.jar' => '//remote/server:server:uber' do
cp 'build/remote/server/server-standalone.jar', 'build/selenium-server-standalone.jar'
end
desc 'Build and package Selenium IDE'
task :release_ide => [:ide] do
cp 'build/ide/selenium-ide.xpi', "build/ide/selenium-ide-#{ide_version}.xpi"
end