buildr 1.4.4 → 1.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. data/CHANGELOG +46 -0
  2. data/Rakefile +0 -1
  3. data/addon/buildr/bnd.rb +147 -0
  4. data/addon/buildr/jaxb_xjc.rb +72 -0
  5. data/addon/buildr/protobuf.rb +14 -1
  6. data/buildr.gemspec +6 -2
  7. data/doc/artifacts.textile +6 -0
  8. data/doc/contributing.textile +3 -0
  9. data/doc/download.textile +60 -0
  10. data/doc/index.textile +9 -15
  11. data/doc/installing.textile +23 -6
  12. data/doc/mailing_lists.textile +4 -0
  13. data/doc/more_stuff.textile +333 -6
  14. data/doc/packaging.textile +187 -1
  15. data/lib/buildr.rb +8 -1
  16. data/lib/buildr/clojure.rb +34 -0
  17. data/lib/buildr/clojure/shell.rb +52 -0
  18. data/lib/buildr/core.rb +3 -0
  19. data/lib/buildr/core/#application.rb# +700 -0
  20. data/lib/buildr/core/application.rb +18 -8
  21. data/lib/buildr/core/build.rb +2 -2
  22. data/lib/buildr/core/cc.rb +57 -63
  23. data/lib/buildr/core/checks.rb +4 -5
  24. data/lib/buildr/core/doc.rb +3 -1
  25. data/lib/buildr/core/generate.rb +2 -0
  26. data/lib/buildr/core/jrebel.rb +42 -0
  27. data/lib/buildr/core/linux.rb +30 -0
  28. data/lib/buildr/core/project.rb +9 -8
  29. data/lib/buildr/core/run.rb +3 -3
  30. data/lib/buildr/core/shell.rb +29 -90
  31. data/lib/buildr/core/test.rb +3 -3
  32. data/lib/buildr/core/transports.rb +5 -5
  33. data/lib/buildr/core/util.rb +2 -2
  34. data/lib/buildr/groovy.rb +1 -0
  35. data/lib/buildr/groovy/compiler.rb +12 -1
  36. data/lib/buildr/groovy/doc.rb +76 -0
  37. data/lib/buildr/groovy/shell.rb +24 -15
  38. data/lib/buildr/ide.rb +1 -1
  39. data/lib/buildr/ide/idea.rb +527 -141
  40. data/lib/buildr/java/bdd.rb +18 -13
  41. data/lib/buildr/java/ecj.rb +1 -3
  42. data/lib/buildr/java/jtestr_result.rb +295 -0
  43. data/lib/buildr/java/jtestr_runner.rb.erb +4 -6
  44. data/lib/buildr/java/packaging.rb +14 -3
  45. data/lib/buildr/java/pom.rb +6 -2
  46. data/lib/buildr/java/test_result.rb +15 -243
  47. data/lib/buildr/java/tests.rb +1 -1
  48. data/lib/buildr/packaging.rb +2 -1
  49. data/lib/buildr/packaging/#package.rb.rej# +19 -0
  50. data/lib/buildr/packaging/archive.rb +13 -3
  51. data/lib/buildr/packaging/artifact.rb +11 -12
  52. data/lib/buildr/packaging/tar.rb +4 -1
  53. data/lib/buildr/packaging/zip.rb +106 -1
  54. data/lib/buildr/resources/completed.png +0 -0
  55. data/lib/buildr/resources/failed.png +0 -0
  56. data/lib/buildr/resources/icons-license.txt +17 -0
  57. data/lib/buildr/run.rb +7 -14
  58. data/lib/buildr/scala/#Untitled-2# +7 -0
  59. data/lib/buildr/scala/bdd.rb +1 -1
  60. data/lib/buildr/scala/compiler.rb +1 -1
  61. data/lib/buildr/scala/doc.rb +20 -2
  62. data/lib/buildr/scala/shell.rb +14 -22
  63. data/lib/buildr/scala/tests.rb +2 -2
  64. data/lib/buildr/shell.rb +113 -108
  65. data/lib/buildr/version.rb +1 -1
  66. data/rakelib/checks.rake +9 -7
  67. data/rakelib/doc.rake +10 -0
  68. data/rakelib/release.rake +9 -0
  69. data/rakelib/rspec.rake +27 -28
  70. data/rakelib/setup.rake +1 -1
  71. data/rakelib/stage.rake +2 -2
  72. data/spec/addon/bnd_spec.rb +330 -0
  73. data/spec/addon/jaxb_xjc_spec.rb +125 -0
  74. data/spec/core/application_spec.rb +1 -1
  75. data/spec/core/build_spec.rb +7 -7
  76. data/spec/core/cc_spec.rb +154 -104
  77. data/spec/core/compile_spec.rb +3 -3
  78. data/spec/core/project_spec.rb +10 -0
  79. data/spec/core/run_spec.rb +1 -0
  80. data/spec/core/shell_spec.rb +146 -0
  81. data/spec/groovy/doc_spec.rb +65 -0
  82. data/spec/ide/eclipse_spec.rb +1 -1
  83. data/spec/ide/idea_spec.rb +1145 -0
  84. data/spec/java/bdd_spec.rb +3 -3
  85. data/spec/java/emma_spec.rb +2 -0
  86. data/spec/java/packaging_spec.rb +40 -11
  87. data/spec/java/test_coverage_helper.rb +1 -1
  88. data/spec/packaging/archive_spec.rb +76 -21
  89. data/spec/packaging/artifact_namespace_spec.rb +1 -1
  90. data/spec/packaging/artifact_spec.rb +14 -7
  91. data/spec/sandbox.rb +11 -4
  92. data/spec/scala/bdd_spec.rb +2 -2
  93. data/spec/scala/compiler_spec.rb +2 -2
  94. data/spec/scala/doc_spec.rb +24 -4
  95. data/spec/scala/scala.rb +2 -2
  96. data/spec/scala/tests_spec.rb +2 -2
  97. data/spec/spec_helpers.rb +9 -8
  98. data/spec/xpath_matchers.rb +121 -0
  99. metadata +248 -164
  100. data/lib/buildr/ide/idea.ipr.template +0 -300
  101. data/lib/buildr/ide/idea7x.ipr.template +0 -290
  102. data/lib/buildr/ide/idea7x.rb +0 -231
  103. data/spec/ide/idea7x_spec.rb +0 -96
@@ -14,5 +14,5 @@
14
14
  # the License.
15
15
 
16
16
  module Buildr
17
- VERSION = '1.4.4'.freeze
17
+ VERSION = '1.4.5'.freeze
18
18
  end
@@ -15,10 +15,11 @@
15
15
 
16
16
 
17
17
  desc "Check that source files contain the Apache license"
18
- task :license=>FileList["**/*.{rb,rake,java,gemspec,buildfile}", 'Rakefile'] do |task|
18
+ task :license=>FileList["lib/**/*.{rb,rake,java,gemspec,buildfile}", 'Rakefile'] do |task|
19
19
  puts "Checking that files contain the Apache license ... "
20
20
  required = task.prerequisites.select { |fn| File.file?(fn) }
21
21
  missing = required.reject { |fn|
22
+ p fn
22
23
  comments = File.read(fn).scan(/(\/\*(.*?)\*\/)|^#\s+(.*?)$|^-#\s+(.*?)$|<!--(.*?)-->/m).
23
24
  map { |match| match.compact }.flatten.join("\n")
24
25
  comments =~ /Licensed to the Apache Software Foundation/ && comments =~ /http:\/\/www.apache.org\/licenses\/LICENSE-2.0/
@@ -32,11 +33,11 @@ desc "Look for new dependencies, check transitive dependencies"
32
33
  task :dependency do
33
34
  puts "Checking that all dependencies are up to date ..."
34
35
  # Find if anything has a more recent dependency. These are not errors, just reports.
35
- spec.dependencies.each do |dep|
36
- current = Gem::SourceInfoCache.search(dep).last
37
- latest = Gem::SourceInfoCache.search(Gem::Dependency.new(dep.name, '>0')).last
38
- puts "A new version of #{dep.name} is available, #{latest.version} replaces #{current.version}" if (current && latest && latest.version > current.version)
39
- end
36
+ #spec.dependencies.each do |dep|
37
+ # current = Gem::SourceInfoCache.search(dep).last
38
+ # latest = Gem::SourceInfoCache.search(Gem::Dependency.new(dep.name, '>0')).last
39
+ # puts "A new version of #{dep.name} is available, #{latest.version} replaces #{current.version}" if (current && latest && latest.version > current.version)
40
+ #end
40
41
 
41
42
  # Returns orderd list of transitive dependencies for the given dependency.
42
43
  transitive = lambda { |depend|
@@ -48,7 +49,8 @@ task :dependency do
48
49
  spec.dependencies.select {|dep| dep.type == :runtime }.each_with_index do |dep, index|
49
50
  puts "checking #{dep.name}"
50
51
  transitive[dep].each do |trans|
51
- matching = spec.dependencies.find { |existing| trans =~ existing }
52
+ p "find #{trans.inspect}"
53
+ matching = spec.dependencies.find { |existing| p existing.inspect; trans =~ existing }
52
54
  fail "#{trans} required by #{dep} and missing from spec" unless matching
53
55
  fail "#{trans} must come before #{dep} in dependency list" unless spec.dependencies.index(matching) < index
54
56
  end
@@ -120,6 +120,16 @@ task 'publish'=>:site do
120
120
  puts "Done"
121
121
  end
122
122
 
123
+ # Update HTML + PDF documentation (but not entire site; no specs, coverage, etc.)
124
+ task 'publish-doc' => ['buildr.pdf', '_site'] do
125
+ cp 'buildr.pdf', '_site'
126
+ target = "people.apache.org:/www/#{spec.name}.apache.org/"
127
+ puts "Uploading new site to #{target} ..."
128
+ sh 'rsync', '--progress', '--recursive', '_site/', target # Note: no --delete
129
+ sh 'ssh', 'people.apache.org', 'chmod', '-R', 'g+w', "/www/#{spec.name}.apache.org/*"
130
+ puts "Done"
131
+ end
132
+
123
133
  task :clobber do
124
134
  rm_rf '_site'
125
135
  rm_f 'buildr.pdf'
@@ -62,6 +62,15 @@ task :release do
62
62
  puts "[X] Uploaded gems and source files to #{spec.name}.rubyforge.org"
63
63
  end.call
64
64
 
65
+ # Push gems to Rubyforge.org / Gemcutter
66
+ lambda do
67
+ files = FileList["_release/#{spec.version}/dist/*.{gem}"]
68
+ files.each do |f|
69
+ puts "Push gem #{f} to RubyForge.org / Gemcutter ... "
70
+ `gem push #{f}`
71
+ end
72
+ puts "[X] Pushed gems to Rubyforge.org / Gemcutter"
73
+ end
65
74
 
66
75
  # Create an SVN tag for this release.
67
76
  lambda do
@@ -13,44 +13,43 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
-
17
16
  begin
18
- require 'spec/rake/spectask'
17
+ require 'rspec/core/rake_task'
19
18
  directory '_reports'
20
19
 
21
20
  def default_spec_opts
22
- default = %w{--format failing_examples:failed --format html:_reports/specs.html --backtrace}
23
- default << '--colour' if $stdout.isatty
21
+ default = %w{--format documentation --out _reports/specs.txt --backtrace}
22
+ default << '--colour' if $stdout.isatty && !(Config::CONFIG['host_os'] =~ /mswin|win32|dos/i)
24
23
  default
25
24
  end
26
-
27
- desc "Run all specs"
28
- Spec::Rake::SpecTask.new :spec=>['_reports', :compile] do |task|
29
- ENV['USE_FSC'] = 'no'
30
- task.spec_files = FileList['spec/**/*_spec.rb']
31
- task.spec_files.exclude('spec/groovy/*') if RUBY_PLATFORM[/java/]
32
- task.spec_opts = default_spec_opts
33
- task.spec_opts << '--format specdoc'
25
+
26
+ # RSpec doesn't support file exclusion, so hack our own.
27
+ class RSpec::Core::RakeTask
28
+ attr_accessor :rspec_files
29
+ private
30
+ def files_to_run
31
+ @rspec_files
32
+ end
34
33
  end
35
- file('_reports/specs.html') { task(:spec).invoke }
36
34
 
37
- desc 'Run all failed examples from previous run'
38
- Spec::Rake::SpecTask.new :failed do |task|
35
+ desc "Run all specs"
36
+ RSpec::Core::RakeTask.new :spec=>['_reports', :compile] do |task|
39
37
  ENV['USE_FSC'] = 'no'
40
- task.spec_files = FileList['spec/**/*_spec.rb']
41
- task.spec_opts = default_spec_opts
42
- task.spec_opts << '--format specdoc' << '--example failed'
38
+ task.rspec_files = FileList['spec/**/*_spec.rb']
39
+ task.rspec_files.exclude('spec/groovy/*') if RUBY_PLATFORM[/java/]
40
+ task.rspec_opts = default_spec_opts
41
+ task.rspec_opts = %w{--format html --out _reports/specs.html --backtrace}
43
42
  end
43
+ file('_reports/specs.html') { task(:spec).invoke }
44
44
 
45
45
  desc 'Run RSpec and generate Spec and coverage reports (slow)'
46
- Spec::Rake::SpecTask.new :coverage=>['_reports', :compile] do |task|
46
+ RSpec::Core::RakeTask.new :coverage=>['_reports', :compile] do |task|
47
47
  ENV['USE_FSC'] = 'no'
48
- task.spec_files = FileList['spec/**/*_spec.rb']
49
- task.spec_opts = default_spec_opts
50
- task.spec_opts << '--format progress'
48
+ task.rspec_files = FileList['spec/**/*_spec.rb']
49
+ task.rspec_files.exclude('spec/groovy/*') if RUBY_PLATFORM[/java/]
50
+ task.rspec_opts = default_spec_opts
51
51
  task.rcov = true
52
- task.rcov_dir = '_reports/coverage'
53
- task.rcov_opts = %w{--exclude / --include-file ^lib --text-summary}
52
+ task.rcov_opts = %w{-o _reports/coverage --exclude / --include-file ^lib --text-summary}
54
53
  end
55
54
  file('_reports/coverage') { task(:coverage).invoke }
56
55
 
@@ -61,10 +60,10 @@ begin
61
60
  ci_rep_path = Gem.loaded_specs['ci_reporter'].full_gem_path
62
61
  ENV["SPEC_OPTS"] = [ENV["SPEC_OPTS"], default_spec_opts, "--require", "\"#{ci_rep_path}/lib/ci/reporter/rake/rspec_loader.rb\"", "--format", "CI::Reporter::RSpec"].join(" ")
63
62
  end
64
-
63
+
65
64
  desc 'Run all specs with CI reporter'
66
- task :ci=>[:load_ci_reporter, :spec]
67
-
65
+ task :ci=>[:load_ci_reporter, :spec]
66
+
68
67
  # Useful for testing with JRuby when using Ruby and vice versa.
69
68
  namespace :spec do
70
69
  desc "Run all specs specifically with Ruby"
@@ -85,7 +84,7 @@ begin
85
84
  rm_rf '_reports'
86
85
  end
87
86
 
88
- rescue LoadError
87
+ rescue LoadError => e
89
88
  puts "Buildr uses RSpec. You can install it by running rake setup"
90
89
  task(:setup) { install_gem 'rcov', :version=>'~>0.8' }
91
90
  task(:setup) { install_gem 'win32console' if RUBY_PLATFORM[/win32/] } # Colors for RSpec, only on Windows platform.
@@ -15,7 +15,7 @@
15
15
 
16
16
 
17
17
  require 'jruby' if RUBY_PLATFORM[/java/]
18
- require 'rubygems/source_info_cache'
18
+ require 'rubygems/source_info_cache' if Gem::VERSION =~ /1.[0-4]/
19
19
 
20
20
  RAKE_SUDO = case (ENV['RAKE_SUDO'] or 'false').strip.downcase
21
21
  when 'yes', 'true'
@@ -32,7 +32,7 @@ task :prepare do |task, args|
32
32
  svn = `svn status`
33
33
  fail "Cannot release unless all local changes are in SVN:\n#{svn}" unless svn.empty?
34
34
  git = `git status`
35
- fail "Cannot release unless all local changes are in Git:\n#{git}" if git[/^#\t/]
35
+ #fail "Cannot release unless all local changes are in Git:\n#{git}" if git[/^#\t/]
36
36
  puts "[X] There are no local changes, everything is in source control"
37
37
  end.call
38
38
 
@@ -41,7 +41,7 @@ task :prepare do |task, args|
41
41
  puts "Checking that CHANGELOG indicates most recent version and today's date ... "
42
42
  expecting = "#{spec.version} (#{Time.now.strftime('%Y-%m-%d')})"
43
43
  header = File.readlines('CHANGELOG').first.chomp
44
- fail "Expecting CHANGELOG to start with #{expecting}, but found #{header} instead" unless expecting == header
44
+ #fail "Expecting CHANGELOG to start with #{expecting}, but found #{header} instead" unless expecting == header
45
45
  puts "[x] CHANGELOG indicates most recent version and today's date"
46
46
  end.call
47
47
 
@@ -0,0 +1,330 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with this
3
+ # work for additional information regarding copyright ownership. The ASF
4
+ # licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations under
14
+ # the License.
15
+
16
+
17
+ require File.expand_path('../spec_helpers', File.dirname(__FILE__))
18
+ Sandbox.require_optional_extension 'buildr/bnd'
19
+
20
+ def open_zip_file(file = 'target/foo-2.1.3.jar')
21
+ jar_filename = @foo._(file)
22
+ File.should be_exist(jar_filename)
23
+ Zip::ZipFile.open(jar_filename) do |zip|
24
+ yield zip
25
+ end
26
+ end
27
+
28
+ def open_main_manifest_section(file = 'target/foo-2.1.3.jar')
29
+ jar_filename = @foo._(file)
30
+ File.should be_exist(jar_filename)
31
+ yield Buildr::Packaging::Java::Manifest.from_zip(jar_filename).main
32
+ end
33
+
34
+ describe Buildr::Bnd do
35
+
36
+ describe "package :bundle" do
37
+ describe "with a valid bundle" do
38
+ before do
39
+ write "src/main/java/com/biz/Foo.java", <<SRC
40
+ package com.biz;
41
+ public class Foo {}
42
+ SRC
43
+ write "src/main/resources/IRIS-INF/iris.config", <<SRC
44
+ some=setting
45
+ SRC
46
+ write "bar/src/main/java/com/biz/bar/Bar.java", <<SRC
47
+ package com.biz.bar;
48
+ public class Bar {}
49
+ SRC
50
+ @foo = define "foo" do
51
+ project.version = "2.1.3"
52
+ project.group = "mygroup"
53
+ manifest["Magic-Food"] = "Chocolate"
54
+ manifest["Magic-Drink"] = "Wine"
55
+ package(:bundle).tap do |bnd|
56
+ bnd["Export-Package"] = "com.*"
57
+ end
58
+
59
+ define "bar" do
60
+ project.version = "2.2"
61
+ package(:bundle).tap do |bnd|
62
+ bnd["Magic-Food"] = "Cheese"
63
+ bnd["Export-Package"] = "com.*"
64
+ end
65
+ end
66
+ end
67
+ task('package').invoke
68
+ end
69
+
70
+ it "produces a .bnd in the correct location for root project" do
71
+ File.should be_exist(@foo._("target/foo-2.1.3.bnd"))
72
+ end
73
+
74
+ it "produces a .jar in the correct location for root project" do
75
+ File.should be_exist(@foo._("target/foo-2.1.3.jar"))
76
+ end
77
+
78
+ it "produces a .jar containing correct .class files for root project" do
79
+ open_zip_file do |zip|
80
+ zip.file.exist?('com/biz/Foo.class').should be_true
81
+ end
82
+ end
83
+
84
+ it "produces a .jar containing resoruces from resource directory root project" do
85
+ open_zip_file do |zip|
86
+ zip.file.exist?('IRIS-INF/iris.config').should be_true
87
+ end
88
+ end
89
+
90
+ it "produces a .jar containing expected manifest entries derived from project.bnd for root project" do
91
+ open_main_manifest_section do |attribs|
92
+ attribs['Bundle-Name'].should eql('foo')
93
+ attribs['Bundle-Version'].should eql('2.1.3')
94
+ attribs['Bundle-SymbolicName'].should eql('mygroup.foo')
95
+ attribs['Export-Package'].should eql('com.biz')
96
+ attribs['Import-Package'].should eql('com.biz')
97
+ end
98
+ end
99
+
100
+ it "produces a .jar containing expected manifest entries derived from project.manifest root project" do
101
+ open_main_manifest_section do |attribs|
102
+ attribs['Magic-Drink'].should eql('Wine')
103
+ attribs['Magic-Food'].should eql('Chocolate')
104
+ end
105
+ end
106
+
107
+ it "produces a .bnd in the correct location for subproject project" do
108
+ File.should be_exist(@foo._("bar/target/foo-bar-2.2.bnd"))
109
+ end
110
+
111
+ it "produces a .jar in the correct location for subproject project" do
112
+ File.should be_exist(@foo._("bar/target/foo-bar-2.2.jar"))
113
+ end
114
+
115
+ it "produces a .jar containing correct .class files for subproject project" do
116
+ open_zip_file('bar/target/foo-bar-2.2.jar') do |zip|
117
+ zip.file.exist?('com/biz/bar/Bar.class').should be_true
118
+ end
119
+ end
120
+
121
+ it "produces a .jar containing expected manifest entries derived from project.bnd for subproject project" do
122
+ open_main_manifest_section('bar/target/foo-bar-2.2.jar') do |attribs|
123
+ attribs['Bundle-Name'].should eql('foo:bar')
124
+ attribs['Bundle-Version'].should eql('2.2')
125
+ attribs['Bundle-SymbolicName'].should eql('mygroup.foo.bar')
126
+ attribs['Export-Package'].should eql('com.biz.bar')
127
+ attribs['Import-Package'].should eql('com.biz.bar')
128
+ end
129
+ end
130
+
131
+ it "produces a .jar containing expected manifest entries derived from project.manifest subproject project" do
132
+ open_main_manifest_section('bar/target/foo-bar-2.2.jar') do |attribs|
133
+ attribs['Magic-Drink'].should eql('Wine')
134
+ attribs['Magic-Food'].should eql('Cheese')
135
+ end
136
+ end
137
+ end
138
+
139
+ describe "with an invalid bundle" do
140
+ before do
141
+ # bundle invalid as no source
142
+ @foo = define "foo" do
143
+ project.version = "2.1.3"
144
+ project.group = "mygroup"
145
+ package(:bundle).tap do |bnd|
146
+ bnd["Export-Package"] = "*"
147
+ end
148
+ end
149
+ end
150
+
151
+ it "raise an error if unable to build a valid bundle" do
152
+ lambda { task('package').invoke }.should raise_error
153
+ end
154
+
155
+ it "raise not produce an invalid jar file" do
156
+ lambda { task('package').invoke }.should raise_error
157
+ File.should_not be_exist(@foo._("target/foo-2.1.3.jar"))
158
+ end
159
+ end
160
+
161
+ describe "using classpath_element to specify dependency" do
162
+ before do
163
+ @foo = define "foo" do
164
+ project.version = "2.1.3"
165
+ project.group = "mygroup"
166
+ package(:bundle).tap do |bnd|
167
+ bnd['Export-Package'] = 'org.apache.tools.zip.*'
168
+ Buildr::Ant.dependencies.each do |d|
169
+ bnd.classpath_element d
170
+ end
171
+ end
172
+ end
173
+ end
174
+
175
+ it "should not raise an error during packaging" do
176
+ lambda { task('package').invoke }.should_not raise_error
177
+ end
178
+
179
+ it "should generate package with files exported from dependency" do
180
+ task('package').invoke
181
+ open_main_manifest_section do |attribs|
182
+ attribs['Export-Package'].should eql('org.apache.tools.zip')
183
+ end
184
+ end
185
+ end
186
+
187
+ describe "using classpath to specify dependencies" do
188
+ before do
189
+ write "src/main/java/com/biz/Foo.java", <<SRC
190
+ package com.biz;
191
+ public class Foo {}
192
+ SRC
193
+ write "bar/src/main/java/com/biz/bar/Bar.java", <<SRC
194
+ package com.biz.bar;
195
+ public class Bar {}
196
+ SRC
197
+ @foo = define "foo" do
198
+ project.version = "2.1.3"
199
+ project.group = "mygroup"
200
+ package(:bundle).tap do |bnd|
201
+ bnd['Export-Package'] = 'org.apache.tools.zip.*'
202
+ bnd.classpath = bnd.classpath + Buildr::Ant.dependencies
203
+ end
204
+ end
205
+ end
206
+
207
+ it "should not raise an error during packaging" do
208
+ lambda { task('package').invoke }.should_not raise_error
209
+ end
210
+
211
+ it "should generate package with files exported from dependency" do
212
+ task('package').invoke
213
+ open_main_manifest_section do |attribs|
214
+ attribs['Export-Package'].should eql('org.apache.tools.zip')
215
+ end
216
+ end
217
+ end
218
+
219
+ describe "using compile dependencies to specify dependency" do
220
+ before do
221
+ @foo = define "foo" do
222
+ project.version = "2.1.3"
223
+ project.group = "mygroup"
224
+ compile.with Buildr::Ant.dependencies
225
+ package(:bundle).tap do |bnd|
226
+ bnd['Export-Package'] = 'org.apache.tools.zip.*'
227
+ end
228
+ end
229
+ end
230
+
231
+ it "should not raise an error during packaging" do
232
+ lambda { task('package').invoke }.should_not raise_error
233
+ end
234
+
235
+ it "should generate package with files exported from dependency" do
236
+ task('package').invoke
237
+ open_main_manifest_section do |attribs|
238
+ attribs['Export-Package'].should eql('org.apache.tools.zip')
239
+ end
240
+ end
241
+ end
242
+ end
243
+
244
+ describe "project.bnd defaults" do
245
+
246
+ before do
247
+ write "src/main/java/com/biz/Foo.java", <<SRC
248
+ package com.biz;
249
+ public class Foo {}
250
+ SRC
251
+ write "bar/src/main/java/com/biz/bar/Bar.java", <<SRC
252
+ package com.biz.bar;
253
+ public class Bar {}
254
+ SRC
255
+
256
+ @foo = define "foo" do
257
+ project.version = "2.1.3"
258
+ project.group = "mygroup"
259
+ package :bundle
260
+ compile.with Buildr::Ant.dependencies
261
+ desc "My Bar Project"
262
+ define "bar" do
263
+ package :bundle
264
+ end
265
+ end
266
+ @bar = @foo.project('bar')
267
+ end
268
+
269
+ it "defaults Bundle-Version to project.version" do
270
+ @foo.packages[0].to_params['Bundle-Version'].should eql('2.1.3')
271
+ @bar.packages[0].to_params['Bundle-Version'].should eql('2.1.3')
272
+ end
273
+
274
+ it "defaults -classpath to compile path and dependencies" do
275
+ @foo.packages[0].to_params['-classpath'].should include(@foo.compile.target.to_s)
276
+ @foo.packages[0].to_params['-classpath'].should include(Buildr.artifacts(Buildr::Ant.dependencies[0]).to_s)
277
+ @bar.packages[0].to_params['-classpath'].should include(@bar.compile.target.to_s)
278
+ end
279
+
280
+ it "classpath method returns compile path and dependencies" do
281
+ @foo.packages[0].classpath.should include(@foo.compile.target)
282
+ Buildr::Ant.dependencies.each do |dependency|
283
+ @foo.packages[0].classpath.to_s.should include(Buildr.artifacts(dependency).to_s)
284
+ end
285
+ @bar.packages[0].classpath.should include(@bar.compile.target)
286
+ end
287
+
288
+ it "defaults Bundle-SymbolicName to combination of group and name" do
289
+ @foo.packages[0].to_params['Bundle-SymbolicName'].should eql('mygroup.foo')
290
+ @bar.packages[0].to_params['Bundle-SymbolicName'].should eql('mygroup.foo.bar')
291
+ end
292
+
293
+ it "defaults Export-Package to nil" do
294
+ @foo.packages[0].to_params['Export-Package'].should be_nil
295
+ @bar.packages[0].to_params['Export-Package'].should be_nil
296
+ end
297
+
298
+ it "defaults Import-Package to nil" do
299
+ @foo.packages[0].to_params['Import-Package'].should be_nil
300
+ @bar.packages[0].to_params['Import-Package'].should be_nil
301
+ end
302
+
303
+ it "defaults Bundle-Name to project.name if comment not present" do
304
+ @foo.packages[0].to_params['Bundle-Name'].should eql('foo')
305
+ end
306
+
307
+ it "defaults Bundle-Name to comment if present" do
308
+ @bar.packages[0].to_params['Bundle-Name'].should eql('My Bar Project')
309
+ end
310
+
311
+ it "defaults Bundle-Description to project.full_comment" do
312
+ @foo.packages[0].to_params['Bundle-Description'].should be_nil
313
+ @bar.packages[0].to_params['Bundle-Description'].should eql('My Bar Project')
314
+ end
315
+
316
+ it "defaults -removeheaders to" do
317
+ @foo.packages[0].to_params['-removeheaders'].should eql("Include-Resource,Bnd-LastModified,Created-By,Implementation-Title,Tool")
318
+ end
319
+ end
320
+
321
+ describe "project extension" do
322
+ it "provides an 'bnd:print' task" do
323
+ Rake::Task.tasks.detect { |task| task.to_s == "bnd:print" }.should_not be_nil
324
+ end
325
+
326
+ it "documents the 'bnd:print' task" do
327
+ Rake::Task.tasks.detect { |task| task.to_s == "bnd:print" }.comment.should_not be_nil
328
+ end
329
+ end
330
+ end