Commit 9d7c5e75 authored by Douwe Maan's avatar Douwe Maan

Address feedback

parent b0279cc2
...@@ -30,9 +30,8 @@ class Projects::BlobController < Projects::ApplicationController ...@@ -30,9 +30,8 @@ class Projects::BlobController < Projects::ApplicationController
end end
def show def show
environment_args = @repository.branch_exists?(@ref) ? { ref: @ref } : { commit: @commit } environment_params = @repository.branch_exists?(@ref) ? { ref: @ref } : { commit: @commit }
@environment = @project.environments_for(**environment_args).last @environment = EnvironmentsFinder.new(@project, current_user, environment_params).execute.last
@environment = nil unless can?(current_user, :read_environment, @environment)
end end
def edit def edit
......
...@@ -95,9 +95,8 @@ class Projects::CommitController < Projects::ApplicationController ...@@ -95,9 +95,8 @@ class Projects::CommitController < Projects::ApplicationController
@diffs = commit.diffs(opts) @diffs = commit.diffs(opts)
@notes_count = commit.notes.count @notes_count = commit.notes.count
@environment = @project.environments_for(commit: @commit).last @environment = EnvironmentsFinder.new(@project, current_user, commit: @commit).execute.last
@environment = nil unless can?(current_user, :read_environment, @environment)
end end
def define_note_vars def define_note_vars
......
...@@ -57,9 +57,8 @@ class Projects::CompareController < Projects::ApplicationController ...@@ -57,9 +57,8 @@ class Projects::CompareController < Projects::ApplicationController
@diffs = @compare.diffs(diff_options) @diffs = @compare.diffs(diff_options)
environment_args = @repository.branch_exists?(@head_ref) ? { ref: @head_ref } : { commit: @commit } environment_params = @repository.branch_exists?(@head_ref) ? { ref: @head_ref } : { commit: @commit }
@environment = @project.environments_for(**environment_args).last @environment = EnvironmentsFinder.new(@project, current_user, environment_params).execute.last
@environment = nil unless can?(current_user, :read_environment, @environment)
@diff_notes_disabled = true @diff_notes_disabled = true
@grouped_diff_discussions = {} @grouped_diff_discussions = {}
......
...@@ -103,8 +103,7 @@ class Projects::MergeRequestsController < Projects::ApplicationController ...@@ -103,8 +103,7 @@ class Projects::MergeRequestsController < Projects::ApplicationController
end end
end end
@environment = @merge_request.environments.last @environment = @merge_request.environments_for(current_user).last
@environment = nil unless can?(current_user, :read_environment, @environment)
respond_to do |format| respond_to do |format|
format.html { define_discussion_vars } format.html { define_discussion_vars }
...@@ -248,8 +247,7 @@ class Projects::MergeRequestsController < Projects::ApplicationController ...@@ -248,8 +247,7 @@ class Projects::MergeRequestsController < Projects::ApplicationController
end end
@diff_notes_disabled = true @diff_notes_disabled = true
@environment = @merge_request.environments.last @environment = @merge_request.environments_for(current_user).last
@environment = nil unless can?(current_user, :read_environment, @environment)
render json: { html: view_to_html_string('projects/merge_requests/_new_diffs', diffs: @diffs, environment: @environment) } render json: { html: view_to_html_string('projects/merge_requests/_new_diffs', diffs: @diffs, environment: @environment) }
end end
...@@ -450,9 +448,7 @@ class Projects::MergeRequestsController < Projects::ApplicationController ...@@ -450,9 +448,7 @@ class Projects::MergeRequestsController < Projects::ApplicationController
def ci_environments_status def ci_environments_status
environments = environments =
begin begin
@merge_request.environments.map do |environment| @merge_request.environments_for(current_user).map do |environment|
next unless can?(current_user, :read_environment, environment)
project = environment.project project = environment.project
deployment = environment.first_deployment_for(@merge_request.diff_head_commit) deployment = environment.first_deployment_for(@merge_request.diff_head_commit)
......
class EnvironmentsFinder
attr_reader :project, :current_user, :params
def initialize(project, current_user, params = {})
@project, @current_user, @params = project, current_user, params
end
def execute(skip_authorization: false)
deployments = project.deployments
deployments =
if ref
deployments_query = params[:with_tags] ? 'ref = :ref OR tag IS TRUE' : 'ref = :ref'
deployments.where(deployments_query, ref: ref.to_s)
elsif commit
deployments.where(sha: commit.sha)
else
deployments.none
end
environment_ids = deployments
.group(:environment_id)
.select(:environment_id)
environments = project.environments.available
.where(id: environment_ids).order_by_last_deployed_at.to_a
if ref && commit
environments.select! do |environment|
environment.includes_commit?(commit)
end
end
if ref && params[:recently_updated]
environments.select! do |environment|
environment.recently_updated_on_branch?(ref)
end
end
unless skip_authorization
environments.select! do |environment|
Ability.allowed?(current_user, :read_environment, environment)
end
end
environments
end
private
def ref
params[:ref].try(:to_s)
end
def commit
params[:commit]
end
end
...@@ -194,7 +194,7 @@ module CommitsHelper ...@@ -194,7 +194,7 @@ module CommitsHelper
end end
end end
def view_file_btn(commit_sha, diff_new_path, project) def view_file_button(commit_sha, diff_new_path, project)
link_to( link_to(
namespace_project_blob_path(project.namespace, project, namespace_project_blob_path(project.namespace, project,
tree_join(commit_sha, diff_new_path)), tree_join(commit_sha, diff_new_path)),
...@@ -205,7 +205,7 @@ module CommitsHelper ...@@ -205,7 +205,7 @@ module CommitsHelper
end end
end end
def view_on_environment_btn(commit_sha, diff_new_path, environment) def view_on_environment_button(commit_sha, diff_new_path, environment)
return unless environment && commit_sha return unless environment && commit_sha
external_url = environment.external_url_for(diff_new_path, commit_sha) external_url = environment.external_url_for(diff_new_path, commit_sha)
......
...@@ -38,7 +38,13 @@ class Environment < ActiveRecord::Base ...@@ -38,7 +38,13 @@ class Environment < ActiveRecord::Base
scope :available, -> { with_state(:available) } scope :available, -> { with_state(:available) }
scope :stopped, -> { with_state(:stopped) } scope :stopped, -> { with_state(:stopped) }
scope :order_by_last_deployed_at, -> { order(Gitlab::Database.nulls_first_order('(SELECT MAX(id) FROM deployments WHERE deployments.environment_id = environments.id)', 'ASC')) } scope :order_by_last_deployed_at, -> do
max_deployment_id_sql =
Deployment.select(Deployment.arel_table[:id].maximum).
where(Deployment.arel_table[:environment_id].eq(arel_table[:id])).
to_sql
order(Gitlab::Database.nulls_first_order("(#{max_deployment_id_sql})", 'ASC'))
end
state_machine :state, initial: :available do state_machine :state, initial: :available do
event :start do event :start do
......
...@@ -715,18 +715,22 @@ class MergeRequest < ActiveRecord::Base ...@@ -715,18 +715,22 @@ class MergeRequest < ActiveRecord::Base
!head_pipeline || head_pipeline.success? || head_pipeline.skipped? !head_pipeline || head_pipeline.success? || head_pipeline.skipped?
end end
def environments def environments_for(current_user)
return [] unless diff_head_commit return [] unless diff_head_commit
@environments ||= begin @environments ||= Hash.new do |h, current_user|
target_envs = target_project.environments_for( envs = EnvironmentsFinder.new(target_project, current_user,
ref: target_branch, commit: diff_head_commit, with_tags: true) ref: target_branch, commit: diff_head_commit, with_tags: true).execute
source_envs = source_project.environments_for( if source_project
ref: source_branch, commit: diff_head_commit) if source_project envs.concat EnvironmentsFinder.new(source_project, current_user,
ref: source_branch, commit: diff_head_commit).execute
end
(target_envs.to_a + source_envs.to_a).uniq h[current_user] = envs.uniq
end end
@environments[current_user]
end end
def state_human_name def state_human_name
......
...@@ -1306,37 +1306,6 @@ class Project < ActiveRecord::Base ...@@ -1306,37 +1306,6 @@ class Project < ActiveRecord::Base
Gitlab::Redis.with { |redis| redis.del(pushes_since_gc_redis_key) } Gitlab::Redis.with { |redis| redis.del(pushes_since_gc_redis_key) }
end end
def environments_for(ref: nil, commit: nil, with_tags: false)
deps =
if ref
deployments_query = with_tags ? 'ref = ? OR tag IS TRUE' : 'ref = ?'
deployments.where(deployments_query, ref.to_s)
elsif commit
deployments.where(sha: commit.sha)
else
Deployment.none
end
environment_ids = deps
.group(:environment_id)
.select(:environment_id)
environments_found = environments.available
.where(id: environment_ids).order_by_last_deployed_at.to_a
return environments_found unless ref && commit
environments_found.select do |environment|
environment.includes_commit?(commit)
end
end
def environments_recently_updated_on_branch(branch)
environments_for(ref: branch).select do |environment|
environment.recently_updated_on_branch?(branch)
end
end
def route_map_for(commit_sha) def route_map_for(commit_sha)
@route_maps_by_commit ||= Hash.new do |h, sha| @route_maps_by_commit ||= Hash.new do |h, sha|
h[sha] = begin h[sha] = begin
......
...@@ -35,9 +35,6 @@ class Repository ...@@ -35,9 +35,6 @@ class Repository
avatar: :avatar avatar: :avatar
} }
ROUTE_MAP_PATH = '.gitlab/route-map.yml'
GITLAB_CI_YML_PATH = '.gitlab-ci.yml'
# Wraps around the given method and caches its output in Redis and an instance # Wraps around the given method and caches its output in Redis and an instance
# variable. # variable.
# #
...@@ -1165,6 +1162,14 @@ class Repository ...@@ -1165,6 +1162,14 @@ class Repository
end end
end end
def route_map_for(sha)
blob_data_at(sha, '.gitlab/route-map.yml')
end
def gitlab_ci_yml_for(sha)
blob_data_at(sha, '.gitlab-ci.yml')
end
protected protected
def tree_entry_at(branch_name, path) def tree_entry_at(branch_name, path)
...@@ -1189,24 +1194,16 @@ class Repository ...@@ -1189,24 +1194,16 @@ class Repository
end end
end end
def route_map_for(sha) private
blob = blob_at(sha, ROUTE_MAP_PATH)
return unless blob
blob.load_all_data!(self)
blob.data
end
def gitlab_ci_yml_for(sha) def blob_data_at(sha, path)
blob = blob_at(sha, GITLAB_CI_YML_PATH) blob = blob_at(sha, path)
return unless blob return unless blob
blob.load_all_data!(self) blob.load_all_data!(self)
blob.data blob.data
end end
private
def git_action(index, action) def git_action(index, action)
path = normalize_path(action[:file_path]) path = normalize_path(action[:file_path])
......
...@@ -22,8 +22,8 @@ module Ci ...@@ -22,8 +22,8 @@ module Ci
end end
def environments def environments
@environments ||= project @environments ||=
.environments_recently_updated_on_branch(@ref) EnvironmentsFinder.new(project, nil, ref: @ref, recently_updated: true).execute(skip_authorization: true)
end end
end end
end end
.btn-group .btn-group
= view_on_environment_btn(@commit.sha, @path, @environment) if @environment = view_on_environment_button(@commit.sha, @path, @environment) if @environment
.btn-group.tree-btn-group .btn-group.tree-btn-group
= link_to 'Raw', namespace_project_raw_path(@project.namespace, @project, @id), = link_to 'Raw', namespace_project_raw_path(@project.namespace, @project, @id),
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
= edit_blob_link(@merge_request.source_project, @merge_request.source_branch, diff_file.new_path, = edit_blob_link(@merge_request.source_project, @merge_request.source_branch, diff_file.new_path,
blob: blob, link_opts: link_opts) blob: blob, link_opts: link_opts)
= view_file_btn(diff_commit.id, diff_file.new_path, project) = view_file_button(diff_commit.id, diff_file.new_path, project)
= view_on_environment_btn(diff_commit.id, diff_file.new_path, environment) if environment = view_on_environment_button(diff_commit.id, diff_file.new_path, environment) if environment
= render 'projects/diffs/content', diff_file: diff_file, diff_commit: diff_commit, blob: blob, project: project = render 'projects/diffs/content', diff_file: diff_file, diff_commit: diff_commit, blob: blob, project: project
...@@ -444,15 +444,17 @@ and/or `production`) you can see this information in the merge request itself. ...@@ -444,15 +444,17 @@ and/or `production`) you can see this information in the merge request itself.
### Go directly from source files to public pages on the environment ### Go directly from source files to public pages on the environment
> Introduced in GitLab 8.17.
To go one step further, we can specify a Route Map to get GitLab to show us "View on [environment URL]" buttons to go directly from a file to that file's representation on the deployed website. It will be exposed in a few places: To go one step further, we can specify a Route Map to get GitLab to show us "View on [environment URL]" buttons to go directly from a file to that file's representation on the deployed website. It will be exposed in a few places:
| In the diff for a merge request, comparison or commit | In the file view | | In the diff for a merge request, comparison or commit | In the file view |
| ------ | ------ | | ------ | ------ |
| !["View on env" button in merge request diff](img/view_on_env_mr.png) | !["View on env" button in file view](img/view_on_env_blob.png) | | !["View on env" button in merge request diff](img/view_on_env_mr.png) | !["View on env" button in file view](img/view_on_env_blob.png) |
To get this to work, you need to tell GitLab how the paths of files in your repository map to paths of pages on your website, using a so-called Route Map. To get this to work, you need to tell GitLab how the paths of files in your repository map to paths of pages on your website, using a Route Map.
The Route Map is a file inside the repository at `.gitlab/route-map.yml`, that contains a YAML array that maps `source` paths (in the repository) to `public` paths (on the website). A Route Map is a file inside the repository at `.gitlab/route-map.yml`, which contains a YAML array that maps `source` paths (in the repository) to `public` paths (on the website).
This is an example of a route map for [Middleman](https://middlemanapp.com) static websites like [http://about.gitlab.com](https://gitlab.com/gitlab-com/www-gitlab-com): This is an example of a route map for [Middleman](https://middlemanapp.com) static websites like [http://about.gitlab.com](https://gitlab.com/gitlab-com/www-gitlab-com):
......
...@@ -2,8 +2,6 @@ module Gitlab ...@@ -2,8 +2,6 @@ module Gitlab
class RouteMap class RouteMap
class FormatError < StandardError; end class FormatError < StandardError; end
attr_reader :map
def initialize(data) def initialize(data)
begin begin
entries = YAML.safe_load(data) entries = YAML.safe_load(data)
......
...@@ -5,11 +5,11 @@ describe 'View on environment', js: true do ...@@ -5,11 +5,11 @@ describe 'View on environment', js: true do
let(:branch_name) { 'feature' } let(:branch_name) { 'feature' }
let(:file_path) { 'files/ruby/feature.rb' } let(:file_path) { 'files/ruby/feature.rb' }
let(:project) { create(:project) } let(:project) { create(:project, :repository) }
let(:user) { project.creator } let(:user) { project.creator }
before do before do
project.team << [user, :master] project.add_master(user)
end end
context 'when the branch has a route map' do context 'when the branch has a route map' do
...@@ -24,7 +24,7 @@ describe 'View on environment', js: true do ...@@ -24,7 +24,7 @@ describe 'View on environment', js: true do
Files::CreateService.new( Files::CreateService.new(
project, project,
user, user,
source_branch: branch_name, start_branch: branch_name,
target_branch: branch_name, target_branch: branch_name,
commit_message: "Add .gitlab/route-map.yml", commit_message: "Add .gitlab/route-map.yml",
file_path: '.gitlab/route-map.yml', file_path: '.gitlab/route-map.yml',
...@@ -35,7 +35,7 @@ describe 'View on environment', js: true do ...@@ -35,7 +35,7 @@ describe 'View on environment', js: true do
Files::UpdateService.new( Files::UpdateService.new(
project, project,
user, user,
source_branch: branch_name, start_branch: branch_name,
target_branch: branch_name, target_branch: branch_name,
commit_message: "Update feature", commit_message: "Update feature",
file_path: file_path, file_path: file_path,
......
require 'spec_helper'
describe EnvironmentsFinder do
describe '#execute' do
let(:project) { create(:project, :repository) }
let(:user) { project.creator }
let(:environment) { create(:environment, project: project) }
before do
project.add_master(user)
end
context 'tagged deployment' do
before do
create(:deployment, environment: environment, ref: '1.0', tag: true, sha: project.commit.id)
end
it 'returns environment when with_tags is set' do
expect(EnvironmentsFinder.new(project, user, ref: 'master', commit: project.commit, with_tags: true).execute)
.to contain_exactly(environment)
end
it 'does not return environment when no with_tags is set' do
expect(EnvironmentsFinder.new(project, user, ref: 'master', commit: project.commit).execute)
.to be_empty
end
it 'does not return environment when commit is not part of deployment' do
expect(EnvironmentsFinder.new(project, user, ref: 'master', commit: project.commit('feature')).execute)
.to be_empty
end
end
context 'branch deployment' do
before do
create(:deployment, environment: environment, ref: 'master', sha: project.commit.id)
end
it 'returns environment when ref is set' do
expect(EnvironmentsFinder.new(project, user, ref: 'master', commit: project.commit).execute)
.to contain_exactly(environment)
end
it 'does not environment when ref is different' do
expect(EnvironmentsFinder.new(project, user, ref: 'feature', commit: project.commit).execute)
.to be_empty
end
it 'does not return environment when commit is not part of deployment' do
expect(EnvironmentsFinder.new(project, user, ref: 'master', commit: project.commit('feature')).execute)
.to be_empty
end
it 'returns environment when commit constraint is not set' do
expect(EnvironmentsFinder.new(project, user, ref: 'master').execute)
.to contain_exactly(environment)
end
end
context 'commit deployment' do
before do
create(:deployment, environment: environment, ref: 'master', sha: project.commit.id)
end
it 'returns environment' do
expect(EnvironmentsFinder.new(project, user, commit: project.commit).execute)
.to contain_exactly(environment)
end
end
context 'recently updated' do
context 'when last deployment to environment is the most recent one' do
before do
create(:deployment, environment: environment, ref: 'feature')
end
it 'finds recently updated environment' do
expect(EnvironmentsFinder.new(project, user, ref: 'feature', recently_updated: true).execute)
.to contain_exactly(environment)
end
end
context 'when last deployment to environment is not the most recent' do
before do
create(:deployment, environment: environment, ref: 'feature')
create(:deployment, environment: environment, ref: 'master')
end
it 'does not find environment' do
expect(EnvironmentsFinder.new(project, user, ref: 'feature', recently_updated: true).execute)
.to be_empty
end
end
context 'when there are two environments that deploy to the same branch' do
let(:second_environment) { create(:environment, project: project) }
before do
create(:deployment, environment: environment, ref: 'feature')
create(:deployment, environment: second_environment, ref: 'feature')
end
it 'finds both environments' do
expect(EnvironmentsFinder.new(project, user, ref: 'feature', recently_updated: true).execute)
.to contain_exactly(environment, second_environment)
end
end
end
end
end
...@@ -27,7 +27,7 @@ describe CommitsHelper do ...@@ -27,7 +27,7 @@ describe CommitsHelper do
end end
end end
describe '#view_on_environment_btn' do describe '#view_on_environment_button' do
let(:project) { create(:empty_project) } let(:project) { create(:empty_project) }
let(:environment) { create(:environment, external_url: 'http://example.com') } let(:environment) { create(:environment, external_url: 'http://example.com') }
let(:path) { 'source/file.html' } let(:path) { 'source/file.html' }
...@@ -38,7 +38,7 @@ describe CommitsHelper do ...@@ -38,7 +38,7 @@ describe CommitsHelper do
end end
it 'returns a link tag linking to the file in the environment' do it 'returns a link tag linking to the file in the environment' do
html = helper.view_on_environment_btn(sha, path, environment) html = helper.view_on_environment_button(sha, path, environment)
node = Nokogiri::HTML.parse(html).at_css('a') node = Nokogiri::HTML.parse(html).at_css('a')
expect(node[:title]).to eq('View on example.com') expect(node[:title]).to eq('View on example.com')
......
...@@ -54,7 +54,8 @@ describe Gitlab::RouteMap, lib: true do ...@@ -54,7 +54,8 @@ describe Gitlab::RouteMap, lib: true do
context 'when all is good' do context 'when all is good' do
it 'returns a route map' do it 'returns a route map' do
route_map = described_class.new(YAML.dump([{ 'source' => '/index\.html/', 'public' => 'index.html' }])) route_map = described_class.new(YAML.dump([{ 'source' => '/index\.html/', 'public' => 'index.html' }]))
expect(route_map.map).to eq([{ source: /^index\.html$/, public: 'index.html' }])
expect(route_map.public_path_for_source_path('index.html')).to eq('index.html')
end end
end end
end end
......
...@@ -1005,10 +1005,16 @@ describe MergeRequest, models: true do ...@@ -1005,10 +1005,16 @@ describe MergeRequest, models: true do
end end
end end
describe "#environments" do describe "#environments_for" do
let(:project) { create(:project, :repository) } let(:project) { create(:project, :repository) }
let(:user) { project.creator }
let(:merge_request) { create(:merge_request, source_project: project) } let(:merge_request) { create(:merge_request, source_project: project) }
before do
merge_request.source_project.add_master(user)
merge_request.target_project.add_master(user)
end
context 'with multiple environments' do context 'with multiple environments' do
let(:environments) { create_list(:environment, 3, project: project) } let(:environments) { create_list(:environment, 3, project: project) }
...@@ -1018,7 +1024,7 @@ describe MergeRequest, models: true do ...@@ -1018,7 +1024,7 @@ describe MergeRequest, models: true do
end end
it 'selects deployed environments' do it 'selects deployed environments' do
expect(merge_request.environments).to contain_exactly(environments.first) expect(merge_request.environments_for(user)).to contain_exactly(environments.first)
end end
end end
...@@ -1042,7 +1048,7 @@ describe MergeRequest, models: true do ...@@ -1042,7 +1048,7 @@ describe MergeRequest, models: true do
end end
it 'selects deployed environments' do it 'selects deployed environments' do
expect(merge_request.environments).to contain_exactly(source_environment) expect(merge_request.environments_for(user)).to contain_exactly(source_environment)
end end
context 'with environments on target project' do context 'with environments on target project' do
...@@ -1053,7 +1059,7 @@ describe MergeRequest, models: true do ...@@ -1053,7 +1059,7 @@ describe MergeRequest, models: true do
end end
it 'selects deployed environments' do it 'selects deployed environments' do
expect(merge_request.environments).to contain_exactly(source_environment, target_environment) expect(merge_request.environments_for(user)).to contain_exactly(source_environment, target_environment)
end end
end end
end end
...@@ -1064,7 +1070,7 @@ describe MergeRequest, models: true do ...@@ -1064,7 +1070,7 @@ describe MergeRequest, models: true do
end end
it 'returns an empty array' do it 'returns an empty array' do
expect(merge_request.environments).to be_empty expect(merge_request.environments_for(user)).to be_empty
end end
end end
end end
......
...@@ -1716,111 +1716,6 @@ describe Project, models: true do ...@@ -1716,111 +1716,6 @@ describe Project, models: true do
end end
end end
describe '#environments_for' do
let(:project) { create(:project, :repository) }
let(:environment) { create(:environment, project: project) }
context 'tagged deployment' do
before do
create(:deployment, environment: environment, ref: '1.0', tag: true, sha: project.commit.id)
end
it 'returns environment when with_tags is set' do
expect(project.environments_for(ref: 'master', commit: project.commit, with_tags: true))
.to contain_exactly(environment)
end
it 'does not return environment when no with_tags is set' do
expect(project.environments_for(ref: 'master', commit: project.commit))
.to be_empty
end
it 'does not return environment when commit is not part of deployment' do
expect(project.environments_for(ref: 'master', commit: project.commit('feature')))
.to be_empty
end
end
context 'branch deployment' do
before do
create(:deployment, environment: environment, ref: 'master', sha: project.commit.id)
end
it 'returns environment when ref is set' do
expect(project.environments_for(ref: 'master', commit: project.commit))
.to contain_exactly(environment)
end
it 'does not environment when ref is different' do
expect(project.environments_for(ref: 'feature', commit: project.commit))
.to be_empty
end
it 'does not return environment when commit is not part of deployment' do
expect(project.environments_for(ref: 'master', commit: project.commit('feature')))
.to be_empty
end
it 'returns environment when commit constraint is not set' do
expect(project.environments_for(ref: 'master'))
.to contain_exactly(environment)
end
end
context 'commit deployment' do
before do
create(:deployment, environment: environment, ref: 'master', sha: project.commit.id)
end
it 'returns environment' do
expect(project.environments_for(commit: project.commit))
.to contain_exactly(environment)
end
end
end
describe '#environments_recently_updated_on_branch' do
let(:project) { create(:project, :repository) }
let(:environment) { create(:environment, project: project) }
context 'when last deployment to environment is the most recent one' do
before do
create(:deployment, environment: environment, ref: 'feature')
end
it 'finds recently updated environment' do
expect(project.environments_recently_updated_on_branch('feature'))
.to contain_exactly(environment)
end
end
context 'when last deployment to environment is not the most recent' do
before do
create(:deployment, environment: environment, ref: 'feature')
create(:deployment, environment: environment, ref: 'master')
end
it 'does not find environment' do
expect(project.environments_recently_updated_on_branch('feature'))
.to be_empty
end
end
context 'when there are two environments that deploy to the same branch' do
let(:second_environment) { create(:environment, project: project) }
before do
create(:deployment, environment: environment, ref: 'feature')
create(:deployment, environment: second_environment, ref: 'feature')
end
it 'finds both environments' do
expect(project.environments_recently_updated_on_branch('feature'))
.to contain_exactly(environment, second_environment)
end
end
end
describe '#deployment_variables' do describe '#deployment_variables' do
context 'when project has no deployment service' do context 'when project has no deployment service' do
let(:project) { create(:empty_project) } let(:project) { create(:empty_project) }
...@@ -1879,7 +1774,7 @@ describe Project, models: true do ...@@ -1879,7 +1774,7 @@ describe Project, models: true do
end end
before do before do
project.repository.commit_file(User.last, '.gitlab/route-map.yml', route_map, 'Add .gitlab/route-map.yml', 'master', false) project.repository.commit_file(User.last, '.gitlab/route-map.yml', route_map, message: 'Add .gitlab/route-map.yml', branch_name: 'master', update: false)
end end
context 'when there is a .gitlab/route-map.yml at the commit' do context 'when there is a .gitlab/route-map.yml at the commit' do
......
...@@ -1785,7 +1785,7 @@ describe Repository, models: true do ...@@ -1785,7 +1785,7 @@ describe Repository, models: true do
describe '#gitlab_ci_yml_for' do describe '#gitlab_ci_yml_for' do
before do before do
repository.commit_file(User.last, '.gitlab-ci.yml', 'CONTENT', 'Add .gitlab-ci.yml', 'master', false) repository.commit_file(User.last, '.gitlab-ci.yml', 'CONTENT', message: 'Add .gitlab-ci.yml', branch_name: 'master', update: false)
end end
context 'when there is a .gitlab-ci.yml at the commit' do context 'when there is a .gitlab-ci.yml at the commit' do
...@@ -1803,7 +1803,7 @@ describe Repository, models: true do ...@@ -1803,7 +1803,7 @@ describe Repository, models: true do
describe '#route_map_for' do describe '#route_map_for' do
before do before do
repository.commit_file(User.last, '.gitlab/route-map.yml', 'CONTENT', 'Add .gitlab/route-map.yml', 'master', false) repository.commit_file(User.last, '.gitlab/route-map.yml', 'CONTENT', message: 'Add .gitlab/route-map.yml', branch_name: 'master', update: false)
end end
context 'when there is a .gitlab/route-map.yml at the commit' do context 'when there is a .gitlab/route-map.yml at the commit' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment