diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-06-04 14:17:05 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-06-04 14:17:05 +0000 |
commit | 2b171e66adf713653c04005e08c02dd823622bdb (patch) | |
tree | 977965c0f9e4c93fa66c1f02b876391df115ac97 /spec | |
parent | bab5bdce96a258068d69c4b2811f036f151ed60b (diff) | |
download | gitlab-ce-2b171e66adf713653c04005e08c02dd823622bdb.tar.gz |
Add latest changes from gitlab-org/gitlab@13-0-stable-ee
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/snippet_repository_spec.rb | 80 | ||||
-rw-r--r-- | spec/services/ci/stop_environments_service_spec.rb | 6 | ||||
-rw-r--r-- | spec/services/snippets/update_service_spec.rb | 58 | ||||
-rw-r--r-- | spec/workers/incident_management/process_alert_worker_spec.rb | 35 |
4 files changed, 152 insertions, 27 deletions
diff --git a/spec/models/snippet_repository_spec.rb b/spec/models/snippet_repository_spec.rb index 255f07ebfa5..b86a6f82f07 100644 --- a/spec/models/snippet_repository_spec.rb +++ b/spec/models/snippet_repository_spec.rb @@ -116,20 +116,84 @@ describe SnippetRepository do end context 'when commit actions are present' do - let(:file_action) { { file_path: 'foo.txt', content: 'foo', action: :foobar } } - let(:data) { [file_action] } + shared_examples 'uses the expected action' do |action, expected_action| + let(:file_action) { { file_path: 'foo.txt', content: 'foo', action: action } } + let(:data) { [file_action] } + + specify do + expect(repo).to( + receive(:multi_action).with( + user, + hash_including(actions: array_including(hash_including(action: expected_action))))) + + snippet_repository.multi_files_action(user, data, commit_opts) + end + end - it 'does not change commit action' do - expect(repo).to( - receive(:multi_action).with( - user, - hash_including(actions: array_including(hash_including(action: :foobar))))) + it_behaves_like 'uses the expected action', :foobar, :foobar - snippet_repository.multi_files_action(user, data, commit_opts) + context 'when action is a string' do + it_behaves_like 'uses the expected action', 'foobar', :foobar end end end + context 'when move action does not include content' do + let(:previous_path) { 'CHANGELOG' } + let(:new_path) { 'CHANGELOG_new' } + let(:move_action) { { previous_path: previous_path, file_path: new_path, action: action } } + + shared_examples 'renames file and does not update content' do + specify do + existing_content = blob_at(snippet, previous_path).data + + snippet_repository.multi_files_action(user, [move_action], commit_opts) + + blob = blob_at(snippet, new_path) + expect(blob).not_to be_nil + expect(blob.data).to eq existing_content + end + end + + context 'when action is not set' do + let(:action) { nil } + + it_behaves_like 'renames file and does not update content' + end + + context 'when action is set' do + let(:action) { :move } + + it_behaves_like 'renames file and does not update content' + end + end + + context 'when update action does not include content' do + let(:update_action) { { previous_path: 'CHANGELOG', file_path: 'CHANGELOG', action: action } } + + shared_examples 'does not commit anything' do + specify do + last_commit_id = snippet.repository.head_commit.id + + snippet_repository.multi_files_action(user, [update_action], commit_opts) + + expect(snippet.repository.head_commit.id).to eq last_commit_id + end + end + + context 'when action is not set' do + let(:action) { nil } + + it_behaves_like 'does not commit anything' + end + + context 'when action is set' do + let(:action) { :update } + + it_behaves_like 'does not commit anything' + end + end + shared_examples 'snippet repository with file names' do |*filenames| it 'sets a name for unnamed files' do ls_files = snippet.repository.ls_files(nil) diff --git a/spec/services/ci/stop_environments_service_spec.rb b/spec/services/ci/stop_environments_service_spec.rb index 19a6bcc307f..ebbe6c37b87 100644 --- a/spec/services/ci/stop_environments_service_spec.rb +++ b/spec/services/ci/stop_environments_service_spec.rb @@ -222,8 +222,10 @@ describe Ci::StopEnvironmentsService do it 'tracks the exception' do expect(Gitlab::ErrorTracking) - .to receive(:track_error) - .with(Gitlab::Access::AccessDeniedError, anything).twice + .to receive(:track_exception) + .with(Gitlab::Access::AccessDeniedError, anything) + .twice + .and_call_original subject end diff --git a/spec/services/snippets/update_service_spec.rb b/spec/services/snippets/update_service_spec.rb index 38747ae907f..6c3ae52befc 100644 --- a/spec/services/snippets/update_service_spec.rb +++ b/spec/services/snippets/update_service_spec.rb @@ -302,6 +302,60 @@ describe Snippets::UpdateService do end end + shared_examples 'only file_name is present' do + let(:base_opts) do + { + file_name: file_name + } + end + + shared_examples 'content is not updated' do + specify do + existing_content = snippet.blobs.first.data + response = subject + snippet = response.payload[:snippet] + + blob = snippet.repository.blob_at('master', file_name) + + expect(blob).not_to be_nil + expect(response).to be_success + expect(blob.data).to eq existing_content + end + end + + context 'when renaming the file_name' do + let(:file_name) { 'new_file_name' } + + it_behaves_like 'content is not updated' + end + + context 'when file_name does not change' do + let(:file_name) { snippet.blobs.first.path } + + it_behaves_like 'content is not updated' + end + end + + shared_examples 'only content is present' do + let(:content) { 'new_content' } + let(:base_opts) do + { + content: content + } + end + + it 'updates the content' do + response = subject + snippet = response.payload[:snippet] + + blob = snippet.repository.blob_at('master', snippet.blobs.first.path) + + expect(blob).not_to be_nil + expect(response).to be_success + expect(blob.data).to eq content + end + end + context 'when Project Snippet' do let_it_be(:project) { create(:project) } let!(:snippet) { create(:project_snippet, :repository, author: user, project: project) } @@ -316,6 +370,8 @@ describe Snippets::UpdateService do it_behaves_like 'updates repository content' it_behaves_like 'commit operation fails' it_behaves_like 'committable attributes' + it_behaves_like 'only file_name is present' + it_behaves_like 'only content is present' it_behaves_like 'snippets spam check is performed' do before do subject @@ -340,6 +396,8 @@ describe Snippets::UpdateService do it_behaves_like 'updates repository content' it_behaves_like 'commit operation fails' it_behaves_like 'committable attributes' + it_behaves_like 'only file_name is present' + it_behaves_like 'only content is present' it_behaves_like 'snippets spam check is performed' do before do subject diff --git a/spec/workers/incident_management/process_alert_worker_spec.rb b/spec/workers/incident_management/process_alert_worker_spec.rb index 938e72aa0f0..2d17a59c76f 100644 --- a/spec/workers/incident_management/process_alert_worker_spec.rb +++ b/spec/workers/incident_management/process_alert_worker_spec.rb @@ -7,40 +7,39 @@ describe IncidentManagement::ProcessAlertWorker do describe '#perform' do let(:alert_management_alert_id) { nil } - let(:alert_payload) { { alert: 'payload' } } - let(:new_issue) { create(:issue, project: project) } - let(:create_issue_service) { instance_double(IncidentManagement::CreateIssueService, execute: new_issue) } + let(:alert_payload) do + { + 'annotations' => { 'title' => 'title' }, + 'startsAt' => Time.now.rfc3339 + } + end + + let(:created_issue) { Issue.last } subject { described_class.new.perform(project.id, alert_payload, alert_management_alert_id) } before do allow(IncidentManagement::CreateIssueService) .to receive(:new).with(project, alert_payload) - .and_return(create_issue_service) + .and_call_original end - it 'calls create issue service' do - expect(Project).to receive(:find_by_id).and_call_original - + it 'creates an issue' do expect(IncidentManagement::CreateIssueService) .to receive(:new).with(project, alert_payload) - .and_return(create_issue_service) - expect(create_issue_service).to receive(:execute) - - subject + expect { subject }.to change { Issue.count }.by(1) end context 'with invalid project' do - let(:invalid_project_id) { 0 } + let(:invalid_project_id) { non_existing_record_id } subject { described_class.new.perform(invalid_project_id, alert_payload) } it 'does not create issues' do - expect(Project).to receive(:find_by_id).and_call_original expect(IncidentManagement::CreateIssueService).not_to receive(:new) - subject + expect { subject }.not_to change { Issue.count } end end @@ -59,7 +58,9 @@ describe IncidentManagement::ProcessAlertWorker do context 'when alert can be updated' do it 'updates AlertManagement::Alert#issue_id' do - expect { subject }.to change { alert.reload.issue_id }.to(new_issue.id) + subject + + expect(alert.reload.issue_id).to eq(created_issue.id) end it 'does not write a warning to log' do @@ -80,12 +81,12 @@ describe IncidentManagement::ProcessAlertWorker do expect { subject }.not_to change { alert.reload.issue_id } end - it 'writes a worning to log' do + it 'logs a warning' do subject expect(Gitlab::AppLogger).to have_received(:warn).with( message: 'Cannot link an Issue with Alert', - issue_id: new_issue.id, + issue_id: created_issue.id, alert_id: alert_management_alert_id, alert_errors: { hosts: ['hosts array is over 255 chars'] } ) |