bundler-prehistoric 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +3 -0
- data/.travis.yml +100 -0
- data/CHANGELOG.md +1640 -0
- data/CONTRIBUTING.md +32 -0
- data/DEVELOPMENT.md +117 -0
- data/Gemfile +3 -0
- data/ISSUES.md +96 -0
- data/LICENSE.md +23 -0
- data/README.md +46 -0
- data/Rakefile +256 -0
- data/UPGRADING.md +103 -0
- data/bin/bundle +21 -0
- data/bin/bundle_ruby +56 -0
- data/bin/bundler +21 -0
- data/bundler.gemspec +33 -0
- data/lib/bundler.rb +442 -0
- data/lib/bundler/backports/time.rb +7 -0
- data/lib/bundler/capistrano.rb +16 -0
- data/lib/bundler/cli.rb +395 -0
- data/lib/bundler/cli/binstubs.rb +38 -0
- data/lib/bundler/cli/cache.rb +34 -0
- data/lib/bundler/cli/check.rb +35 -0
- data/lib/bundler/cli/clean.rb +19 -0
- data/lib/bundler/cli/common.rb +54 -0
- data/lib/bundler/cli/config.rb +84 -0
- data/lib/bundler/cli/console.rb +39 -0
- data/lib/bundler/cli/exec.rb +37 -0
- data/lib/bundler/cli/gem.rb +101 -0
- data/lib/bundler/cli/init.rb +33 -0
- data/lib/bundler/cli/inject.rb +33 -0
- data/lib/bundler/cli/install.rb +133 -0
- data/lib/bundler/cli/open.rb +23 -0
- data/lib/bundler/cli/outdated.rb +80 -0
- data/lib/bundler/cli/package.rb +36 -0
- data/lib/bundler/cli/platform.rb +43 -0
- data/lib/bundler/cli/show.rb +48 -0
- data/lib/bundler/cli/update.rb +73 -0
- data/lib/bundler/cli/viz.rb +27 -0
- data/lib/bundler/constants.rb +5 -0
- data/lib/bundler/current_ruby.rb +155 -0
- data/lib/bundler/definition.rb +604 -0
- data/lib/bundler/dep_proxy.rb +43 -0
- data/lib/bundler/dependency.rb +106 -0
- data/lib/bundler/deployment.rb +59 -0
- data/lib/bundler/deprecate.rb +15 -0
- data/lib/bundler/dsl.rb +305 -0
- data/lib/bundler/endpoint_specification.rb +76 -0
- data/lib/bundler/env.rb +56 -0
- data/lib/bundler/environment.rb +42 -0
- data/lib/bundler/fetcher.rb +396 -0
- data/lib/bundler/friendly_errors.rb +42 -0
- data/lib/bundler/gem_helper.rb +169 -0
- data/lib/bundler/gem_helpers.rb +25 -0
- data/lib/bundler/gem_installer.rb +9 -0
- data/lib/bundler/gem_path_manipulation.rb +8 -0
- data/lib/bundler/gem_tasks.rb +2 -0
- data/lib/bundler/graph.rb +169 -0
- data/lib/bundler/index.rb +184 -0
- data/lib/bundler/injector.rb +64 -0
- data/lib/bundler/installer.rb +332 -0
- data/lib/bundler/lazy_specification.rb +83 -0
- data/lib/bundler/lockfile_parser.rb +146 -0
- data/lib/bundler/match_platform.rb +13 -0
- data/lib/bundler/parallel_workers.rb +18 -0
- data/lib/bundler/parallel_workers/thread_worker.rb +30 -0
- data/lib/bundler/parallel_workers/unix_worker.rb +101 -0
- data/lib/bundler/parallel_workers/worker.rb +69 -0
- data/lib/bundler/psyched_yaml.rb +26 -0
- data/lib/bundler/remote_specification.rb +57 -0
- data/lib/bundler/resolver.rb +534 -0
- data/lib/bundler/retry.rb +60 -0
- data/lib/bundler/ruby_dsl.rb +11 -0
- data/lib/bundler/ruby_version.rb +117 -0
- data/lib/bundler/rubygems_ext.rb +171 -0
- data/lib/bundler/rubygems_integration.rb +578 -0
- data/lib/bundler/runtime.rb +310 -0
- data/lib/bundler/settings.rb +176 -0
- data/lib/bundler/setup.rb +23 -0
- data/lib/bundler/shared_helpers.rb +110 -0
- data/lib/bundler/similarity_detector.rb +63 -0
- data/lib/bundler/source.rb +29 -0
- data/lib/bundler/source/git.rb +289 -0
- data/lib/bundler/source/git/git_proxy.rb +158 -0
- data/lib/bundler/source/path.rb +225 -0
- data/lib/bundler/source/path/installer.rb +38 -0
- data/lib/bundler/source/rubygems.rb +334 -0
- data/lib/bundler/source/svn.rb +260 -0
- data/lib/bundler/source/svn/svn_proxy.rb +110 -0
- data/lib/bundler/spec_set.rb +154 -0
- data/lib/bundler/ssl_certs/.document +1 -0
- data/lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem +14 -0
- data/lib/bundler/ssl_certs/DigiCertHighAssuranceEVRootCA.pem +23 -0
- data/lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem +28 -0
- data/lib/bundler/ssl_certs/GeoTrustGlobalCA.pem +20 -0
- data/lib/bundler/ssl_certs/certificate_manager.rb +41 -0
- data/lib/bundler/templates/Executable +16 -0
- data/lib/bundler/templates/Executable.standalone +12 -0
- data/lib/bundler/templates/Gemfile +4 -0
- data/lib/bundler/templates/newgem/.travis.yml.tt +3 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/LICENSE.txt.tt +22 -0
- data/lib/bundler/templates/newgem/README.md.tt +31 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +26 -0
- data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
- data/lib/bundler/templates/newgem/consolerc.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
- data/lib/bundler/templates/newgem/gitignore.tt +16 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +38 -0
- data/lib/bundler/templates/newgem/rspec.tt +2 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
- data/lib/bundler/templates/newgem/test/minitest_helper.rb.tt +4 -0
- data/lib/bundler/templates/newgem/test/test_newgem.rb.tt +11 -0
- data/lib/bundler/ui.rb +7 -0
- data/lib/bundler/ui/rg_proxy.rb +21 -0
- data/lib/bundler/ui/shell.rb +98 -0
- data/lib/bundler/ui/silent.rb +44 -0
- data/lib/bundler/vendor/.document +0 -0
- data/lib/bundler/vendor/net/http/faster.rb +26 -0
- data/lib/bundler/vendor/net/http/persistent.rb +1230 -0
- data/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb +128 -0
- data/lib/bundler/vendor/thor.rb +480 -0
- data/lib/bundler/vendor/thor/actions.rb +319 -0
- data/lib/bundler/vendor/thor/actions/create_file.rb +103 -0
- data/lib/bundler/vendor/thor/actions/create_link.rb +59 -0
- data/lib/bundler/vendor/thor/actions/directory.rb +118 -0
- data/lib/bundler/vendor/thor/actions/empty_directory.rb +135 -0
- data/lib/bundler/vendor/thor/actions/file_manipulation.rb +316 -0
- data/lib/bundler/vendor/thor/actions/inject_into_file.rb +107 -0
- data/lib/bundler/vendor/thor/base.rb +656 -0
- data/lib/bundler/vendor/thor/command.rb +133 -0
- data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +77 -0
- data/lib/bundler/vendor/thor/core_ext/io_binary_read.rb +10 -0
- data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +98 -0
- data/lib/bundler/vendor/thor/error.rb +32 -0
- data/lib/bundler/vendor/thor/group.rb +281 -0
- data/lib/bundler/vendor/thor/invocation.rb +173 -0
- data/lib/bundler/vendor/thor/line_editor.rb +17 -0
- data/lib/bundler/vendor/thor/line_editor/basic.rb +35 -0
- data/lib/bundler/vendor/thor/line_editor/readline.rb +88 -0
- data/lib/bundler/vendor/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/parser/argument.rb +73 -0
- data/lib/bundler/vendor/thor/parser/arguments.rb +175 -0
- data/lib/bundler/vendor/thor/parser/option.rb +121 -0
- data/lib/bundler/vendor/thor/parser/options.rb +218 -0
- data/lib/bundler/vendor/thor/rake_compat.rb +71 -0
- data/lib/bundler/vendor/thor/runner.rb +322 -0
- data/lib/bundler/vendor/thor/shell.rb +81 -0
- data/lib/bundler/vendor/thor/shell/basic.rb +420 -0
- data/lib/bundler/vendor/thor/shell/color.rb +149 -0
- data/lib/bundler/vendor/thor/shell/html.rb +126 -0
- data/lib/bundler/vendor/thor/util.rb +267 -0
- data/lib/bundler/vendor/thor/version.rb +3 -0
- data/lib/bundler/vendored_persistent.rb +3 -0
- data/lib/bundler/vendored_thor.rb +8 -0
- data/lib/bundler/version.rb +6 -0
- data/lib/bundler/vlad.rb +11 -0
- data/man/bundle-config.ronn +155 -0
- data/man/bundle-exec.ronn +136 -0
- data/man/bundle-install.ronn +372 -0
- data/man/bundle-package.ronn +59 -0
- data/man/bundle-platform.ronn +42 -0
- data/man/bundle-update.ronn +179 -0
- data/man/bundle.ronn +92 -0
- data/man/gemfile.5.ronn +369 -0
- data/man/index.txt +7 -0
- data/spec/bundler/bundler_spec.rb +74 -0
- data/spec/bundler/cli_spec.rb +16 -0
- data/spec/bundler/definition_spec.rb +21 -0
- data/spec/bundler/dsl_spec.rb +108 -0
- data/spec/bundler/friendly_errors_spec.rb +13 -0
- data/spec/bundler/gem_helper_spec.rb +225 -0
- data/spec/bundler/psyched_yaml_spec.rb +8 -0
- data/spec/bundler/retry_spec.rb +59 -0
- data/spec/bundler/settings_spec.rb +13 -0
- data/spec/bundler/source_spec.rb +25 -0
- data/spec/cache/gems_spec.rb +316 -0
- data/spec/cache/git_spec.rb +188 -0
- data/spec/cache/path_spec.rb +121 -0
- data/spec/cache/platform_spec.rb +53 -0
- data/spec/cache/svn_spec.rb +82 -0
- data/spec/commands/binstubs_spec.rb +246 -0
- data/spec/commands/check_spec.rb +278 -0
- data/spec/commands/clean_spec.rb +652 -0
- data/spec/commands/config_spec.rb +227 -0
- data/spec/commands/console_spec.rb +102 -0
- data/spec/commands/exec_spec.rb +367 -0
- data/spec/commands/help_spec.rb +39 -0
- data/spec/commands/init_spec.rb +39 -0
- data/spec/commands/inject_spec.rb +78 -0
- data/spec/commands/licenses_spec.rb +31 -0
- data/spec/commands/newgem_spec.rb +451 -0
- data/spec/commands/open_spec.rb +80 -0
- data/spec/commands/outdated_spec.rb +168 -0
- data/spec/commands/package_spec.rb +128 -0
- data/spec/commands/show_spec.rb +152 -0
- data/spec/install/binstubs_spec.rb +24 -0
- data/spec/install/bundler_spec.rb +146 -0
- data/spec/install/deploy_spec.rb +237 -0
- data/spec/install/gemfile/gemspec_spec.rb +170 -0
- data/spec/install/gemfile/git_spec.rb +967 -0
- data/spec/install/gemfile/path_spec.rb +480 -0
- data/spec/install/gemfile/svn_spec.rb +582 -0
- data/spec/install/gemfile_spec.rb +44 -0
- data/spec/install/gems/c_ext_spec.rb +48 -0
- data/spec/install/gems/dependency_api_spec.rb +580 -0
- data/spec/install/gems/env_spec.rb +107 -0
- data/spec/install/gems/flex_spec.rb +314 -0
- data/spec/install/gems/groups_spec.rb +308 -0
- data/spec/install/gems/mirror_spec.rb +39 -0
- data/spec/install/gems/platform_spec.rb +221 -0
- data/spec/install/gems/post_install_spec.rb +121 -0
- data/spec/install/gems/resolving_spec.rb +124 -0
- data/spec/install/gems/simple_case_spec.rb +386 -0
- data/spec/install/gems/standalone_spec.rb +260 -0
- data/spec/install/gems/sudo_spec.rb +136 -0
- data/spec/install/gems/win32_spec.rb +26 -0
- data/spec/install/gemspecs_spec.rb +50 -0
- data/spec/install/path_spec.rb +150 -0
- data/spec/install/post_bundle_message_spec.rb +142 -0
- data/spec/install/prereleases_spec.rb +43 -0
- data/spec/install/security_policy_spec.rb +77 -0
- data/spec/install/upgrade_spec.rb +26 -0
- data/spec/lock/git_spec.rb +34 -0
- data/spec/lock/lockfile_spec.rb +912 -0
- data/spec/lock/svn_spec.rb +35 -0
- data/spec/other/bundle_ruby_spec.rb +142 -0
- data/spec/other/cli_dispatch_spec.rb +21 -0
- data/spec/other/ext_spec.rb +60 -0
- data/spec/other/platform_spec.rb +1285 -0
- data/spec/other/ssl_cert_spec.rb +10 -0
- data/spec/quality_spec.rb +88 -0
- data/spec/realworld/dependency_api_spec.rb +60 -0
- data/spec/realworld/edgecases_spec.rb +177 -0
- data/spec/realworld/parallel_spec.rb +69 -0
- data/spec/resolver/basic_spec.rb +66 -0
- data/spec/resolver/platform_spec.rb +88 -0
- data/spec/runtime/executable_spec.rb +149 -0
- data/spec/runtime/load_spec.rb +107 -0
- data/spec/runtime/platform_spec.rb +90 -0
- data/spec/runtime/require_spec.rb +332 -0
- data/spec/runtime/setup_spec.rb +856 -0
- data/spec/runtime/with_clean_env_spec.rb +91 -0
- data/spec/spec_helper.rb +114 -0
- data/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint.rb +71 -0
- data/spec/support/artifice/endpoint_500.rb +37 -0
- data/spec/support/artifice/endpoint_api_missing.rb +16 -0
- data/spec/support/artifice/endpoint_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint_creds_diff_host.rb +38 -0
- data/spec/support/artifice/endpoint_extra.rb +31 -0
- data/spec/support/artifice/endpoint_extra_missing.rb +15 -0
- data/spec/support/artifice/endpoint_fallback.rb +17 -0
- data/spec/support/artifice/endpoint_host_redirect.rb +15 -0
- data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
- data/spec/support/artifice/endpoint_redirect.rb +15 -0
- data/spec/support/artifice/endpoint_strict_basic_authentication.rb +18 -0
- data/spec/support/artifice/endpoint_timeout.rb +13 -0
- data/spec/support/builders.rb +748 -0
- data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
- data/spec/support/fakeweb/windows.rb +23 -0
- data/spec/support/hax.rb +22 -0
- data/spec/support/helpers.rb +348 -0
- data/spec/support/indexes.rb +280 -0
- data/spec/support/less_than_proc.rb +14 -0
- data/spec/support/matchers.rb +77 -0
- data/spec/support/path.rb +81 -0
- data/spec/support/permissions.rb +10 -0
- data/spec/support/platforms.rb +94 -0
- data/spec/support/ruby_ext.rb +20 -0
- data/spec/support/rubygems_ext.rb +39 -0
- data/spec/support/streams.rb +13 -0
- data/spec/support/sudo.rb +16 -0
- data/spec/update/gems_spec.rb +201 -0
- data/spec/update/git_spec.rb +236 -0
- data/spec/update/source_spec.rb +63 -0
- data/spec/update/svn_spec.rb +100 -0
- metadata +486 -0
@@ -0,0 +1,44 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "bundle install" do
|
4
|
+
|
5
|
+
context "with duplicated gems" do
|
6
|
+
it "will display a warning" do
|
7
|
+
install_gemfile <<-G
|
8
|
+
gem 'rails', '~> 4.0.0'
|
9
|
+
gem 'rails', '~> 4.0.0'
|
10
|
+
G
|
11
|
+
expect(out).to include("more than once")
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
context "with --gemfile" do
|
16
|
+
it "finds the gemfile" do
|
17
|
+
gemfile bundled_app("NotGemfile"), <<-G
|
18
|
+
source "file://#{gem_repo1}"
|
19
|
+
gem 'rack'
|
20
|
+
G
|
21
|
+
|
22
|
+
bundle :install, :gemfile => bundled_app("NotGemfile")
|
23
|
+
|
24
|
+
ENV['BUNDLE_GEMFILE'] = "NotGemfile"
|
25
|
+
should_be_installed "rack 1.0.0"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
context "with deprecated features" do
|
30
|
+
before :each do
|
31
|
+
in_app_root
|
32
|
+
end
|
33
|
+
|
34
|
+
it "reports that lib is an invalid option" do
|
35
|
+
gemfile <<-G
|
36
|
+
gem "rack", :lib => "rack"
|
37
|
+
G
|
38
|
+
|
39
|
+
bundle :install
|
40
|
+
expect(out).to match(/You passed :lib as an option for gem 'rack', but it is invalid/)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "installing a gem with C extensions" do
|
4
|
+
it "installs" do
|
5
|
+
build_repo2 do
|
6
|
+
build_gem "c_extension" do |s|
|
7
|
+
s.extensions = ["ext/extconf.rb"]
|
8
|
+
s.write "ext/extconf.rb", <<-E
|
9
|
+
require "mkmf"
|
10
|
+
name = "c_extension_bundle"
|
11
|
+
dir_config(name)
|
12
|
+
raise "OMG" unless with_config("c_extension") == "hello"
|
13
|
+
create_makefile(name)
|
14
|
+
E
|
15
|
+
|
16
|
+
s.write "ext/c_extension.c", <<-C
|
17
|
+
#include "ruby.h"
|
18
|
+
|
19
|
+
VALUE c_extension_true(VALUE self) {
|
20
|
+
return Qtrue;
|
21
|
+
}
|
22
|
+
|
23
|
+
void Init_c_extension_bundle() {
|
24
|
+
VALUE c_Extension = rb_define_class("CExtension", rb_cObject);
|
25
|
+
rb_define_method(c_Extension, "its_true", c_extension_true, 0);
|
26
|
+
}
|
27
|
+
C
|
28
|
+
|
29
|
+
s.write "lib/c_extension.rb", <<-C
|
30
|
+
require "c_extension_bundle"
|
31
|
+
C
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
gemfile <<-G
|
36
|
+
source "file://#{gem_repo2}"
|
37
|
+
gem "c_extension"
|
38
|
+
G
|
39
|
+
|
40
|
+
bundle "config build.c_extension --with-c_extension=hello"
|
41
|
+
bundle "install"
|
42
|
+
|
43
|
+
expect(out).not_to include("extconf.rb failed")
|
44
|
+
|
45
|
+
run "Bundler.require; puts CExtension.new.its_true"
|
46
|
+
expect(out).to eq("true")
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,580 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "gemcutter's dependency API" do
|
4
|
+
let(:source_uri) { "http://localgemserver.test" }
|
5
|
+
|
6
|
+
it "should use the API" do
|
7
|
+
gemfile <<-G
|
8
|
+
source "#{source_uri}"
|
9
|
+
gem "rack"
|
10
|
+
G
|
11
|
+
|
12
|
+
bundle :install, :artifice => "endpoint"
|
13
|
+
expect(out).to include("Fetching gem metadata from #{source_uri}")
|
14
|
+
should_be_installed "rack 1.0.0"
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should URI encode gem names" do
|
18
|
+
gemfile <<-G
|
19
|
+
source "#{source_uri}"
|
20
|
+
gem " sinatra"
|
21
|
+
G
|
22
|
+
|
23
|
+
bundle :install, :artifice => "endpoint"
|
24
|
+
expect(out).to include("Could not find gem ' sinatra")
|
25
|
+
end
|
26
|
+
|
27
|
+
it "should handle nested dependencies" do
|
28
|
+
gemfile <<-G
|
29
|
+
source "#{source_uri}"
|
30
|
+
gem "rails"
|
31
|
+
G
|
32
|
+
|
33
|
+
bundle :install, :artifice => "endpoint"
|
34
|
+
expect(out).to include("Fetching gem metadata from #{source_uri}/...")
|
35
|
+
should_be_installed(
|
36
|
+
"rails 2.3.2",
|
37
|
+
"actionpack 2.3.2",
|
38
|
+
"activerecord 2.3.2",
|
39
|
+
"actionmailer 2.3.2",
|
40
|
+
"activeresource 2.3.2",
|
41
|
+
"activesupport 2.3.2")
|
42
|
+
end
|
43
|
+
|
44
|
+
it "should handle multiple gem dependencies on the same gem" do
|
45
|
+
gemfile <<-G
|
46
|
+
source "#{source_uri}"
|
47
|
+
gem "net-sftp"
|
48
|
+
G
|
49
|
+
|
50
|
+
bundle :install, :artifice => "endpoint"
|
51
|
+
should_be_installed "net-sftp 1.1.1"
|
52
|
+
end
|
53
|
+
|
54
|
+
it "should use the endpoint when using --deployment" do
|
55
|
+
gemfile <<-G
|
56
|
+
source "#{source_uri}"
|
57
|
+
gem "rack"
|
58
|
+
G
|
59
|
+
bundle :install, :artifice => "endpoint"
|
60
|
+
|
61
|
+
bundle "install --deployment", :artifice => "endpoint"
|
62
|
+
expect(out).to include("Fetching gem metadata from #{source_uri}")
|
63
|
+
should_be_installed "rack 1.0.0"
|
64
|
+
end
|
65
|
+
|
66
|
+
it "handles git dependencies that are in rubygems" do
|
67
|
+
build_git "foo" do |s|
|
68
|
+
s.executables = "foobar"
|
69
|
+
s.add_dependency "rails", "2.3.2"
|
70
|
+
end
|
71
|
+
|
72
|
+
gemfile <<-G
|
73
|
+
source "#{source_uri}"
|
74
|
+
git "file:///#{lib_path('foo-1.0')}" do
|
75
|
+
gem 'foo'
|
76
|
+
end
|
77
|
+
G
|
78
|
+
|
79
|
+
bundle :install, :artifice => "endpoint"
|
80
|
+
|
81
|
+
should_be_installed("rails 2.3.2")
|
82
|
+
end
|
83
|
+
|
84
|
+
it "handles git dependencies that are in rubygems using --deployment" do
|
85
|
+
build_git "foo" do |s|
|
86
|
+
s.executables = "foobar"
|
87
|
+
s.add_dependency "rails", "2.3.2"
|
88
|
+
end
|
89
|
+
|
90
|
+
gemfile <<-G
|
91
|
+
source "#{source_uri}"
|
92
|
+
gem 'foo', :git => "file:///#{lib_path('foo-1.0')}"
|
93
|
+
G
|
94
|
+
|
95
|
+
bundle :install, :artifice => "endpoint"
|
96
|
+
|
97
|
+
bundle "install --deployment", :artifice => "endpoint"
|
98
|
+
|
99
|
+
should_be_installed("rails 2.3.2")
|
100
|
+
end
|
101
|
+
|
102
|
+
it "doesn't fail if you only have a git gem with no deps when using --deployment" do
|
103
|
+
build_git "foo"
|
104
|
+
gemfile <<-G
|
105
|
+
source "#{source_uri}"
|
106
|
+
gem 'foo', :git => "file:///#{lib_path('foo-1.0')}"
|
107
|
+
G
|
108
|
+
|
109
|
+
bundle "install", :artifice => "endpoint"
|
110
|
+
bundle "install --deployment", :artifice => "endpoint", :exitstatus => true
|
111
|
+
|
112
|
+
expect(exitstatus).to eq(0)
|
113
|
+
should_be_installed("foo 1.0")
|
114
|
+
end
|
115
|
+
|
116
|
+
it "falls back when the API errors out" do
|
117
|
+
simulate_platform mswin
|
118
|
+
|
119
|
+
gemfile <<-G
|
120
|
+
source "#{source_uri}"
|
121
|
+
gem "rcov"
|
122
|
+
G
|
123
|
+
|
124
|
+
bundle :install, :fakeweb => "windows"
|
125
|
+
expect(out).to include("Fetching source index from #{source_uri}")
|
126
|
+
should_be_installed "rcov 1.0.0"
|
127
|
+
end
|
128
|
+
|
129
|
+
it "falls back when hitting the Gemcutter Dependency Limit" do
|
130
|
+
gemfile <<-G
|
131
|
+
source "#{source_uri}"
|
132
|
+
gem "activesupport"
|
133
|
+
gem "actionpack"
|
134
|
+
gem "actionmailer"
|
135
|
+
gem "activeresource"
|
136
|
+
gem "thin"
|
137
|
+
gem "rack"
|
138
|
+
gem "rails"
|
139
|
+
G
|
140
|
+
bundle :install, :artifice => "endpoint_fallback"
|
141
|
+
expect(out).to include("Fetching source index from #{source_uri}")
|
142
|
+
|
143
|
+
should_be_installed(
|
144
|
+
"activesupport 2.3.2",
|
145
|
+
"actionpack 2.3.2",
|
146
|
+
"actionmailer 2.3.2",
|
147
|
+
"activeresource 2.3.2",
|
148
|
+
"activesupport 2.3.2",
|
149
|
+
"thin 1.0.0",
|
150
|
+
"rack 1.0.0",
|
151
|
+
"rails 2.3.2")
|
152
|
+
end
|
153
|
+
|
154
|
+
it "falls back when Gemcutter API doesn't return proper Marshal format" do
|
155
|
+
gemfile <<-G
|
156
|
+
source "#{source_uri}"
|
157
|
+
gem "rack"
|
158
|
+
G
|
159
|
+
|
160
|
+
bundle :install, :artifice => "endpoint_marshal_fail"
|
161
|
+
expect(out).to include("Fetching source index from #{source_uri}")
|
162
|
+
should_be_installed "rack 1.0.0"
|
163
|
+
end
|
164
|
+
|
165
|
+
it "handles host redirects" do
|
166
|
+
gemfile <<-G
|
167
|
+
source "#{source_uri}"
|
168
|
+
gem "rack"
|
169
|
+
G
|
170
|
+
|
171
|
+
bundle :install, :artifice => "endpoint_host_redirect"
|
172
|
+
should_be_installed "rack 1.0.0"
|
173
|
+
end
|
174
|
+
|
175
|
+
it "handles host redirects without Net::HTTP::Persistent" do
|
176
|
+
gemfile <<-G
|
177
|
+
source "#{source_uri}"
|
178
|
+
gem "rack"
|
179
|
+
G
|
180
|
+
|
181
|
+
FileUtils.mkdir_p lib_path
|
182
|
+
File.open(lib_path("disable_net_http_persistent.rb"), "w") do |h|
|
183
|
+
h.write <<-H
|
184
|
+
module Kernel
|
185
|
+
alias require_without_disabled_net_http require
|
186
|
+
def require(*args)
|
187
|
+
raise LoadError, 'simulated' if args.first == 'openssl' && !caller.grep(/vendored_persistent/).empty?
|
188
|
+
require_without_disabled_net_http(*args)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
H
|
192
|
+
end
|
193
|
+
|
194
|
+
bundle :install, :artifice => "endpoint_host_redirect", :requires => [lib_path("disable_net_http_persistent.rb")]
|
195
|
+
expect(out).to_not match(/Too many redirects/)
|
196
|
+
should_be_installed "rack 1.0.0"
|
197
|
+
end
|
198
|
+
|
199
|
+
it "timeouts when Bundler::Fetcher redirects too much" do
|
200
|
+
gemfile <<-G
|
201
|
+
source "#{source_uri}"
|
202
|
+
gem "rack"
|
203
|
+
G
|
204
|
+
|
205
|
+
bundle :install, :artifice => "endpoint_redirect"
|
206
|
+
expect(out).to match(/Too many redirects/)
|
207
|
+
end
|
208
|
+
|
209
|
+
context "when --full-index is specified" do
|
210
|
+
it "should use the modern index for install" do
|
211
|
+
gemfile <<-G
|
212
|
+
source "#{source_uri}"
|
213
|
+
gem "rack"
|
214
|
+
G
|
215
|
+
|
216
|
+
bundle "install --full-index", :artifice => "endpoint"
|
217
|
+
expect(out).to include("Fetching source index from #{source_uri}")
|
218
|
+
should_be_installed "rack 1.0.0"
|
219
|
+
end
|
220
|
+
|
221
|
+
it "should use the modern index for update" do
|
222
|
+
gemfile <<-G
|
223
|
+
source "#{source_uri}"
|
224
|
+
gem "rack"
|
225
|
+
G
|
226
|
+
|
227
|
+
bundle "update --full-index", :artifice => "endpoint"
|
228
|
+
expect(out).to include("Fetching source index from #{source_uri}")
|
229
|
+
should_be_installed "rack 1.0.0"
|
230
|
+
end
|
231
|
+
end
|
232
|
+
|
233
|
+
it "fetches again when more dependencies are found in subsequent sources" do
|
234
|
+
build_repo2 do
|
235
|
+
build_gem "back_deps" do |s|
|
236
|
+
s.add_dependency "foo"
|
237
|
+
end
|
238
|
+
FileUtils.rm_rf Dir[gem_repo2("gems/foo-*.gem")]
|
239
|
+
end
|
240
|
+
|
241
|
+
gemfile <<-G
|
242
|
+
source "#{source_uri}"
|
243
|
+
source "#{source_uri}/extra"
|
244
|
+
gem "back_deps"
|
245
|
+
G
|
246
|
+
|
247
|
+
bundle :install, :artifice => "endpoint_extra"
|
248
|
+
should_be_installed "back_deps 1.0"
|
249
|
+
end
|
250
|
+
|
251
|
+
it "prints API output properly with back deps" do
|
252
|
+
build_repo2 do
|
253
|
+
build_gem "back_deps" do |s|
|
254
|
+
s.add_dependency "foo"
|
255
|
+
end
|
256
|
+
FileUtils.rm_rf Dir[gem_repo2("gems/foo-*.gem")]
|
257
|
+
end
|
258
|
+
|
259
|
+
gemfile <<-G
|
260
|
+
source "#{source_uri}"
|
261
|
+
source "#{source_uri}/extra"
|
262
|
+
gem "back_deps"
|
263
|
+
G
|
264
|
+
|
265
|
+
bundle :install, :artifice => "endpoint_extra"
|
266
|
+
|
267
|
+
expect(out).to include("Fetching gem metadata from http://localgemserver.test/..")
|
268
|
+
expect(out).to include("Fetching source index from http://localgemserver.test/extra")
|
269
|
+
end
|
270
|
+
|
271
|
+
it "does not fetch every specs if the index of gems is large when doing back deps" do
|
272
|
+
build_repo2 do
|
273
|
+
build_gem "back_deps" do |s|
|
274
|
+
s.add_dependency "foo"
|
275
|
+
end
|
276
|
+
build_gem "missing"
|
277
|
+
# need to hit the limit
|
278
|
+
1.upto(Bundler::Source::Rubygems::API_REQUEST_LIMIT) do |i|
|
279
|
+
build_gem "gem#{i}"
|
280
|
+
end
|
281
|
+
|
282
|
+
FileUtils.rm_rf Dir[gem_repo2("gems/foo-*.gem")]
|
283
|
+
end
|
284
|
+
|
285
|
+
gemfile <<-G
|
286
|
+
source "#{source_uri}"
|
287
|
+
source "#{source_uri}/extra"
|
288
|
+
gem "back_deps"
|
289
|
+
G
|
290
|
+
|
291
|
+
bundle :install, :artifice => "endpoint_extra_missing"
|
292
|
+
should_be_installed "back_deps 1.0"
|
293
|
+
end
|
294
|
+
|
295
|
+
it "uses the endpoint if all sources support it" do
|
296
|
+
gemfile <<-G
|
297
|
+
source "#{source_uri}"
|
298
|
+
|
299
|
+
gem 'foo'
|
300
|
+
G
|
301
|
+
|
302
|
+
bundle :install, :artifice => "endpoint_api_missing"
|
303
|
+
should_be_installed "foo 1.0"
|
304
|
+
end
|
305
|
+
|
306
|
+
it "fetches again when more dependencies are found in subsequent sources using --deployment" do
|
307
|
+
build_repo2 do
|
308
|
+
build_gem "back_deps" do |s|
|
309
|
+
s.add_dependency "foo"
|
310
|
+
end
|
311
|
+
FileUtils.rm_rf Dir[gem_repo2("gems/foo-*.gem")]
|
312
|
+
end
|
313
|
+
|
314
|
+
gemfile <<-G
|
315
|
+
source "#{source_uri}"
|
316
|
+
source "#{source_uri}/extra"
|
317
|
+
gem "back_deps"
|
318
|
+
G
|
319
|
+
|
320
|
+
bundle :install, :artifice => "endpoint_extra"
|
321
|
+
|
322
|
+
bundle "install --deployment", :artifice => "endpoint_extra"
|
323
|
+
should_be_installed "back_deps 1.0"
|
324
|
+
end
|
325
|
+
|
326
|
+
it "does not refetch if the only unmet dependency is bundler" do
|
327
|
+
gemfile <<-G
|
328
|
+
source "#{source_uri}"
|
329
|
+
|
330
|
+
gem "bundler_dep"
|
331
|
+
G
|
332
|
+
|
333
|
+
bundle :install, :artifice => "endpoint"
|
334
|
+
expect(out).to include("Fetching gem metadata from #{source_uri}")
|
335
|
+
end
|
336
|
+
|
337
|
+
it "should install when EndpointSpecification has a bin dir owned by root", :sudo => true do
|
338
|
+
sudo "mkdir -p #{system_gem_path("bin")}"
|
339
|
+
sudo "chown -R root #{system_gem_path("bin")}"
|
340
|
+
|
341
|
+
gemfile <<-G
|
342
|
+
source "#{source_uri}"
|
343
|
+
gem "rails"
|
344
|
+
G
|
345
|
+
bundle :install, :artifice => "endpoint"
|
346
|
+
should_be_installed "rails 2.3.2"
|
347
|
+
end
|
348
|
+
|
349
|
+
it "installs the binstubs" do
|
350
|
+
gemfile <<-G
|
351
|
+
source "#{source_uri}"
|
352
|
+
gem "rack"
|
353
|
+
G
|
354
|
+
|
355
|
+
bundle "install --binstubs", :artifice => "endpoint"
|
356
|
+
|
357
|
+
gembin "rackup"
|
358
|
+
expect(out).to eq("1.0.0")
|
359
|
+
end
|
360
|
+
|
361
|
+
it "installs the bins when using --path and uses autoclean" do
|
362
|
+
gemfile <<-G
|
363
|
+
source "#{source_uri}"
|
364
|
+
gem "rack"
|
365
|
+
G
|
366
|
+
|
367
|
+
bundle "install --path vendor/bundle", :artifice => "endpoint"
|
368
|
+
|
369
|
+
expect(vendored_gems("bin/rackup")).to exist
|
370
|
+
end
|
371
|
+
|
372
|
+
it "installs the bins when using --path and uses bundle clean" do
|
373
|
+
gemfile <<-G
|
374
|
+
source "#{source_uri}"
|
375
|
+
gem "rack"
|
376
|
+
G
|
377
|
+
|
378
|
+
bundle "install --path vendor/bundle --no-clean", :artifice => "endpoint"
|
379
|
+
|
380
|
+
expect(vendored_gems("bin/rackup")).to exist
|
381
|
+
end
|
382
|
+
|
383
|
+
it "prints post_install_messages" do
|
384
|
+
gemfile <<-G
|
385
|
+
source "#{source_uri}"
|
386
|
+
gem 'rack-obama'
|
387
|
+
G
|
388
|
+
|
389
|
+
bundle :install, :artifice => "endpoint"
|
390
|
+
expect(out).to include("Post-install message from rack:")
|
391
|
+
end
|
392
|
+
|
393
|
+
it "should display the post install message for a dependency" do
|
394
|
+
gemfile <<-G
|
395
|
+
source "#{source_uri}"
|
396
|
+
gem 'rack_middleware'
|
397
|
+
G
|
398
|
+
|
399
|
+
bundle :install, :artifice => "endpoint"
|
400
|
+
expect(out).to include("Post-install message from rack:")
|
401
|
+
expect(out).to include("Rack's post install message")
|
402
|
+
end
|
403
|
+
|
404
|
+
context "when using basic authentication" do
|
405
|
+
let(:user) { "user" }
|
406
|
+
let(:password) { "pass" }
|
407
|
+
let(:basic_auth_source_uri) do
|
408
|
+
uri = URI.parse(source_uri)
|
409
|
+
uri.user = user
|
410
|
+
uri.password = password
|
411
|
+
|
412
|
+
uri
|
413
|
+
end
|
414
|
+
|
415
|
+
it "passes basic authentication details and strips out creds" do
|
416
|
+
gemfile <<-G
|
417
|
+
source "#{basic_auth_source_uri}"
|
418
|
+
gem "rack"
|
419
|
+
G
|
420
|
+
|
421
|
+
bundle :install, :artifice => "endpoint_basic_authentication"
|
422
|
+
expect(out).not_to include("#{user}:#{password}")
|
423
|
+
should_be_installed "rack 1.0.0"
|
424
|
+
end
|
425
|
+
|
426
|
+
it "strips http basic authentication creds for modern index" do
|
427
|
+
gemfile <<-G
|
428
|
+
source "#{basic_auth_source_uri}"
|
429
|
+
gem "rack"
|
430
|
+
G
|
431
|
+
|
432
|
+
bundle :install, :artifice => "endopint_marshal_fail_basic_authentication"
|
433
|
+
expect(out).not_to include("#{user}:#{password}")
|
434
|
+
should_be_installed "rack 1.0.0"
|
435
|
+
end
|
436
|
+
|
437
|
+
it "strips http basic auth creds when it can't reach the server" do
|
438
|
+
gemfile <<-G
|
439
|
+
source "#{basic_auth_source_uri}"
|
440
|
+
gem "rack"
|
441
|
+
G
|
442
|
+
|
443
|
+
bundle :install, :artifice => "endpoint_500"
|
444
|
+
expect(out).not_to include("#{user}:#{password}")
|
445
|
+
end
|
446
|
+
|
447
|
+
it "does not pass the user / password to different hosts on redirect" do
|
448
|
+
gemfile <<-G
|
449
|
+
source "#{basic_auth_source_uri}"
|
450
|
+
gem "rack"
|
451
|
+
G
|
452
|
+
|
453
|
+
bundle :install, :artifice => "endpoint_creds_diff_host"
|
454
|
+
should_be_installed "rack 1.0.0"
|
455
|
+
end
|
456
|
+
|
457
|
+
describe "with authentication details in bundle config" do
|
458
|
+
before do
|
459
|
+
gemfile <<-G
|
460
|
+
source "#{source_uri}"
|
461
|
+
gem "rack"
|
462
|
+
G
|
463
|
+
end
|
464
|
+
|
465
|
+
it "reads authentication details from bundle config" do
|
466
|
+
# The trailing slash is necessary here; Fetcher canonicalizes the URI.
|
467
|
+
bundle "config #{source_uri}/ #{user}:#{password}"
|
468
|
+
|
469
|
+
bundle :install, :artifice => "endpoint_strict_basic_authentication"
|
470
|
+
should_be_installed "rack 1.0.0"
|
471
|
+
end
|
472
|
+
|
473
|
+
it "prefers auth supplied in the source uri" do
|
474
|
+
gemfile <<-G
|
475
|
+
source "#{basic_auth_source_uri}"
|
476
|
+
gem "rack"
|
477
|
+
G
|
478
|
+
|
479
|
+
bundle "config #{source_uri}/ otheruser:wrong"
|
480
|
+
|
481
|
+
bundle :install, :artifice => "endpoint_strict_basic_authentication"
|
482
|
+
should_be_installed "rack 1.0.0"
|
483
|
+
end
|
484
|
+
|
485
|
+
it "shows instructions if auth is not provided for the source" do
|
486
|
+
bundle :install, :artifice => "endpoint_strict_basic_authentication"
|
487
|
+
expect(out).to include("bundle config #{source_uri}/ username:password")
|
488
|
+
end
|
489
|
+
|
490
|
+
it "fails if authentication has already been provided, but failed" do
|
491
|
+
bundle "config #{source_uri}/ #{user}:wrong"
|
492
|
+
|
493
|
+
bundle :install, :artifice => "endpoint_strict_basic_authentication"
|
494
|
+
expect(out).to include("Bad username or password")
|
495
|
+
end
|
496
|
+
end
|
497
|
+
|
498
|
+
describe "with no password" do
|
499
|
+
let(:password) { nil }
|
500
|
+
|
501
|
+
it "passes basic authentication details" do
|
502
|
+
gemfile <<-G
|
503
|
+
source "#{basic_auth_source_uri}"
|
504
|
+
gem "rack"
|
505
|
+
G
|
506
|
+
|
507
|
+
bundle :install, :artifice => "endpoint_basic_authentication"
|
508
|
+
should_be_installed "rack 1.0.0"
|
509
|
+
end
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
513
|
+
context "when ruby is compiled without openssl" do
|
514
|
+
before do
|
515
|
+
# Install a monkeypatch that reproduces the effects of openssl being
|
516
|
+
# missing when the fetcher runs, as happens in real life. The reason
|
517
|
+
# we can't just overwrite openssl.rb is that Artifice uses it.
|
518
|
+
bundled_app("broken_ssl").mkpath
|
519
|
+
bundled_app("broken_ssl/openssl.rb").open("w") do |f|
|
520
|
+
f.write <<-RUBY
|
521
|
+
raise LoadError, "cannot load such file -- openssl"
|
522
|
+
RUBY
|
523
|
+
end
|
524
|
+
end
|
525
|
+
|
526
|
+
it "explains what to do to get it" do
|
527
|
+
gemfile <<-G
|
528
|
+
source "#{source_uri.gsub(/http/, 'https')}"
|
529
|
+
gem "rack"
|
530
|
+
G
|
531
|
+
|
532
|
+
bundle :install, :env => {"RUBYOPT" => "-I#{bundled_app("broken_ssl")}"}
|
533
|
+
expect(out).to include("OpenSSL")
|
534
|
+
end
|
535
|
+
end
|
536
|
+
|
537
|
+
context "when SSL certificate verification fails" do
|
538
|
+
it "explains what happened" do
|
539
|
+
# Install a monkeypatch that reproduces the effects of openssl raising
|
540
|
+
# a certificate validation error when Rubygems tries to connect.
|
541
|
+
gemfile <<-G
|
542
|
+
class Net::HTTP
|
543
|
+
def start
|
544
|
+
raise OpenSSL::SSL::SSLError, "certificate verify failed"
|
545
|
+
end
|
546
|
+
end
|
547
|
+
|
548
|
+
source "#{source_uri.gsub(/http/, 'https')}"
|
549
|
+
gem "rack"
|
550
|
+
G
|
551
|
+
|
552
|
+
bundle :install
|
553
|
+
expect(out).to match(/could not verify the SSL certificate/i)
|
554
|
+
end
|
555
|
+
end
|
556
|
+
|
557
|
+
context ".gemrc with sources is present" do
|
558
|
+
before do
|
559
|
+
File.open(home('.gemrc'), 'w') do |file|
|
560
|
+
file.puts({:sources => ["https://rubygems.org"]}.to_yaml)
|
561
|
+
end
|
562
|
+
end
|
563
|
+
|
564
|
+
after do
|
565
|
+
home('.gemrc').rmtree
|
566
|
+
end
|
567
|
+
|
568
|
+
it "uses other sources declared in the Gemfile" do
|
569
|
+
gemfile <<-G
|
570
|
+
source "#{source_uri}"
|
571
|
+
gem 'rack'
|
572
|
+
G
|
573
|
+
|
574
|
+
bundle "install", :exitstatus => true, :artifice => "endpoint_marshal_fail"
|
575
|
+
|
576
|
+
expect(exitstatus).to eq(0)
|
577
|
+
end
|
578
|
+
end
|
579
|
+
|
580
|
+
end
|