-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3211 from dependabot/feelepxyz/bundler1-native-specs
Bundler: Run v1 native helpers with bundler v1
- Loading branch information
Showing
18 changed files
with
375 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# frozen_string_literal: true | ||
|
||
require "rspec/its" | ||
require "webmock/rspec" | ||
require "byebug" | ||
|
||
$LOAD_PATH.unshift(File.expand_path("../lib", __dir__)) | ||
$LOAD_PATH.unshift(File.expand_path("../monkey_patches", __dir__)) | ||
|
||
# Bundler monkey patches | ||
require "definition_ruby_version_patch" | ||
require "definition_bundler_version_patch" | ||
require "git_source_patch" | ||
|
||
require "functions" | ||
|
||
RSpec.configure do |config| | ||
config.color = true | ||
config.order = :rand | ||
config.mock_with(:rspec) { |mocks| mocks.verify_partial_doubles = true } | ||
config.raise_errors_for_deprecations! | ||
end | ||
|
||
# Duplicated in lib/dependabot/bundler/file_updater/lockfile_updater.rb | ||
# TODO: Stop sanitizing the lockfile once we have bundler 2 installed | ||
LOCKFILE_ENDING = /(?<ending>\s*(?:RUBY VERSION|BUNDLED WITH).*)/m.freeze | ||
|
||
def project_dependency_files(project) | ||
project_path = File.expand_path(File.join("../../spec/fixtures/projects/bundler1", project)) | ||
Dir.chdir(project_path) do | ||
# NOTE: Include dotfiles (e.g. .npmrc) | ||
files = Dir.glob("**/*", File::FNM_DOTMATCH) | ||
files = files.select { |f| File.file?(f) } | ||
files.map do |filename| | ||
content = File.read(filename) | ||
if filename == "Gemfile.lock" | ||
content = content.gsub(LOCKFILE_ENDING, "") | ||
end | ||
{ | ||
name: filename, | ||
content: content | ||
} | ||
end | ||
end | ||
end | ||
|
||
def fixture(*name) | ||
File.read(File.join("../../spec/fixtures", File.join(*name))) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# frozen_string_literal: true | ||
|
||
require "bundler/compact_index_client" | ||
require "bundler/compact_index_client/updater" | ||
|
||
TMP_DIR_PATH = File.expand_path("../tmp", __dir__) | ||
|
||
RSpec.shared_context "in a temporary bundler directory" do | ||
let(:project_name) { "gemfile" } | ||
|
||
let(:tmp_path) do | ||
Dir.mkdir(TMP_DIR_PATH) unless Dir.exist?(TMP_DIR_PATH) | ||
dir = Dir.mktmpdir("native_helper_spec_", TMP_DIR_PATH) | ||
Pathname.new(dir).expand_path | ||
end | ||
|
||
before do | ||
project_dependency_files(project_name).each do |file| | ||
File.write(File.join(tmp_path, file[:name]), file[:content]) | ||
end | ||
end | ||
|
||
def in_tmp_folder(&block) | ||
Dir.chdir(tmp_path, &block) | ||
end | ||
end | ||
|
||
RSpec.shared_context "without caching rubygems" do | ||
before do | ||
# Stub Bundler to stop it using a cached versions of Rubygems | ||
allow_any_instance_of(Bundler::CompactIndexClient::Updater). | ||
to receive(:etag_for).and_return("") | ||
end | ||
end | ||
|
||
RSpec.shared_context "stub rubygems compact index" do | ||
include_context "without caching rubygems" | ||
|
||
before do | ||
# Stub the Rubygems index | ||
stub_request(:get, "https://index.rubygems.org/versions"). | ||
to_return( | ||
status: 200, | ||
body: fixture("ruby", "rubygems_responses", "index") | ||
) | ||
|
||
# Stub the Rubygems response for each dependency we have a fixture for | ||
fixtures = | ||
Dir[File.join("../../spec", "fixtures", "ruby", "rubygems_responses", "info-*")] | ||
fixtures.each do |path| | ||
dep_name = path.split("/").last.gsub("info-", "") | ||
stub_request(:get, "https://index.rubygems.org/info/#{dep_name}"). | ||
to_return( | ||
status: 200, | ||
body: fixture("ruby", "rubygems_responses", "info-#{dep_name}") | ||
) | ||
end | ||
end | ||
end |
5 changes: 5 additions & 0 deletions
5
bundler/spec/fixtures/projects/bundler1/multiple_blocking/Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "activesupport", "5.0.0" | ||
gem "actionview", "5.0.0" | ||
gem "actionmailer", "5.0.0" |
70 changes: 70 additions & 0 deletions
70
bundler/spec/fixtures/projects/bundler1/multiple_blocking/Gemfile.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actionmailer (5.0.0) | ||
actionpack (= 5.0.0) | ||
actionview (= 5.0.0) | ||
activejob (= 5.0.0) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 2.0) | ||
actionpack (5.0.0) | ||
actionview (= 5.0.0) | ||
activesupport (= 5.0.0) | ||
rack (~> 2.0) | ||
rack-test (~> 0.6.3) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (5.0.0) | ||
activesupport (= 5.0.0) | ||
builder (~> 3.1) | ||
erubis (~> 2.7.0) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
activejob (5.0.0) | ||
activesupport (= 5.0.0) | ||
globalid (>= 0.3.6) | ||
activesupport (5.0.0) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
builder (3.2.4) | ||
concurrent-ruby (1.1.7) | ||
crass (1.0.6) | ||
erubis (2.7.0) | ||
globalid (0.4.2) | ||
activesupport (>= 4.2.0) | ||
i18n (0.9.5) | ||
concurrent-ruby (~> 1.0) | ||
loofah (2.7.0) | ||
crass (~> 1.0.2) | ||
nokogiri (>= 1.5.9) | ||
mail (2.7.1) | ||
mini_mime (>= 0.1.1) | ||
mini_mime (1.0.2) | ||
mini_portile2 (2.4.0) | ||
minitest (5.14.2) | ||
nokogiri (1.10.10) | ||
mini_portile2 (~> 2.4.0) | ||
rack (2.2.3) | ||
rack-test (0.6.3) | ||
rack (>= 1.0) | ||
rails-dom-testing (2.0.3) | ||
activesupport (>= 4.2.0) | ||
nokogiri (>= 1.6) | ||
rails-html-sanitizer (1.3.0) | ||
loofah (~> 2.3) | ||
thread_safe (0.3.6) | ||
tzinfo (1.2.7) | ||
thread_safe (~> 0.1) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
actionmailer (= 5.0.0) | ||
actionview (= 5.0.0) | ||
activesupport (= 5.0.0) | ||
|
||
BUNDLED WITH | ||
2.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
source 'https://rubygems.org' | ||
|
||
source "https://username:password@gems.contribsys.com/" do | ||
gem 'sidekiq-pro' | ||
end |
26 changes: 26 additions & 0 deletions
26
bundler/spec/fixtures/projects/bundler1/sidekiq_pro/Gemfile.lock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
remote: https://username:password@gems.contribsys.com/ | ||
specs: | ||
concurrent-ruby (1.0.5) | ||
connection_pool (2.2.1) | ||
rack (1.4.7) | ||
rack-protection (1.5.3) | ||
rack | ||
redis (3.3.3) | ||
sidekiq (4.2.9) | ||
concurrent-ruby (~> 1.0) | ||
connection_pool (~> 2.2, >= 2.2.0) | ||
rack-protection (>= 1.5.0) | ||
redis (~> 3.2, >= 3.2.1) | ||
sidekiq-pro (3.4.4) | ||
sidekiq (>= 4.1.5) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
sidekiq-pro! | ||
|
||
BUNDLED WITH | ||
1.15.3 |
3 changes: 3 additions & 0 deletions
3
bundler/spec/fixtures/projects/bundler1/specified_default_source_no_lockfile/Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
source 'https://SECRET_CODES@repo.fury.io/greysteil/' | ||
|
||
gem 'business' |
7 changes: 7 additions & 0 deletions
7
bundler/spec/fixtures/projects/bundler1/specified_source_no_lockfile/Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'statesman' | ||
|
||
source 'https://SECRET_CODES@repo.fury.io/greysteil/' do | ||
gem 'business' | ||
end |
Oops, something went wrong.