2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-03 10:49:58 +02:00
|
|
|
require_relative "shared_examples/invalid_option"
|
|
|
|
|
2018-09-06 08:29:14 +02:00
|
|
|
describe Cask::Cmd::Outdated, :cask do
|
2017-02-27 22:33:34 +02:00
|
|
|
let(:installed) do
|
|
|
|
[
|
2018-09-06 08:29:14 +02:00
|
|
|
Cask::CaskLoader.load(cask_path("basic-cask")),
|
|
|
|
Cask::CaskLoader.load(cask_path("outdated/local-caffeine")),
|
|
|
|
Cask::CaskLoader.load(cask_path("outdated/local-transmission")),
|
|
|
|
Cask::CaskLoader.load(cask_path("version-latest-string")),
|
|
|
|
Cask::CaskLoader.load(cask_path("outdated/auto-updates")),
|
2017-02-27 22:33:34 +02:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
2017-07-29 19:55:05 +02:00
|
|
|
installed.each { |cask| InstallHelper.install_with_caskfile(cask) }
|
|
|
|
|
2017-05-21 02:32:46 +02:00
|
|
|
allow_any_instance_of(described_class).to receive(:verbose?).and_return(true)
|
2017-02-27 22:33:34 +02:00
|
|
|
end
|
|
|
|
|
2017-10-03 10:49:58 +02:00
|
|
|
it_behaves_like "a command that handles invalid options"
|
|
|
|
|
2019-08-19 14:27:29 +10:00
|
|
|
describe 'without --greedy it ignores the Casks with "version latest" or "auto_updates true"' do
|
2017-02-27 22:33:34 +02:00
|
|
|
it "checks all the installed Casks when no token is provided" do
|
|
|
|
expect {
|
2017-05-21 02:32:46 +02:00
|
|
|
described_class.run
|
2017-10-15 02:28:32 +02:00
|
|
|
}.to output(<<~EOS).to_stdout
|
2017-02-27 22:33:34 +02:00
|
|
|
local-caffeine (1.2.2) != 1.2.3
|
|
|
|
local-transmission (2.60) != 2.61
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
it "checks only the tokens specified in the command line" do
|
|
|
|
expect {
|
2017-05-21 02:32:46 +02:00
|
|
|
described_class.run("local-caffeine")
|
2017-10-15 02:28:32 +02:00
|
|
|
}.to output(<<~EOS).to_stdout
|
2017-02-27 22:33:34 +02:00
|
|
|
local-caffeine (1.2.2) != 1.2.3
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'ignores "auto_updates" and "latest" Casks even when their tokens are provided in the command line' do
|
|
|
|
expect {
|
2017-05-21 02:32:46 +02:00
|
|
|
described_class.run("local-caffeine", "auto-updates", "version-latest-string")
|
2017-10-15 02:28:32 +02:00
|
|
|
}.to output(<<~EOS).to_stdout
|
2017-02-27 22:33:34 +02:00
|
|
|
local-caffeine (1.2.2) != 1.2.3
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-05-21 02:32:46 +02:00
|
|
|
describe "--quiet overrides --verbose" do
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(described_class).to receive(:verbose?).and_call_original
|
|
|
|
end
|
|
|
|
|
|
|
|
it "lists only the names (no versions) of the outdated Casks with --quiet" do
|
|
|
|
expect {
|
|
|
|
described_class.run("--verbose", "--quiet")
|
2017-10-15 02:28:32 +02:00
|
|
|
}.to output(<<~EOS).to_stdout
|
2017-05-21 02:32:46 +02:00
|
|
|
local-caffeine
|
|
|
|
local-transmission
|
|
|
|
EOS
|
|
|
|
end
|
2017-02-27 22:33:34 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "with --greedy it checks additional Casks" do
|
|
|
|
it 'includes the Casks with "auto_updates true" or "version latest" with --greedy' do
|
|
|
|
expect {
|
2017-05-21 02:32:46 +02:00
|
|
|
described_class.run("--greedy")
|
2017-10-15 02:28:32 +02:00
|
|
|
}.to output(<<~EOS).to_stdout
|
2017-02-27 22:33:34 +02:00
|
|
|
auto-updates (2.57) != 2.61
|
|
|
|
local-caffeine (1.2.2) != 1.2.3
|
|
|
|
local-transmission (2.60) != 2.61
|
|
|
|
version-latest-string (latest) != latest
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not include the Casks with "auto_updates true" when the version did not change' do
|
2018-09-06 08:29:14 +02:00
|
|
|
cask = Cask::CaskLoader.load(cask_path("auto-updates"))
|
2017-02-27 22:33:34 +02:00
|
|
|
InstallHelper.install_with_caskfile(cask)
|
|
|
|
|
|
|
|
expect {
|
2017-05-21 02:32:46 +02:00
|
|
|
described_class.run("--greedy")
|
2017-10-15 02:28:32 +02:00
|
|
|
}.to output(<<~EOS).to_stdout
|
2017-02-27 22:33:34 +02:00
|
|
|
local-caffeine (1.2.2) != 1.2.3
|
|
|
|
local-transmission (2.60) != 2.61
|
|
|
|
version-latest-string (latest) != latest
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|