Merge branch 'winrmssl' into winrm_error_handling
Conflicts: test/unit/plugins/communicators/winrm/shell_test.rb
This commit is contained in:
commit
0b30dcd078
|
@ -58,13 +58,21 @@ module VagrantPlugins
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
# Reads the access token if there is one, or returns nil otherwise.
|
# Reads the access token if there is one. This will first read the
|
||||||
|
# `ATLAS_TOKEN` environment variable and then fallback to the stored
|
||||||
|
# access token on disk.
|
||||||
#
|
#
|
||||||
# @return [String]
|
# @return [String]
|
||||||
def token
|
def token
|
||||||
token_path.read
|
if ENV["ATLAS_TOKEN"] && !ENV["ATLAS_TOKEN"].empty?
|
||||||
rescue Errno::ENOENT
|
return ENV["ATLAS_TOKEN"]
|
||||||
return nil
|
end
|
||||||
|
|
||||||
|
if token_path.exist?
|
||||||
|
return token_path.read.strip
|
||||||
|
end
|
||||||
|
|
||||||
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
protected
|
protected
|
||||||
|
|
|
@ -85,7 +85,7 @@ module VagrantPlugins
|
||||||
errors = _detected_errors
|
errors = _detected_errors
|
||||||
|
|
||||||
if missing?(@token)
|
if missing?(@token)
|
||||||
token = token_from_vagrant_login(machine.env) || ENV["ATLAS_TOKEN"]
|
token = token_from_vagrant_login(machine.env)
|
||||||
if missing?(token)
|
if missing?(token)
|
||||||
errors << I18n.t("atlas_push.errors.missing_token")
|
errors << I18n.t("atlas_push.errors.missing_token")
|
||||||
else
|
else
|
||||||
|
|
|
@ -5,49 +5,59 @@ require Vagrant.source_root.join("plugins/commands/login/command")
|
||||||
describe VagrantPlugins::LoginCommand::Client do
|
describe VagrantPlugins::LoginCommand::Client do
|
||||||
include_context "unit"
|
include_context "unit"
|
||||||
|
|
||||||
|
def stub_env(key, value = nil)
|
||||||
|
allow(ENV).to receive(:[]).and_call_original
|
||||||
|
allow(ENV).to receive(:[])
|
||||||
|
.with(key)
|
||||||
|
.and_return(value)
|
||||||
|
end
|
||||||
|
|
||||||
let(:env) { isolated_environment.create_vagrant_env }
|
let(:env) { isolated_environment.create_vagrant_env }
|
||||||
|
|
||||||
subject { described_class.new(env) }
|
subject { described_class.new(env) }
|
||||||
|
|
||||||
|
before do
|
||||||
|
stub_env("ATLAS_TOKEN", nil)
|
||||||
|
subject.clear_token
|
||||||
|
end
|
||||||
|
|
||||||
describe "#logged_in?" do
|
describe "#logged_in?" do
|
||||||
it "quickly returns false if no token is set" do
|
let(:url) { "#{Vagrant.server_url}/api/v1/authenticate?access_token=#{token}" }
|
||||||
expect(subject).to_not be_logged_in
|
let(:headers) { { "Content-Type" => "application/json" } }
|
||||||
|
|
||||||
|
before { allow(subject).to receive(:token).and_return(token) }
|
||||||
|
|
||||||
|
context "when there is no token" do
|
||||||
|
let(:token) { nil }
|
||||||
|
|
||||||
|
it "returns false" do
|
||||||
|
expect(subject.logged_in?).to be(false)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns true if the endpoint returns 200" do
|
context "when there is a token" do
|
||||||
subject.store_token("foo")
|
let(:token) { "ABCD1234" }
|
||||||
|
|
||||||
response = {
|
it "returns true if the endpoint returns a 200" do
|
||||||
"token" => "baz",
|
stub_request(:get, url)
|
||||||
}
|
.with(headers: headers)
|
||||||
|
.to_return(body: JSON.pretty_generate("token" => token))
|
||||||
headers = { "Content-Type" => "application/json" }
|
expect(subject.logged_in?).to be(true)
|
||||||
url = "#{Vagrant.server_url}/api/v1/authenticate?access_token=foo"
|
|
||||||
stub_request(:get, url).
|
|
||||||
with(headers: headers).
|
|
||||||
to_return(status: 200, body: JSON.dump(response))
|
|
||||||
|
|
||||||
expect(subject).to be_logged_in
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns false if 401 is returned" do
|
it "returns false if the endpoint returns a non-200" do
|
||||||
subject.store_token("foo")
|
stub_request(:get, url)
|
||||||
|
.with(headers: headers)
|
||||||
url = "#{Vagrant.server_url}/api/v1/authenticate?access_token=foo"
|
.to_return(body: JSON.pretty_generate("bad" => true), status: 401)
|
||||||
stub_request(:get, url).
|
expect(subject.logged_in?).to be(false)
|
||||||
to_return(status: 401, body: "")
|
|
||||||
|
|
||||||
expect(subject).to_not be_logged_in
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "raises an exception if it can't reach the sever" do
|
it "raises an exception if the server cannot be found" do
|
||||||
subject.store_token("foo")
|
stub_request(:get, url)
|
||||||
|
.to_raise(SocketError)
|
||||||
url = "#{Vagrant.server_url}/api/v1/authenticate?access_token=foo"
|
expect { subject.logged_in? }
|
||||||
stub_request(:get, url).to_raise(SocketError)
|
.to raise_error(VagrantPlugins::LoginCommand::Errors::ServerUnreachable)
|
||||||
|
end
|
||||||
expect { subject.logged_in? }.
|
|
||||||
to raise_error(VagrantPlugins::LoginCommand::Errors::ServerUnreachable)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -89,11 +99,29 @@ describe VagrantPlugins::LoginCommand::Client do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "#token, #store_token, #clear_token" do
|
describe "#token" do
|
||||||
it "returns nil if there is no token" do
|
it "reads ATLAS_TOKEN" do
|
||||||
expect(subject.token).to be_nil
|
stub_env("ATLAS_TOKEN", "ABCD1234")
|
||||||
|
expect(subject.token).to eq("ABCD1234")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "reads the stored file" do
|
||||||
|
subject.store_token("EFGH5678")
|
||||||
|
expect(subject.token).to eq("EFGH5678")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "prefers the environment variable" do
|
||||||
|
stub_env("ATLAS_TOKEN", "ABCD1234")
|
||||||
|
subject.store_token("EFGH5678")
|
||||||
|
expect(subject.token).to eq("ABCD1234")
|
||||||
|
end
|
||||||
|
|
||||||
|
it "returns nil if there's no token set" do
|
||||||
|
expect(subject.token).to be(nil)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
describe "#store_token, #clear_token" do
|
||||||
it "stores the token and can re-access it" do
|
it "stores the token and can re-access it" do
|
||||||
subject.store_token("foo")
|
subject.store_token("foo")
|
||||||
expect(subject.token).to eq("foo")
|
expect(subject.token).to eq("foo")
|
||||||
|
|
|
@ -73,13 +73,9 @@ describe VagrantPlugins::AtlasPush::Config do
|
||||||
before do
|
before do
|
||||||
allow(subject).to receive(:token_from_vagrant_login)
|
allow(subject).to receive(:token_from_vagrant_login)
|
||||||
.and_return("token_from_vagrant_login")
|
.and_return("token_from_vagrant_login")
|
||||||
|
|
||||||
allow(ENV).to receive(:[]).and_call_original
|
|
||||||
allow(ENV).to receive(:[])
|
|
||||||
.with("ATLAS_TOKEN").and_return("token_from_env")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "uses the token in the Vagrantfile" do
|
it "uses the token from vagrant-login" do
|
||||||
subject.token = ""
|
subject.token = ""
|
||||||
subject.finalize!
|
subject.finalize!
|
||||||
expect(errors).to be_empty
|
expect(errors).to be_empty
|
||||||
|
@ -87,32 +83,10 @@ describe VagrantPlugins::AtlasPush::Config do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when ATLAS_TOKEN is set in the environment" do
|
|
||||||
before do
|
|
||||||
allow(subject).to receive(:token_from_vagrant_login)
|
|
||||||
.and_return(nil)
|
|
||||||
|
|
||||||
allow(ENV).to receive(:[]).and_call_original
|
|
||||||
allow(ENV).to receive(:[])
|
|
||||||
.with("ATLAS_TOKEN").and_return("token_from_env")
|
|
||||||
end
|
|
||||||
|
|
||||||
it "uses the token in the environment" do
|
|
||||||
subject.token = ""
|
|
||||||
subject.finalize!
|
|
||||||
expect(errors).to be_empty
|
|
||||||
expect(subject.token).to eq("token_from_env")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
context "when a token is given in the Vagrantfile" do
|
context "when a token is given in the Vagrantfile" do
|
||||||
before do
|
before do
|
||||||
allow(subject).to receive(:token_from_vagrant_login)
|
allow(subject).to receive(:token_from_vagrant_login)
|
||||||
.and_return("token_from_vagrant_login")
|
.and_return("token_from_vagrant_login")
|
||||||
|
|
||||||
allow(ENV).to receive(:[]).and_call_original
|
|
||||||
allow(ENV).to receive(:[])
|
|
||||||
.with("ATLAS_TOKEN").and_return("token_from_env")
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "uses the token in the Vagrantfile" do
|
it "uses the token in the Vagrantfile" do
|
||||||
|
@ -127,10 +101,6 @@ describe VagrantPlugins::AtlasPush::Config do
|
||||||
before do
|
before do
|
||||||
allow(subject).to receive(:token_from_vagrant_login)
|
allow(subject).to receive(:token_from_vagrant_login)
|
||||||
.and_return(nil)
|
.and_return(nil)
|
||||||
|
|
||||||
allow(ENV).to receive(:[]).and_call_original
|
|
||||||
allow(ENV).to receive(:[])
|
|
||||||
.with("ATLAS_TOKEN").and_return(nil)
|
|
||||||
end
|
end
|
||||||
|
|
||||||
it "returns an error" do
|
it "returns an error" do
|
||||||
|
|
Loading…
Reference in New Issue