Commit e93e3e73 authored by Erick Bajao's avatar Erick Bajao

Remove test_failure_history flag

Cleans up any remnants of the test_failure_history feature flag.
parent ce39c4e6
...@@ -92,7 +92,7 @@ export default { ...@@ -92,7 +92,7 @@ export default {
return reportTextBuilder(name, summary); return reportTextBuilder(name, summary);
}, },
hasRecentFailures(summary) { hasRecentFailures(summary) {
return this.glFeatures.testFailureHistory && summary?.recentlyFailed > 0; return summary?.recentlyFailed > 0;
}, },
recentFailuresText(summary) { recentFailuresText(summary) {
return recentFailuresTextBuilder(summary); return recentFailuresTextBuilder(summary);
......
<script> <script>
import { mapActions } from 'vuex'; import { mapActions } from 'vuex';
import { GlBadge, GlSprintf } from '@gitlab/ui'; import { GlBadge, GlSprintf } from '@gitlab/ui';
import glFeatureFlagsMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
export default { export default {
name: 'TestIssueBody', name: 'TestIssueBody',
...@@ -9,7 +8,6 @@ export default { ...@@ -9,7 +8,6 @@ export default {
GlBadge, GlBadge,
GlSprintf, GlSprintf,
}, },
mixins: [glFeatureFlagsMixin()],
props: { props: {
issue: { issue: {
type: Object, type: Object,
...@@ -28,11 +26,7 @@ export default { ...@@ -28,11 +26,7 @@ export default {
}, },
computed: { computed: {
showRecentFailures() { showRecentFailures() {
return ( return this.issue.recent_failures?.count && this.issue.recent_failures?.base_branch;
this.glFeatures.testFailureHistory &&
this.issue.recent_failures?.count &&
this.issue.recent_failures?.base_branch
);
}, },
}, },
methods: { methods: {
......
...@@ -42,7 +42,6 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo ...@@ -42,7 +42,6 @@ class Projects::MergeRequestsController < Projects::MergeRequests::ApplicationCo
push_frontend_feature_flag(:core_security_mr_widget_counts, @project) push_frontend_feature_flag(:core_security_mr_widget_counts, @project)
push_frontend_feature_flag(:core_security_mr_widget_downloads, @project, default_enabled: true) push_frontend_feature_flag(:core_security_mr_widget_downloads, @project, default_enabled: true)
push_frontend_feature_flag(:remove_resolve_note, @project, default_enabled: true) push_frontend_feature_flag(:remove_resolve_note, @project, default_enabled: true)
push_frontend_feature_flag(:test_failure_history, @project)
push_frontend_feature_flag(:diffs_gradual_load, @project, default_enabled: true) push_frontend_feature_flag(:diffs_gradual_load, @project, default_enabled: true)
push_frontend_feature_flag(:codequality_mr_diff, @project) push_frontend_feature_flag(:codequality_mr_diff, @project)
......
...@@ -30,7 +30,6 @@ module Ci ...@@ -30,7 +30,6 @@ module Ci
end end
def should_track_failures? def should_track_failures?
return false unless Feature.enabled?(:test_failure_history, project)
return false unless project.default_branch_or_master == pipeline.ref return false unless project.default_branch_or_master == pipeline.ref
# We fetch for up to MAX_TRACKABLE_FAILURES + 1 builds. So if ever we get # We fetch for up to MAX_TRACKABLE_FAILURES + 1 builds. So if ever we get
......
---
title: Remove test_failure_history flag
merge_request: 51464
author:
type: changed
---
name: test_failure_history
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/45027
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/268249
milestone: '13.6'
type: development
group: group::testing
default_enabled: false
...@@ -68,36 +68,10 @@ execution time and the error output. ...@@ -68,36 +68,10 @@ execution time and the error output.
### Number of recent failures ### Number of recent failures
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/241759) in GitLab 13.7. > - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/241759) in GitLab 13.7.
> - It's [deployed behind a feature flag](../user/feature_flags.md), disabled by default.
> - It's disabled on GitLab.com.
> - It's not recommended for production use.
> - To use it in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enable-or-disable-the-number-of-recent-failures). **(CORE ONLY)**
WARNING:
This feature might not be available to you. Check the **version history** note above for details.
If a test failed in the project's default branch in the last 14 days, a message like If a test failed in the project's default branch in the last 14 days, a message like
`Failed {n} time(s) in {default_branch} in the last 14 days` is displayed for that test. `Failed {n} time(s) in {default_branch} in the last 14 days` is displayed for that test.
#### Enable or disable the number of recent failures **(CORE ONLY)**
Displaying the number of failures in the last 14 days is under development and not
ready for production use. It is deployed behind a feature flag that is **disabled by default**.
[GitLab administrators with access to the GitLab Rails console](../administration/feature_flags.md)
can enable it.
To enable it:
```ruby
Feature.enable(:test_failure_history)
```
To disable it:
```ruby
Feature.disable(:test_failure_history)
```
## How to set it up ## How to set it up
To enable the Unit test reports in merge requests, you need to add To enable the Unit test reports in merge requests, you need to add
......
...@@ -12,8 +12,6 @@ module Gitlab ...@@ -12,8 +12,6 @@ module Gitlab
end end
def load! def load!
return unless Feature.enabled?(:test_failure_history, project)
recent_failures_count.each do |key_hash, count| recent_failures_count.each do |key_hash, count|
failed_test_cases[key_hash].set_recent_failures(count, project.default_branch_or_master) failed_test_cases[key_hash].set_recent_failures(count, project.default_branch_or_master)
end end
......
...@@ -22,7 +22,7 @@ describe('Grouped test reports app', () => { ...@@ -22,7 +22,7 @@ describe('Grouped test reports app', () => {
let wrapper; let wrapper;
let mockStore; let mockStore;
const mountComponent = ({ props = { pipelinePath }, testFailureHistory = false } = {}) => { const mountComponent = ({ props = { pipelinePath } } = {}) => {
wrapper = mount(Component, { wrapper = mount(Component, {
store: mockStore, store: mockStore,
localVue, localVue,
...@@ -31,11 +31,6 @@ describe('Grouped test reports app', () => { ...@@ -31,11 +31,6 @@ describe('Grouped test reports app', () => {
pipelinePath, pipelinePath,
...props, ...props,
}, },
provide: {
glFeatures: {
testFailureHistory,
},
},
}); });
}; };
...@@ -242,50 +237,25 @@ describe('Grouped test reports app', () => { ...@@ -242,50 +237,25 @@ describe('Grouped test reports app', () => {
describe('with recent failures counts', () => { describe('with recent failures counts', () => {
beforeEach(() => { beforeEach(() => {
setReports(recentFailuresTestReports); setReports(recentFailuresTestReports);
mountComponent();
}); });
describe('with feature flag enabled', () => { it('renders the recently failed tests summary', () => {
beforeEach(() => { expect(findHeader().text()).toContain(
mountComponent({ testFailureHistory: true }); '2 out of 3 failed tests have failed more than once in the last 14 days',
}); );
it('renders the recently failed tests summary', () => {
expect(findHeader().text()).toContain(
'2 out of 3 failed tests have failed more than once in the last 14 days',
);
});
it('renders the recently failed count on the test suite', () => {
expect(findSummaryDescription().text()).toContain(
'1 out of 2 failed tests has failed more than once in the last 14 days',
);
});
it('renders the recent failures count on the test case', () => {
expect(findIssueDescription().text()).toContain(
'Failed 8 times in master in the last 14 days',
);
});
}); });
describe('with feature flag disabled', () => { it('renders the recently failed count on the test suite', () => {
beforeEach(() => { expect(findSummaryDescription().text()).toContain(
mountComponent({ testFailureHistory: false }); '1 out of 2 failed tests has failed more than once in the last 14 days',
}); );
});
it('does not render the recently failed tests summary', () => {
expect(findHeader().text()).not.toContain('failed more than once in the last 14 days');
});
it('does not render the recently failed count on the test suite', () => {
expect(findSummaryDescription().text()).not.toContain(
'failed more than once in the last 14 days',
);
});
it('renders the recent failures count on the test case', () => { it('renders the recent failures count on the test case', () => {
expect(findIssueDescription().text()).not.toContain('in the last 14 days'); expect(findIssueDescription().text()).toContain(
}); 'Failed 8 times in master in the last 14 days',
);
}); });
}); });
......
...@@ -28,18 +28,5 @@ RSpec.describe Gitlab::Ci::Reports::TestFailureHistory, :aggregate_failures do ...@@ -28,18 +28,5 @@ RSpec.describe Gitlab::Ci::Reports::TestFailureHistory, :aggregate_failures do
expect(failed_rspec.recent_failures).to eq(count: 2, base_branch: 'master') expect(failed_rspec.recent_failures).to eq(count: 2, base_branch: 'master')
expect(failed_java.recent_failures).to eq(count: 1, base_branch: 'master') expect(failed_java.recent_failures).to eq(count: 1, base_branch: 'master')
end end
context 'when feature flag is disabled' do
before do
stub_feature_flags(test_failure_history: false)
end
it 'does not set recent failures' do
load_history
expect(failed_rspec.recent_failures).to be_nil
expect(failed_java.recent_failures).to be_nil
end
end
end end
end end
...@@ -22,19 +22,6 @@ RSpec.describe Ci::TestFailureHistoryService, :aggregate_failures do ...@@ -22,19 +22,6 @@ RSpec.describe Ci::TestFailureHistoryService, :aggregate_failures do
expect(Ci::TestCaseFailure.count).to eq(2) expect(Ci::TestCaseFailure.count).to eq(2)
end end
context 'when feature flag for test failure history is disabled' do
before do
stub_feature_flags(test_failure_history: false)
end
it 'does not persist data' do
execute_service
expect(Ci::TestCase.count).to eq(0)
expect(Ci::TestCaseFailure.count).to eq(0)
end
end
context 'when pipeline is not for the default branch' do context 'when pipeline is not for the default branch' do
before do before do
pipeline.update_column(:ref, 'new-feature') pipeline.update_column(:ref, 'new-feature')
...@@ -136,14 +123,6 @@ RSpec.describe Ci::TestFailureHistoryService, :aggregate_failures do ...@@ -136,14 +123,6 @@ RSpec.describe Ci::TestFailureHistoryService, :aggregate_failures do
it { is_expected.to eq(true) } it { is_expected.to eq(true) }
end end
context 'when feature flag is disabled' do
before do
stub_feature_flags(test_failure_history: false)
end
it { is_expected.to eq(false) }
end
context 'when pipeline is not equal to the project default branch' do context 'when pipeline is not equal to the project default branch' do
before do before do
pipeline.update_column(:ref, 'some-other-branch') pipeline.update_column(:ref, 'some-other-branch')
......
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