Merge pull request #10445 from MikeMcQuaid/rspec_tmpdir_parallel

tests: cleanup user configuration.
This commit is contained in:
Mike McQuaid 2021-01-28 11:38:00 +00:00 committed by GitHub
commit 5f66e15602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 14 deletions

View File

@ -44,17 +44,17 @@ module Homebrew
require "byebug" if args.byebug?
HOMEBREW_LIBRARY_PATH.cd do
ENV.delete("HOMEBREW_COLOR")
ENV.delete("HOMEBREW_NO_COLOR")
ENV.delete("HOMEBREW_VERBOSE")
ENV.delete("HOMEBREW_DEBUG")
ENV.delete("HOMEBREW_CASK_OPTS")
ENV.delete("HOMEBREW_TEMP")
ENV.delete("HOMEBREW_NO_GITHUB_API")
ENV.delete("HOMEBREW_NO_EMOJI")
ENV.delete("HOMEBREW_DEVELOPER")
ENV.delete("HOMEBREW_PRY")
ENV.delete("HOMEBREW_BAT")
# Cleanup any unwanted user configuration.
allowed_test_env = [
"HOMEBREW_GITHUB_API_TOKEN",
"HOMEBREW_TEMP",
]
Homebrew::EnvConfig::ENVS.keys.map(&:to_s).each do |env|
next if allowed_test_env.include?(env)
ENV.delete(env)
end
ENV["HOMEBREW_NO_ANALYTICS_THIS_RUN"] = "1"
ENV["HOMEBREW_NO_COMPAT"] = "1" if args.no_compat?
ENV["HOMEBREW_TEST_GENERIC_OS"] = "1" if args.generic?

View File

@ -199,8 +199,11 @@ describe Homebrew::Cleanup do
describe "::cleanup_logs" do
let(:path) { (HOMEBREW_LOGS/"delete_me") }
it "cleans all logs if prune is 0" do
before do
path.mkpath
end
it "cleans all logs if prune is 0" do
described_class.new(days: 0).cleanup_logs
expect(path).not_to exist
end
@ -208,7 +211,6 @@ describe Homebrew::Cleanup do
it "cleans up logs if older than 30 days" do
allow_any_instance_of(Pathname).to receive(:ctime).and_return(31.days.ago)
allow_any_instance_of(Pathname).to receive(:mtime).and_return(31.days.ago)
path.mkpath
subject.cleanup_logs
expect(path).not_to exist
end
@ -216,7 +218,6 @@ describe Homebrew::Cleanup do
it "does not clean up logs less than 30 days old" do
allow_any_instance_of(Pathname).to receive(:ctime).and_return(15.days.ago)
allow_any_instance_of(Pathname).to receive(:mtime).and_return(15.days.ago)
path.mkpath
subject.cleanup_logs
expect(path).to exist
end