Sha256: 246c0e430cb240bf2a0c7c37379751b596c7c2fb00398723f2dd4f9a40bfd001

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

require_relative "../../../spec_helper"
require "kontena/cli/services/unlink_command"

describe Kontena::Cli::Services::UnlinkCommand do

  include ClientHelpers

  describe '#execute' do
    before(:each) do
      allow(client).to receive(:get).and_return({
        'links' => [
          {'alias' => 'service-b', 'grid_service_id' => "grid/service-b"}
        ]
      })
    end

    it 'requires api url' do
      expect(subject).to receive(:require_api_url).once
      subject.run(['service-a', 'service-b'])
    end

    it 'requires token' do
      expect(subject).to receive(:require_token).and_return(token)
      subject.run(['service-a', 'service-b'])
    end

    it 'aborts if service is not linked' do
      allow(client).to receive(:get).and_return({
        'links' => []
      })
      expect {
        subject.run(['service-a', 'service-b'])
      }.to raise_error(SystemExit)
    end

    it 'sends link to master' do
      expect(client).to receive(:put).with(
        'services/test-grid/default/service-a', {links: []}
      )
      subject.run(['service-a', 'service-b'])
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kontena-cli-0.17.0.pre3 spec/kontena/cli/services/unlink_command_spec.rb
kontena-cli-0.17.0.pre2 spec/kontena/cli/services/unlink_command_spec.rb
kontena-cli-0.17.0.pre1 spec/kontena/cli/services/unlink_command_spec.rb