Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-01-15 21:08:34 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-01-15 21:08:34 +0300
commit571d993b49313dd806bd3f6af16d36c26d9d28ca (patch)
tree06bd12c4b56b97881aef8a00d4d46698de1eb63f /spec/rubocop
parent9044365a91112d426fbbfba07eca595652bbe2df (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/rubocop')
-rw-r--r--spec/rubocop/cop/rspec/have_gitlab_http_status_spec.rb102
1 files changed, 102 insertions, 0 deletions
diff --git a/spec/rubocop/cop/rspec/have_gitlab_http_status_spec.rb b/spec/rubocop/cop/rspec/have_gitlab_http_status_spec.rb
new file mode 100644
index 00000000000..12bdacdee3c
--- /dev/null
+++ b/spec/rubocop/cop/rspec/have_gitlab_http_status_spec.rb
@@ -0,0 +1,102 @@
+# frozen_string_literal: true
+
+require 'fast_spec_helper'
+
+require 'rspec-parameterized'
+require 'rubocop'
+require 'rubocop/rspec/support'
+
+require_relative '../../../../rubocop/cop/rspec/have_gitlab_http_status'
+
+describe RuboCop::Cop::RSpec::HaveGitlabHttpStatus do
+ include CopHelper
+
+ using RSpec::Parameterized::TableSyntax
+
+ let(:source_file) { 'spec/foo_spec.rb' }
+
+ subject(:cop) { described_class.new }
+
+ shared_examples 'offense' do |code|
+ it 'registers an offense' do
+ inspect_source(code, source_file)
+
+ expect(cop.offenses.size).to eq(1)
+ expect(cop.offenses.map(&:line)).to eq([1])
+ expect(cop.highlights).to eq([code])
+ end
+ end
+
+ shared_examples 'no offense' do |code|
+ it 'does not register an offense' do
+ inspect_source(code)
+
+ expect(cop.offenses).to be_empty
+ end
+ end
+
+ shared_examples 'autocorrect' do |bad, good|
+ it 'autocorrects' do
+ autocorrected = autocorrect_source(bad, source_file)
+
+ expect(autocorrected).to eql(good)
+ end
+ end
+
+ shared_examples 'no autocorrect' do |code|
+ it 'does not autocorrect' do
+ autocorrected = autocorrect_source(code, source_file)
+
+ expect(autocorrected).to eql(code)
+ end
+ end
+
+ describe 'offenses and autocorrections' do
+ where(:bad, :good) do
+ 'have_http_status(:ok)' | 'have_gitlab_http_status(:ok)'
+ 'have_http_status(204)' | 'have_gitlab_http_status(:no_content)'
+ 'have_gitlab_http_status(201)' | 'have_gitlab_http_status(:created)'
+ 'have_http_status(var)' | 'have_gitlab_http_status(var)'
+ 'have_http_status(:success)' | 'have_gitlab_http_status(:success)'
+ 'have_http_status(:invalid)' | 'have_gitlab_http_status(:invalid)'
+ end
+
+ with_them do
+ include_examples 'offense', params[:bad]
+ include_examples 'no offense', params[:good]
+ include_examples 'autocorrect', params[:bad], params[:good]
+ include_examples 'no autocorrect', params[:good]
+ end
+ end
+
+ describe 'partially autocorrects invalid numeric status' do
+ where(:bad, :good) do
+ 'have_http_status(-1)' | 'have_gitlab_http_status(-1)'
+ end
+
+ with_them do
+ include_examples 'offense', params[:bad]
+ include_examples 'offense', params[:good]
+ include_examples 'autocorrect', params[:bad], params[:good]
+ include_examples 'no autocorrect', params[:good]
+ end
+ end
+
+ describe 'ignore' do
+ where(:code) do
+ [
+ 'have_http_status',
+ 'have_http_status { }',
+ 'have_http_status(200, arg)',
+ 'have_gitlab_http_status',
+ 'have_gitlab_http_status { }',
+ 'have_gitlab_http_status(200, arg)'
+ ]
+ end
+
+ with_them do
+ include_examples 'no offense', params[:code]
+ include_examples 'no autocorrect', params[:code]
+ end
+ end
+end