forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
782 lines (676 loc) · 29.8 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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
# -*- mode: ruby -*-
$LOAD_PATH.unshift File.expand_path(".")
require 'rake'
require 'rake-tasks/files'
require 'net/telnet'
require 'stringio'
require 'fileutils'
include Rake::DSL if defined?(Rake::DSL)
Rake.application.instance_variable_set "@name", "go"
orig_verbose = verbose
verbose(false)
# The CrazyFun build grammar. There's no magic here, just ruby
require 'rake-tasks/crazy_fun'
require 'rake-tasks/crazy_fun/mappings/export'
require 'rake-tasks/crazy_fun/mappings/folder'
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/python'
require 'rake-tasks/crazy_fun/mappings/rake'
require 'rake-tasks/crazy_fun/mappings/rename'
require 'rake-tasks/crazy_fun/mappings/ruby'
require 'rake-tasks/crazy_fun/mappings/visualstudio'
# 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/selenium'
require 'rake-tasks/se-ide'
require 'rake-tasks/ie_code_generator'
require 'rake-tasks/ci'
require 'rake-tasks/copyright'
require 'rake-tasks/gecko_sdks'
$DEBUG = orig_verbose != :default ? true : false
if (ENV['debug'] == 'true')
$DEBUG = true
end
verbose($DEBUG)
def version
"2.48.0"
end
ide_version = "2.8.0"
# 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
ExportMappings.new.add_all(crazy_fun)
FolderMappings.new.add_all(crazy_fun)
GccMappings.new.add_all(crazy_fun)
JavaMappings.new.add_all(crazy_fun)
JavascriptMappings.new.add_all(crazy_fun)
MozillaMappings.new.add_all(crazy_fun)
PythonMappings.new.add_all(crazy_fun)
RakeMappings.new.add_all(crazy_fun)
RenameMappings.new.add_all(crazy_fun)
RubyMappings.new.add_all(crazy_fun)
VisualStudioMappings.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:
["cpp/prebuilt", "ide/main/prebuilt", "javascript/firefox-driver/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]
task :all => [
:"selenium-java",
"//java/client/test/org/openqa/selenium/environment/webserver:webserver:uber"
]
task :all_zip => [:'selenium-java_zip']
task :tests => [
"//java/client/test/org/openqa/selenium/htmlunit:test_basic",
"//java/client/test/org/openqa/selenium/htmlunit:test_js",
"//java/client/test/org/openqa/selenium/firefox:test_synthesized",
"//java/client/test/org/openqa/selenium/ie:test",
"//java/client/test/org/openqa/selenium/chrome:test",
"//java/client/test/org/openqa/selenium/opera:test_blink",
"//java/client/test/org/openqa/selenium/lift:test",
"//java/client/test/org/openqa/selenium/support:SmallTests",
"//java/client/test/org/openqa/selenium/support:LargeTests",
"//java/client/test/org/openqa/selenium/remote:common-tests",
"//java/client/test/org/openqa/selenium/remote:client-tests",
"//java/server/test/org/openqa/selenium/remote/server/log:test",
"//java/server/test/org/openqa/selenium/remote/server:small-tests",
]
task :chrome => [ "//java/client/src/org/openqa/selenium/chrome" ]
task :common_core => [ "//common:core" ]
task :grid => [ "//java/server/src/org/openqa/grid/selenium" ]
task :htmlunit => [ "//java/client/src/org/openqa/selenium/htmlunit" ]
task :ie => [ "//java/client/src/org/openqa/selenium/ie" ]
task :firefox => [
"//cpp:noblur",
"//cpp:noblur64",
"//cpp:imehandler",
"//cpp:imehandler64",
"//java/client/src/org/openqa/selenium/firefox"
]
task :'debug-server' => "//java/client/test/org/openqa/selenium/environment/webserver:WebServer:run"
task :remote => [:remote_common, :remote_server, :remote_client]
task :remote_common => ["//java/client/src/org/openqa/selenium/remote:common"]
task :remote_client => ["//java/client/src/org/openqa/selenium/remote"]
task :remote_server => ["//java/server/src/org/openqa/selenium/remote/server"]
task :safari => [
"//javascript/safari-driver:SafariDriver",
"//java/client/src/org/openqa/selenium/safari",
]
task :server_lite => ["//java/server/src/org/openqa/selenium/server:server_lite"]
task :selenium => [ "//java/client/src/org/openqa/selenium" ]
task :support => [
"//java/client/src/org/openqa/selenium/lift",
"//java/client/src/org/openqa/selenium/support",
]
desc 'Build the standalone server'
task 'selenium-server-standalone' => '//java/server/src/org/openqa/grid/selenium:selenium:uber'
task :ide => [ "//ide:selenium-ide-multi" ]
task :ide_proxy_setup => [ "//javascript/selenium-atoms", "se_ide:setup_proxy" ]
task :ide_proxy_remove => [ "se_ide:remove_proxy" ]
task :ide_bamboo => ["se_ide:assemble_ide_in_bamboo"]
task :test_javascript => [
'//javascript/atoms:test:run',
'//javascript/webdriver:test:run',
'//javascript/selenium-atoms:test:run',
'//javascript/selenium-core:test:run']
task :test_chrome => [ "//java/client/test/org/openqa/selenium/chrome:test:run" ]
task :test_chrome_atoms => [
'//javascript/atoms:test_chrome:run',
'//javascript/chrome-driver:test:run',
'//javascript/webdriver:test_chrome:run']
task :test_htmlunit => [
"//java/client/test/org/openqa/selenium/htmlunit:test_basic:run",
"//java/client/test/org/openqa/selenium/htmlunit:test_js:run"
]
task :test_grid => [
"//java/server/test/org/openqa/grid/common:test:run",
"//java/server/test/org/openqa/grid:test:run",
"//java/server/test/org/openqa/grid/e2e:test:run"
]
task :test_ie => [ "//java/client/test/org/openqa/selenium/ie:test:run" ]
task :test_jobbie => [ :test_ie ]
task :test_firefox => [ "//java/client/test/org/openqa/selenium/firefox:test_synthesized:run" ]
task :test_opera => [ "//java/client/test/org/openqa/selenium/opera:test_blink:run" ]
task :test_remote_server => [ '//java/server/test/org/openqa/selenium/remote/server:small-tests:run' ]
task :test_remote => [
'//java/client/test/org/openqa/selenium/remote:common-tests:run',
'//java/client/test/org/openqa/selenium/remote:client-tests:run',
'//java/client/test/org/openqa/selenium/remote:remote-driver-tests:run',
:test_remote_server
]
task :test_safari => [ "//java/client/test/org/openqa/selenium/safari:test:run" ]
task :test_phantomjs => [ "//java/client/test/org/openqa/selenium/phantomjs:test:run" ]
task :test_support => [
"//java/client/test/org/openqa/selenium/lift:test:run",
"//java/client/test/org/openqa/selenium/support:SmallTests:run",
"//java/client/test/org/openqa/selenium/support:LargeTests:run"
]
# TODO(simon): test-core should go first, but it's changing the least for now.
task :test_selenium => [ :'test-rc', :'test-v1-emulation', :'test-core']
task :'test-v1-emulation' => [ '//java/client/test/com/thoughtworks/selenium:firefox-emulation-test:run' ]
task :'test-rc' => ['//java/client/test/org/openqa/selenium:RcBrowserLauncherTests:run',
'//java/server/test/org/openqa/selenium/server:RcServerUnitTests:run',
'//java/server/test/org/openqa/selenium/server:RcServerLargeTests:run',
'//java/client/test/com/thoughtworks/selenium:firefox-rc-test:run',
'//java/client/test/com/thoughtworks/selenium:firefox-proxy-rc-test:run',
'//java/client/test/com/thoughtworks/selenium:firefox-singlewindow-rc-test:run']
task :'test-core' => [:'test-core-firefox']
if (windows?)
task :'test-v1-emulation' => ['//java/client/test/com/thoughtworks/selenium:ie-emulation-test:run']
task :'test-rc' => ['//java/client/test/com/thoughtworks/selenium:ie-rc-test:run',
'//java/client/test/com/thoughtworks/selenium:ie-proxy-rc-test:run',
'//java/client/test/com/thoughtworks/selenium:ie-singlewindow-rc-test:run']
task :'test-core' => [:'test-core-ie']
# TODO(santi): why are these disabled?
#elsif (mac?)
# task :'test-rc' => ['//java/client/test/com/thoughtworks/selenium:safari-rc-test:run',
# '//java/client/test/com/thoughtworks/selenium:safari-proxy-rc-test:run']
# task :'test-core' => [:'test-core-safari']
end
task :test_java_webdriver => [
:test_htmlunit,
:test_firefox,
:test_remote_server,
]
if (windows?)
task :test_java_webdriver => [:test_ie]
end
if (present?("chromedriver"))
task :test_java_webdriver => [:test_chrome]
end
if (opera?)
task :test_java_webdriver => [:test_opera]
end
task :test_java => [
"//java/client/test/org/openqa/selenium/atoms:test:run",
"//java/client/test/org/openqa/selenium:SmallTests:run",
:test_support,
:test_java_webdriver,
:test_selenium,
"test_grid",
]
task :test_rb => [
"//rb:unit-test",
"//rb:rc-client-unit-test",
"//rb:firefox-test",
"//rb:remote-test",
"//rb:rc-client-integration-test",
"//rb:chrome-test",
"//rb:phantomjs-test",
("//rb:wires-test" if ENV['MARIONETTE_PATH']),
("//rb:safari-test" if mac?),
("//rb:ie-test" if windows?),
("//rb:edge-test" if windows?)
].compact
task :test_py => [ :py_prep_for_install_release, "//py:firefox_test:run" ]
task :test_dotnet => [
"//dotnet/test:firefox:run"
]
task :test => [ :test_javascript, :test_java, :test_rb ]
if (msbuild_installed?)
task :test => [ :test_dotnet ]
end
if (python?)
task :test => [ :test_py ]
end
task :build => [:all, :firefox, :remote, :selenium, :tests]
desc 'Clean build artifacts.'
task :clean do
rm_rf 'build/'
rm_rf 'java/client/build/'
rm_rf 'dist/'
end
task :dotnet => [ "//dotnet", "//dotnet:support", "//dotnet:core", "//dotnet:webdriverbackedselenium" ]
# 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 => "cpp/iedriver/result_types.txt",
:type => "cpp",
:out => "cpp/iedriver/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 => "cpp/iedriver/result_types.txt",
:type => "java",
:out => "java/client/src/org/openqa/selenium/ie/IeReturnTypes.java")
GeckoSDKs.new do |sdks|
sdks.add 'third_party/gecko-24/linux',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/24.0/sdk/xulrunner-24.0.en-US.linux-i686.sdk.tar.bz2',
'669ef73966d0401f77c0a429f194535c'
sdks.add 'third_party/gecko-24/linux64',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/24.0/sdk/xulrunner-24.0.en-US.linux-x86_64.sdk.tar.bz2',
'5d58e46da74c49cb50cd45edbcb86ccd'
sdks.add 'third_party/gecko-24/win32',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/24.0/sdk/xulrunner-24.0.en-US.win32.sdk.zip',
'29d8fcf397038930a4220b7d60bb3cbf'
sdks.add 'third_party/gecko-31/linux',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/31.0/sdk/xulrunner-31.0.en-US.linux-i686.sdk.tar.bz2',
'e20ce46e69ed36e20aa4faefe3022698'
sdks.add 'third_party/gecko-31/linux64',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/31.0/sdk/xulrunner-31.0.en-US.linux-x86_64.sdk.tar.bz2',
'548ff61bb3a45d0bf645eee7f46e8024'
sdks.add 'third_party/gecko-31/win32',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/31.0/sdk/xulrunner-31.0.en-US.win32.sdk.zip',
'e8d7d9bd67b957bb627de7d3269d240b'
sdks.add 'third_party/gecko-33/linux',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/33.0/sdk/xulrunner-33.0.en-US.linux-i686.sdk.tar.bz2',
'c9b7dede14b9a86060cff0fdf5303c0c'
sdks.add 'third_party/gecko-33/linux64',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/33.0/sdk/xulrunner-33.0.en-US.linux-x86_64.sdk.tar.bz2',
'b7bd9617941c430ffc962f19673a4157'
sdks.add 'third_party/gecko-33/win32',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/33.0/sdk/xulrunner-33.0.en-US.win32.sdk.zip',
'c03b4ec0596a8ea275c788616fbfaa6b'
sdks.add 'third_party/gecko-34/linux',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/34.0/sdk/xulrunner-34.0.en-US.linux-i686.sdk.tar.bz2',
'41021581fb2a6e7c2a4dd4eb838ed67f'
sdks.add 'third_party/gecko-34/linux64',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/34.0/sdk/xulrunner-34.0.en-US.linux-x86_64.sdk.tar.bz2',
'75e3dde3f68ca6ca7c2f3ec50b51396b'
sdks.add 'third_party/gecko-34/win32',
'http://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/34.0/sdk/xulrunner-34.0.en-US.win32.sdk.zip',
'7a613e5e9503e54205dd16de5c1e9aea'
end
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
{"firefox" => "*chrome",
"ie" => "*iexploreproxy",
"opera" => "*opera",
"safari" => "*safari"}.each_pair do |k,v|
selenium_test(:name => "test-core-#{k}",
:srcs => [ "common/test/js/core/*.js" ],
:deps => [
"//java/server/test/org/openqa/selenium:server-with-tests:uber",
],
:browser => v )
end
task :javadocs => [:common, :firefox, :htmlunit, :ie, :remote, :support, :chrome, :selenium] do
mkdir_p "build/javadoc"
sourcepath = ""
classpath = '.'
Dir["third_party/java/*/*.jar"].each do |jar|
classpath << ":" + jar unless jar.to_s =~ /.*-src.*\.jar/
end
[File.join(%w(java client src))].each do |m|
sourcepath += File::PATH_SEPARATOR + m
end
[File.join(%w(java server src))].each do |m|
sourcepath += File::PATH_SEPARATOR + m
end
p sourcepath
cmd = "javadoc -notimestamp -d build/javadoc -sourcepath #{sourcepath} -classpath #{classpath} -subpackages org.openqa.selenium -subpackages com.thoughtworks "
cmd << " -exclude org.openqa.selenium.internal.selenesedriver:org.openqa.selenium.internal.seleniumemulation:org.openqa.selenium.remote.internal"
if (windows?)
cmd = cmd.gsub(/\//, "\\").gsub(/:/, ";")
end
sh cmd
end
task :py_prep_for_install_release => [
"//javascript/firefox-driver:webdriver",
:chrome,
"//javascript/firefox-driver:webdriver_prefs",
"//py:prep"
]
task :py_docs => "//py:docs"
task :py_install => "//py:install"
task :py_release => :py_prep_for_install_release do
sh "grep -v test setup.py > setup_release.py; mv setup_release.py setup.py"
sh "python setup.py sdist upload"
sh "python setup.py bdist_wheel upload"
sh "git checkout setup.py"
end
file "cpp/iedriver/sizzle.h" => [ "//third_party/js/sizzle:sizzle:header" ] do
cp "build/third_party/js/sizzle/sizzle.h", "cpp/iedriver/sizzle.h"
end
task :sizzle_header => [ "cpp/iedriver/sizzle.h" ]
task :ios_driver => [
"//javascript/atoms/fragments:get_visible_text:ios",
"//javascript/atoms/fragments:click:ios",
"//javascript/atoms/fragments:back:ios",
"//javascript/atoms/fragments:forward:ios",
"//javascript/atoms/fragments:submit:ios",
"//javascript/atoms/fragments:xpath:ios",
"//javascript/atoms/fragments:xpaths:ios",
"//javascript/atoms/fragments:type:ios",
"//javascript/atoms/fragments:get_attribute:ios",
"//javascript/atoms/fragments:clear:ios",
"//javascript/atoms/fragments:is_selected:ios",
"//javascript/atoms/fragments:is_enabled:ios",
"//javascript/atoms/fragments:is_shown:ios",
"//javascript/atoms/fragments:stringify:ios",
"//javascript/atoms/fragments:link_text:ios",
"//javascript/atoms/fragments:link_texts:ios",
"//javascript/atoms/fragments:partial_link_text:ios",
"//javascript/atoms/fragments:partial_link_texts:ios",
"//javascript/atoms/fragments:get_interactable_size:ios",
"//javascript/atoms/fragments:scroll_into_view:ios",
"//javascript/atoms/fragments:get_effective_style:ios",
"//javascript/atoms/fragments:get_element_size:ios",
"//javascript/webdriver/atoms/fragments:get_location_in_view:ios"
]
file "build/javascript/deps.js" => FileList[
"third_party/closure/goog/**/*.js",
"third_party/js/wgxpath/**/*.js",
"javascript/*/**/*.js", # Don't depend on js files directly in javascript/
] do
puts "Scanning deps"
deps = Javascript::ClosureDeps.new
Dir["javascript/*/**/*.js"].
reject {|f| f[/javascript\/node/]}.
each {|f| deps.parse_file(f)}
Dir["third_party/js/wgxpath/**/*.js"].each {|f| deps.parse_file(f)}
built_deps = "build/javascript/deps.js"
puts "Writing #{built_deps}"
mkdir_p File.dirname(built_deps)
deps.write_deps(built_deps)
cp built_deps, "javascript/deps.js"
end
desc "Calculate dependencies required for testing the automation atoms"
task :calcdeps => "build/javascript/deps.js"
task :test_webdriverjs => [
"//javascript/webdriver:test:run"
]
desc "Generate a single file with WebDriverJS' public API"
task :webdriverjs => [ "//javascript/webdriver:webdriver" ]
desc "Repack jetty"
task "repack-jetty" => "build/third_party/java/jetty/jetty-repacked.jar"
# Expose the repack task to CrazyFun.
task "//third_party/java/jetty:repacked" => "build/third_party/java/jetty/jetty-repacked.jar"
file "build/third_party/java/jetty/jetty-repacked.jar" => [
"third_party/java/jetty/jetty-continuation-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-http-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-io-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-jmx-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-security-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-server-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-servlet-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-servlets-9.2.13.v20150730.jar",
"third_party/java/jetty/jetty-util-9.2.13.v20150730.jar"
] do |t|
print "Repacking jetty\n"
root = File.join("build", "third_party", "java", "jetty")
jarjar = File.join("third_party", "java", "jarjar", "jarjar-1.4.jar")
rules = File.join("third_party", "java", "jetty", "jetty-repack-rules")
temp = File.join(root, "temp")
# First, process the files
mkdir_p root
mkdir_p temp
t.prerequisites.each do |pre|
filename = File.basename(pre, ".jar")
out = File.join(root, "#{filename}-repacked.jar")
`java -jar #{jarjar} process #{rules} #{pre} #{out}`
`cd #{temp} && jar xf #{File.join("..", File.basename(out))}`
end
# Now, merge them
`cd #{temp} && jar cvf #{File.join("..", "jetty-repacked.jar")} *`
# And copy the artifact to third_party so that eclipse users can be made happy
cp "build/third_party/java/jetty/jetty-repacked.jar", "third_party/java/jetty/jetty-repacked.jar"
end
task
task :release => [
:clean,
:build,
'//java/server/src/org/openqa/selenium/server:server:zip',
'//java/server/src/org/openqa/grid/selenium:selenium:zip',
'//java/client/src/org/openqa/selenium:client-combined:zip',
] do |t|
# Unzip each of the deps and rename the pieces that need renaming
renames = {
"client-combined-nodeps-srcs.jar" => "selenium-java-#{version}-srcs.jar",
"client-combined-nodeps.jar" => "selenium-java-#{version}.jar",
"selenium-nodeps-srcs.jar" => "selenium-server-#{version}-srcs.jar",
"selenium-nodeps.jar" => "selenium-server-#{version}.jar",
"selenium-standalone.jar" => "selenium-server-standalone-#{version}.jar",
}
t.prerequisites.each do |pre|
zip = Rake::Task[pre].out
next unless zip =~ /\.zip$/
temp = zip + "rename"
rm_rf temp
deep = File.join(temp, "/selenium-#{version}")
mkdir_p deep
cp "java/CHANGELOG", deep
cp "NOTICE", deep
cp "LICENSE", deep
sh "cd #{deep} && jar xf ../../#{File.basename(zip)}"
renames.each do |from, to|
src = File.join(deep, from)
next unless File.exists?(src)
mv src, File.join(deep, to)
end
rm_f File.join(deep, "client-combined-standalone.jar")
rm zip
sh "cd #{temp} && jar cMf ../#{File.basename(zip)} *"
rm_rf temp
end
mkdir_p "build/dist"
cp "build/java/server/src/org/openqa/grid/selenium/selenium-standalone.jar", "build/dist/selenium-server-standalone-#{version}.jar"
cp "build/java/server/src/org/openqa/grid/selenium/selenium.zip", "build/dist/selenium-server-#{version}.zip"
cp "build/java/client/src/org/openqa/selenium/client-combined.zip", "build/dist/selenium-java-#{version}.zip"
end
task :push_release => [:release] do
py = "java -jar third_party/py/jython.jar"
if (python?)
py = "python"
end
print "Enter your googlecode username:"
googlecode_username = STDIN.gets.chomp
print "Enter your googlecode password (NOT your gmail password, the one you use for svn, available at https://code.google.com/hosting/settings):"
googlecode_password = STDIN.gets.chomp
[
{:file => "build/dist/selenium-server-standalone-#{version}.jar", :description => "Use this if you want to use the Selenium RC or Remote WebDriver or use Grid 2 without needing any additional dependencies"},
{:file => "build/dist/selenium-server-#{version}.zip", :description => "All variants of the Selenium Server: stand-alone, jar with dependencies and sources."},
{:file => "build/dist/selenium-java-#{version}.zip", :description => "The Java bindings for Selenium 2, including the WebDriver API clients. Download this if you want to use WebDriver API and the Selenium RC clients. Download this if you plan on just using the client-side pieces of Selenium"},
].each do |file|
puts "Uploading file #{file[:file]}..."
sh "#{py} third_party/py/googlecode/googlecode_upload.py -s '#{file[:description]}' -p selenium #{file[:file]} -l Featured -u #{googlecode_username} -w #{googlecode_password}"
end
end
desc 'Build the selenium client jars'
task 'selenium-java' => '//java/client/src/org/openqa/selenium:client-combined:project'
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
# TODO: do this properly
namespace :docs do
task :mime_types do
sh "svn propset svn:mime-type text/html #{Dir['docs/api/**/*.html'].join ' '}"
sh "svn propset svn:mime-type application/javascript #{Dir['docs/api/**/*.js'].join ' '}"
sh "svn propset svn:mime-type text/css #{Dir['docs/api/**/*.css'].join ' '}"
end
task :js => [ "//javascript/node:selenium-webdriver" ] do
# First, delete the old docs.
rm_rf "docs/api/javascript"
mkdir_p "docs/api/javascript"
cp_r "build/javascript/node/selenium-webdriver/docs/.", "docs/api/javascript"
end
end
namespace :node do
task :deploy => [
"//cpp:noblur",
"//cpp:noblur64",
"//javascript/firefox-driver:webdriver",
"//javascript/safari-driver:client",
"//javascript/webdriver:asserts_lib",
"//javascript/webdriver:webdriver_lib",
"//javascript/webdriver:unit_test_lib"
] do
js = Javascript::BaseJs.new
# Get JS lib deps, excluding those need to build the FirefoxDriver.
deps = js.build_deps("", Rake::Task["//javascript/webdriver:asserts_lib"], [])
deps = js.build_deps("", Rake::Task["//javascript/webdriver:webdriver_lib"], deps)
deps = js.build_deps("", Rake::Task["//javascript/webdriver:unit_test_lib"], deps)
deps.uniq!
cmd = "node javascript/node/deploy.js" <<
" --output=build/javascript/node/selenium-webdriver" <<
" --resource=LICENSE:/LICENSE" <<
" --resource=NOTICE:/NOTICE" <<
" --resource=javascript/firefox-driver/webdriver.json:firefox/webdriver.json" <<
" --resource=build/cpp/amd64/libnoblur64.so:firefox/amd64/libnoblur64.so" <<
" --resource=build/cpp/i386/libnoblur.so:firefox/i386/libnoblur.so" <<
" --resource=build/javascript/firefox-driver/webdriver.xpi:firefox/webdriver.xpi" <<
" --resource=build/javascript/safari-driver/client.js:safari/client.js" <<
" --resource=third_party/closure/LICENSE:goog/LICENSE" <<
" --resource=common/src/web/:test/data/" <<
" --exclude_resource=common/src/web/Bin" <<
" --exclude_resource=.gitignore" <<
" --root=javascript" <<
" --root=third_party/closure" <<
" --lib=third_party/closure/goog" <<
" --lib=" << deps.join(" --lib=") <<
" --src=javascript/node/selenium-webdriver"
sh cmd
end
end
namespace :safari do
desc "Build the SafariDriver extension"
task :extension => [ "//javascript/safari-driver:SafariDriver" ]
desc "Build the SafariDriver extension and java client"
task :build => [
:extension,
"//java/client/src/org/openqa/selenium/safari"
]
desc "Run JavaScript tests for Safari"
task :testjs => [
"//javascript/atoms:test_safari:run",
"//javascript/safari-driver:test:run",
"//javascript/selenium-atoms:test_safari:run",
"//javascript/webdriver:test_safari:run"
]
desc "Run Java tests for Safari"
task :testjava => [
"//java/client/test/org/openqa/selenium/safari:test:run"
]
desc "Run all SafariDriver tests"
task :test => [
"safari:testjs",
"safari:testjava"
]
desc "Re-install the SafariDriver extension; OSX only"
task :reinstall => [ :extension ] do |t|
raise StandardError, "Task #{t.name} is only available on OSX" unless mac?
sh "osascript javascript/safari-driver/reinstall.scpt"
end
end
namespace :marionette do
atoms_file = "build/javascript/marionette/atoms.js"
func_lookup = {"//javascript/atoms/fragments:clear:firefox" => "clearElement",
"//javascript/webdriver/atoms/fragments:get_attribute:firefox" => "getElementAttribute",
"//javascript/webdriver/atoms/fragments:get_text:firefox" => "getElementText",
"//javascript/atoms/fragments:is_enabled:firefox" => "isElementEnabled",
"//javascript/webdriver/atoms/fragments:is_selected:firefox" => "isElementSelected",
"//javascript/atoms/fragments:is_displayed:firefox" => "isElementDisplayed"}
# This task takes all the relevant Marionette atom dependencies
# (listed in func_lookup) and concatenates them to a single atoms.js
# file.
#
# The function names are defined in the func_lookup dictionary of
# target to name.
#
# Instead of having this custom behaviour in Selenium, Marionette
# should use the individually generated .js atom files directly in
# the future.
#
# (See Mozilla bug 936204.)
desc "Generate Marionette atoms"
task :atoms => func_lookup.keys do |task|
b = StringIO.new
b << File.read("javascript/marionette/COPYING") << "\n"
b << "\n"
b << "const EXPORTED_SYMBOLS = [\"atoms\"];" << "\n"
b << "\n"
b << "function atoms() {};" << "\n"
b << "\n"
task.prerequisites.each do |target|
out = Rake::Task[target].out
atom = File.read(out).chop
b << "// target #{target}" << "\n"
b << "atoms.#{func_lookup[target]} = #{atom};" << "\n"
b << "\n"
end
puts "Generating uberatoms file: #{atoms_file}"
FileUtils.mkpath("build/javascript/marionette")
File.open("build/javascript/marionette/atoms.js", "w+") do |h|
h.write(b.string)
end
end
end
task :authors do
puts "Generating AUTHORS file"
sh "(git log --use-mailmap --format='%aN <%aE>' ; cat .OLD_AUTHORS) | sort -uf > AUTHORS"
end
namespace :copyright do
task :update do
Copyright.Update(
FileList["javascript/**/*.js"].exclude(
"javascript/atoms/test/jquery.min.js",
"javascript/firefox-driver/extension/components/httpd.js",
"javascript/jsunit/**/*.js",
"javascript/node/selenium-webdriver/node_modules/**/*.js",
"javascript/selenium-core/lib/**/*.js",
"javascript/selenium-core/scripts/ui-element.js",
"javascript/selenium-core/scripts/ui-map-sample.js",
"javascript/selenium-core/scripts/user-extensions.js",
"javascript/selenium-core/scripts/xmlextras.js",
"javascript/selenium-core/xpath/**/*.js"))
Copyright.Update(
FileList["py/**/*.py"],
:style => "#")
Copyright.Update(
FileList["rb/**/*.rb"].exclude(
"rb/spec/integration/selenium/client/api/screenshot_spec.rb"),
:style => "#",
:prefix => "# encoding: utf-8\n#\n")
Copyright.Update(
FileList["java/**/*.java"].exclude(
"java/client/src/org/openqa/selenium/internal/Base64Encoder.java",
"java/client/test/org/openqa/selenium/internal/Base64EncoderTest.java",
"java/server/src/cybervillains/**/*.java",
"java/server/src/org/openqa/selenium/server/FrameGroupCommandQueueSet.java",
"java/server/src/org/openqa/selenium/server/FutureFileResource.java",
"java/server/src/org/openqa/selenium/server/ProxyHandler.java"
))
end
end
at_exit do
if File.exist?(".git") && !Platform.windows?
sh "sh .git-fixfiles"
end
end