debian-mirror-gitlab/spec/helpers/projects/terraform_helper_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.6 KiB
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Projects::TerraformHelper do
describe '#js_terraform_list_data' do
let_it_be(:project) { create(:project) }
2021-04-29 21:17:54 +05:30
2021-02-22 17:27:13 +05:30
let(:current_user) { project.creator }
2021-01-29 00:20:46 +05:30
2021-02-22 17:27:13 +05:30
subject { helper.js_terraform_list_data(current_user, project) }
2021-01-29 00:20:46 +05:30
2021-02-22 17:27:13 +05:30
it 'includes image path' do
2021-01-29 00:20:46 +05:30
image_path = ActionController::Base.helpers.image_path(
'illustrations/empty-state/empty-serverless-lg.svg'
)
expect(subject[:empty_state_image]).to eq(image_path)
end
2021-02-22 17:27:13 +05:30
it 'includes project path' do
2021-01-29 00:20:46 +05:30
expect(subject[:project_path]).to eq(project.full_path)
end
2021-02-22 17:27:13 +05:30
2021-10-27 15:23:28 +05:30
it 'includes access token path' do
expect(subject[:access_tokens_path]).to eq(profile_personal_access_tokens_path)
end
it 'includes username' do
expect(subject[:username]).to eq(current_user.username)
end
it 'includes terraform state api url' do
expect(subject[:terraform_api_url]).to eq("#{Settings.gitlab.url}/api/v4/projects/#{project.id}/terraform/state")
end
2021-02-22 17:27:13 +05:30
it 'indicates the user is a terraform admin' do
expect(subject[:terraform_admin]).to eq(true)
end
context 'when current_user is not a terraform admin' do
let(:current_user) { create(:user) }
it 'indicates the user is not an admin' do
expect(subject[:terraform_admin]).to eq(false)
end
end
context 'when current_user is missing' do
let(:current_user) { nil }
it 'indicates the user is not an admin' do
expect(subject[:terraform_admin]).to be_nil
end
end
2021-01-29 00:20:46 +05:30
end
end