Welcome to mirror list, hosted at ThFree Co, Russian Federation.

kubernetes_client_spec.rb « quality « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c0c0d0977a81faea95d94e47a7683a4d922967a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Quality::KubernetesClient do
  subject { described_class.new(namespace: 'review-apps-ee') }

  describe '#cleanup' do
    it 'calls kubectl with the correct arguments' do
      # popen_with_detail will receive an array with a bunch of arguments; we're
      # only concerned with it having the correct namespace and release name
      expect(Gitlab::Popen).to receive(:popen_with_detail) do |args|
        expect(args)
          .to satisfy_one { |arg| arg.start_with?('-n "review-apps-ee" get') }
        expect(args)
          .to satisfy_one { |arg| arg == 'grep "my-release"' }
        expect(args)
          .to satisfy_one { |arg| arg.end_with?('-n "review-apps-ee" delete') }
      end

      # We're not verifying the output here, just silencing it
      expect { subject.cleanup(release_name: 'my-release') }.to output.to_stdout
    end
  end
end