68 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
# frozen_string_literal: true
 | 
						|
 | 
						|
require 'fast_spec_helper'
 | 
						|
 | 
						|
require_relative '../../../../lib/gitlab/kubernetes/pod_cmd'
 | 
						|
 | 
						|
RSpec.describe Gitlab::Kubernetes::KubectlCmd do
 | 
						|
  describe '.delete' do
 | 
						|
    it 'constructs string properly' do
 | 
						|
      args = %w(resource_type type --flag-1 --flag-2)
 | 
						|
 | 
						|
      expected_command = 'kubectl delete resource_type type --flag-1 --flag-2'
 | 
						|
 | 
						|
      expect(described_class.delete(*args)).to eq expected_command
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe '.apply_file' do
 | 
						|
    context 'without optional args' do
 | 
						|
      it 'requires filename to be present' do
 | 
						|
        expect { described_class.apply_file(nil) }.to raise_error(ArgumentError, "filename is not present")
 | 
						|
        expect { described_class.apply_file("  ") }.to raise_error(ArgumentError, "filename is not present")
 | 
						|
      end
 | 
						|
 | 
						|
      it 'constructs string properly' do
 | 
						|
        expected_command = 'kubectl apply -f filename'
 | 
						|
 | 
						|
        expect(described_class.apply_file('filename')).to eq expected_command
 | 
						|
      end
 | 
						|
    end
 | 
						|
 | 
						|
    context 'with optional args' do
 | 
						|
      it 'constructs command properly with many args' do
 | 
						|
        args = %w(arg-1 --flag-0-1 arg-2 --flag-0-2)
 | 
						|
 | 
						|
        expected_command = 'kubectl apply -f filename arg-1 --flag-0-1 arg-2 --flag-0-2'
 | 
						|
 | 
						|
        expect(described_class.apply_file('filename', *args)).to eq expected_command
 | 
						|
      end
 | 
						|
 | 
						|
      it 'constructs command properly with single arg' do
 | 
						|
        args = "arg-1"
 | 
						|
 | 
						|
        expected_command = 'kubectl apply -f filename arg-1'
 | 
						|
 | 
						|
        expect(described_class.apply_file('filename', args)).to eq(expected_command)
 | 
						|
      end
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe '.api_resources' do
 | 
						|
    it 'constructs string properly' do
 | 
						|
      expected_command = 'kubectl api-resources -o name --api-group foo'
 | 
						|
 | 
						|
      expect(described_class.api_resources("-o", "name", "--api-group", "foo")).to eq expected_command
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  describe '.delete_crds_from_group' do
 | 
						|
    it 'constructs string properly' do
 | 
						|
      command = 'kubectl api-resources -o name --api-group foo | xargs -r kubectl delete --ignore-not-found crd'
 | 
						|
      command_with_retries = "for i in $(seq 1 3); do #{command} && s=0 && break || s=$?; sleep 1s; echo \"Retrying ($i)...\"; done; (exit $s)"
 | 
						|
 | 
						|
      expect(described_class.delete_crds_from_group("foo")).to eq command_with_retries
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |