Sha256: f59b25c0fd4c331a1fd52166a69f33e2fe51d2fcc6a42525f8e4952aef6d2121

Contents?: true

Size: 1.03 KB

Versions: 95

Compression:

Stored size: 1.03 KB

Contents

require_relative "../../../../spec_helper"
require "kontena/cli/grids/trusted_subnet_command"
require "kontena/cli/grids/trusted_subnets/add_command"

describe Kontena::Cli::Grids::TrustedSubnets::AddCommand do

  include ClientHelpers

  describe '#execute' do
    it 'requires api url' do
      expect(subject).to receive(:require_api_url).once
      subject.run(['grid', 'subnet'])
    end

    it 'requires token' do
      expect(subject).to receive(:require_token).and_return(token)
      subject.run(['grid', 'subnet'])
    end

    it 'requires grid as param' do
      expect {
        subject.run([])
      }.to raise_error(Clamp::UsageError)
    end

    it 'adds subnet to grid' do
      allow(client).to receive(:get).with("grids/my-grid").and_return(
        'trusted_subnets' => ['192.168.12.0/24']
      )
      expect(client).to receive(:put).with(
        'grids/my-grid', hash_including({trusted_subnets: [
          '192.168.12.0/24', '10.12.0.0/19'
        ]})
      )
      subject.run(['my-grid', '10.12.0.0/19'])
    end
  end
end

Version data entries

95 entries across 95 versions & 1 rubygems

Version Path
kontena-cli-1.1.6 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.5 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.5.rc3 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.5.rc2 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.5.rc1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.4 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.3 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.2 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.2.rc2 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.2.rc1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.1.rc1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.0 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.0.rc2 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.0.rc1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.1.0.pre1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.0.6 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.0.6.rc1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.0.5 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb
kontena-cli-1.0.5.rc1 spec/kontena/cli/grids/trusted_subnets/add_command_spec.rb