debian-mirror-gitlab/spec/requests/projects/environments_controller_spec.rb
2022-07-23 20:15:48 +02:00

37 lines
1.2 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe Projects::EnvironmentsController do
let_it_be(:project) { create(:project, :repository) }
let(:environment) { create(:environment, name: 'production', project: project) }
describe 'GET #show' do
subject { get project_environment_path(project, environment) }
before do
sign_in(project.owner)
end
include_examples 'avoids N+1 queries on environment detail page'
end
def environment_params(opts = {})
opts.reverse_merge(namespace_id: project.namespace,
project_id: project,
id: environment.id)
end
def create_deployment_with_associations(commit_depth:)
commit = project.commit("HEAD~#{commit_depth}")
create(:user, email: commit.author_email) unless User.find_by(email: commit.author_email)
deployer = create(:user)
pipeline = create(:ci_pipeline, project: environment.project)
build = create(:ci_build, environment: environment.name, pipeline: pipeline, user: deployer)
create(:deployment, :success, environment: environment, deployable: build, user: deployer,
project: project, sha: commit.sha)
end
end