forked from jruby/jruby-openssl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
67 lines (61 loc) · 2.07 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
#-*- mode: ruby -*-
begin
require 'ruby-maven'
rescue LoadError
warn "ruby-maven not available - some tasks will not work " <<
"either `gem install ruby-maven' or use mvn instead of rake"
desc "Package jopenssl.jar with the compiled classes"
task :jar do
sh "mvn prepare-package -Dmaven.test.skip=true"
end
namespace :jar do
desc "Package jopenssl.jar file (and dependendent jars)"
task :all do
sh "mvn package -Dmaven.test.skip=true"
end
end
else
#Rake::Task[:jar].clear rescue nil
desc "Package jopenssl.jar with the compiled classes"
task :jar do
RubyMaven.exec( 'prepare-package -Dmaven.test.skip=true' )
end
namespace :jar do
desc "Package jopenssl.jar file (and dependendent jars)"
task :all do
RubyMaven.exec( 'package -Dmaven.test.skip=true' )
end
end
end
task :build do
RubyMaven.exec('package -Dmaven.test.skip')
end
task :default => :build
file('lib/jopenssl.jar') { Rake::Task['jar'].invoke }
require 'rake/testtask'
Rake::TestTask.new do |task|
task.libs << File.expand_path('src/test/ruby', File.dirname(__FILE__))
test_files = FileList['src/test/ruby/**/test*.rb'].to_a
task.test_files = test_files.map { |path| path.sub('src/test/ruby/', '') }
task.verbose = true
task.loader = :direct
task.ruby_opts = [ '-C', 'src/test/ruby', '-rbundler/setup' ]
end
task :test => 'lib/jopenssl.jar'
namespace :integration do
it_path = File.expand_path('../src/test/integration', __FILE__)
task :install do
Dir.chdir(it_path) do
ruby "-S bundle install --gemfile '#{it_path}/Gemfile'"
end
end
# desc "Run IT tests"
task :test => 'lib/jopenssl.jar' do
unless File.exist?(File.join(it_path, 'Gemfile.lock'))
raise "bundle not installed, run `rake integration:install'"
end
loader = "ARGV.each { |f| require f }" ; lib = [ 'lib', it_path ]
test_files = FileList['src/test/integration/*_test.rb'].map { |path| path.sub('src/test/integration/', '') }
ruby "-I#{lib.join(':')} -C src/test/integration -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
end
end