Skip to content
代码片段 群组 项目
提交 dbee5314 编辑于 作者: Alina Mihaila's avatar Alina Mihaila 提交者: Jennifer Li
浏览文件

Add custom feature_category platform

  - For features that support developers and
  they are not specific to a product group
上级 c69eea96
No related branches found
No related tags found
1 合并请求!1355Draft: Reset password by phone with geetest captcha
...@@ -88,7 +88,6 @@ RSpec/InvalidFeatureCategory: ...@@ -88,7 +88,6 @@ RSpec/InvalidFeatureCategory:
- 'spec/lib/gitlab/graphql/tracers/logger_tracer_spec.rb' - 'spec/lib/gitlab/graphql/tracers/logger_tracer_spec.rb'
- 'spec/lib/gitlab/graphql/tracers/metrics_tracer_spec.rb' - 'spec/lib/gitlab/graphql/tracers/metrics_tracer_spec.rb'
- 'spec/lib/gitlab/import_export/version_checker_spec.rb' - 'spec/lib/gitlab/import_export/version_checker_spec.rb'
- 'spec/lib/gitlab/job_waiter_spec.rb'
- 'spec/lib/gitlab/metrics/background_transaction_spec.rb' - 'spec/lib/gitlab/metrics/background_transaction_spec.rb'
- 'spec/lib/gitlab/sidekiq_middleware/worker_context/client_spec.rb' - 'spec/lib/gitlab/sidekiq_middleware/worker_context/client_spec.rb'
- 'spec/lib/gitlab/sidekiq_middleware/worker_context/server_spec.rb' - 'spec/lib/gitlab/sidekiq_middleware/worker_context/server_spec.rb'
......
...@@ -221,3 +221,8 @@ Additionally, we flag the offenses via `RSpec/MissingFeatureCategory` RuboCop ru ...@@ -221,3 +221,8 @@ Additionally, we flag the offenses via `RSpec/MissingFeatureCategory` RuboCop ru
For Engineering Productivity internal tooling we use `feature_category: :tooling`. For Engineering Productivity internal tooling we use `feature_category: :tooling`.
For example in [`spec/tooling/danger/specs_spec.rb`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/spec/tooling/danger/specs_spec.rb#L12). For example in [`spec/tooling/danger/specs_spec.rb`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/spec/tooling/danger/specs_spec.rb#L12).
### Shared feature category
For features that support developers and they are not specific to a product group we use `feature_category: :shared`
For example [`spec/lib/gitlab/job_waiter_spec.rb`](https://gitlab.com/gitlab-org/gitlab/-/blob/master/spec/lib/gitlab/job_waiter_spec.rb)
...@@ -36,7 +36,9 @@ class InvalidFeatureCategory < RuboCop::Cop::RSpec::Base ...@@ -36,7 +36,9 @@ class InvalidFeatureCategory < RuboCop::Cop::RSpec::Base
# List of feature categories which are not defined in config/feature_categories.yml # List of feature categories which are not defined in config/feature_categories.yml
CUSTOM_FEATURE_CATEGORIES = [ CUSTOM_FEATURE_CATEGORIES = [
# https://docs.gitlab.com/ee/development/feature_categorization/#tooling-feature-category # https://docs.gitlab.com/ee/development/feature_categorization/#tooling-feature-category
:tooling :tooling,
# https://docs.gitlab.com/ee/development/feature_categorization/#shared-feature-category
:shared
].to_set.freeze ].to_set.freeze
# @!method feature_category?(node) # @!method feature_category?(node)
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
require 'spec_helper' require 'spec_helper'
RSpec.describe Gitlab::JobWaiter, :redis, feature_category: :not_owned do RSpec.describe Gitlab::JobWaiter, :redis, feature_category: :shared do
describe '.notify' do describe '.notify' do
it 'pushes the jid to the named queue' do it 'pushes the jid to the named queue' do
key = described_class.new.key key = described_class.new.key
......
...@@ -61,6 +61,7 @@ ...@@ -61,6 +61,7 @@
context 'with custom categories' do context 'with custom categories' do
it_behaves_like 'feature category validation', 'tooling' it_behaves_like 'feature category validation', 'tooling'
it_behaves_like 'feature category validation', 'shared'
end end
it 'flags invalid feature category for non-symbols' do it 'flags invalid feature category for non-symbols' do
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册