Sha256: 388909d14b5e274c4bf3708ed97dd215529b5d23d96768450d98b53fbbca0e3a

Contents?: true

Size: 884 Bytes

Versions: 56

Compression:

Stored size: 884 Bytes

Contents

require "kontena/cli/grids/trusted_subnet_command"
require "kontena/cli/grids/trusted_subnets/list_command"

describe Kontena::Cli::Grids::TrustedSubnets::ListCommand do

  include ClientHelpers
  include RequirementsHelper

  expect_to_require_current_master

  describe '#execute' do
    it 'requests grid details from master' do
      expect(client).to receive(:get).with("grids/test-grid").and_return('trusted_subnets' => [
          '192.168.0.1/24',
      ])
      expect{subject.run([])}.to output("192.168.0.1/24\n").to_stdout
    end

    it 'supports the --grid option' do
      allow(subject).to receive(:current_grid).and_call_original
      expect(client).to receive(:get).with("grids/ingrid").and_return('trusted_subnets' => [
          '192.168.0.1/24',
      ])
      expect{subject.run(['--grid', 'ingrid'])}.to output("192.168.0.1/24\n").to_stdout
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
kontena-cli-1.5.4 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.4.rc1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.3 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.2 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.0 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.0.rc1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.0.pre5 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.0.pre4 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.0.pre3 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.0.pre2 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.5.0.pre1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.3 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.3.rc1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.2 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.2.rc1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.2.pre1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.1.rc1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb
kontena-cli-1.4.1.pre1 spec/kontena/cli/grids/trusted_subnets/list_command_spec.rb