Sha256: 880116509681cf6499647a44c801cabed870c53089e407b44d9c16977de7cd22
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 KB
Contents
require 'spec_helper' describe Conjur::Command::Variables, logged_in: true do let(:collection_url) { "https://core.example.com/variables" } let(:base_payload) { { mime_type: 'text/plain', kind: 'password' } } describe_command "variable:create -m text/plain -k password" do it "lets the server assign the id" do RestClient::Request.should_receive(:execute).with( method: :post, url: collection_url, headers: {}, payload: base_payload ).and_return(post_response('assigned-id')) expect { invoke }.to write({ id: 'assigned-id' }).to(:stdout) end end describe_command "variable:create -m text/plain -k password the-id" do it "propagates the user-assigned id" do RestClient::Request.should_receive(:execute).with( method: :post, url: collection_url, headers: {}, payload: base_payload.merge({ id: 'the-id' }) ).and_return(post_response('the-id')) expect { invoke }.to write({ id: 'the-id' }).to(:stdout) end end end
Version data entries
4 entries across 4 versions & 1 rubygems