summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/kubernetes/helm/v2/reset_command_spec.rb
blob: 2a3a4cec2b042446999c7d5c3da3837cc4028cbc (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
26
27
28
29
30
31
32
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Kubernetes::Helm::V2::ResetCommand do
  subject(:reset_command) { described_class.new(name: name, rbac: rbac, files: files) }

  let(:rbac) { true }
  let(:name) { 'helm' }
  let(:files) { {} }

  it_behaves_like 'helm command generator' do
    let(:commands) do
      <<~EOS
      export HELM_HOST="localhost:44134"
      tiller -listen ${HELM_HOST} -alsologtostderr &
      helm init --client-only
      helm reset --force
      EOS
    end
  end

  describe '#pod_name' do
    subject { reset_command.pod_name }

    it { is_expected.to eq('uninstall-helm') }
  end

  it_behaves_like 'helm command' do
    let(:command) { reset_command }
  end
end