Skip to content
代码片段 群组 项目
未验证 提交 b3dbca9c 编辑于 作者: Terri Chu's avatar Terri Chu 提交者: GitLab
浏览文件

Merge branch 'tchu-fix-flaky-zoekt-scheduling-service-spec' into 'master'

Fix flaky Search::Zoekt::SchedulingService spec

See merge request https://gitlab.com/gitlab-org/gitlab/-/merge_requests/153311



Merged-by: default avatarTerri Chu <tchu@gitlab.com>
Approved-by: default avatarSiddharth Dungarwal <sdungarwal@gitlab.com>
Approved-by: default avatarMadelein van Niekerk <mvanniekerk@gitlab.com>
No related branches found
No related tags found
无相关合并请求
...@@ -179,9 +179,9 @@ ...@@ -179,9 +179,9 @@
group.update!(experiment_features_enabled: true) group.update!(experiment_features_enabled: true)
end end
context 'when enabled_namespace record created before the DOT_COM_ROLLOUT_ENABLE_SEARCH_AFTER' do context 'when enabled_namespace record created before the DOT_COM_ROLLOUT_CUTOFF_DATE' do
it 'enables search for the enabled namespaces' do it 'enables search for the enabled namespaces' do
rollout_cutoff = described_class::DOT_COM_ROLLOUT_ENABLE_SEARCH_AFTER.ago - 1.week rollout_cutoff = described_class::DOT_COM_ROLLOUT_CUTOFF_DATE - 1.week
ns = create(:zoekt_enabled_namespace, namespace: group, search: false, ns = create(:zoekt_enabled_namespace, namespace: group, search: false,
created_at: rollout_cutoff, updated_at: rollout_cutoff) created_at: rollout_cutoff, updated_at: rollout_cutoff)
create(:zoekt_index, :ready, zoekt_enabled_namespace: ns) create(:zoekt_index, :ready, zoekt_enabled_namespace: ns)
...@@ -190,11 +190,13 @@ ...@@ -190,11 +190,13 @@
end end
end end
context 'when enabled_namespace record created after the DOT_COM_ROLLOUT_ENABLE_SEARCH_AFTER' do context 'when enabled_namespace record created after the DOT_COM_ROLLOUT_CUTOFF_DATE' do
it 'enables search for the enabled namespaces' do it 'enables search for the enabled namespaces' do
travel_to(described_class::DOT_COM_ROLLOUT_ENABLE_SEARCH_AFTER.ago + 1.week) do travel_to(described_class::DOT_COM_ROLLOUT_CUTOFF_DATE + 1.week) do
rollout_cutoff = described_class::DOT_COM_ROLLOUT_ENABLE_SEARCH_AFTER.ago - 1.hour created_date = described_class::DOT_COM_ROLLOUT_CUTOFF_DATE + 3.days
ns = create(:zoekt_enabled_namespace, namespace: group, search: false, updated_at: rollout_cutoff)
ns = create(:zoekt_enabled_namespace, namespace: group, search: false,
created_at: created_date, updated_at: created_date)
create(:zoekt_index, :ready, zoekt_enabled_namespace: ns) create(:zoekt_index, :ready, zoekt_enabled_namespace: ns)
expect { execute_task }.to change { ns.reload.search } expect { execute_task }.to change { ns.reload.search }
...@@ -221,8 +223,11 @@ ...@@ -221,8 +223,11 @@
context 'when enabled_namespace record created after the DOT_COM_ROLLOUT_CUTOFF_DATE' do context 'when enabled_namespace record created after the DOT_COM_ROLLOUT_CUTOFF_DATE' do
it 'skips the enabled namespaces' do it 'skips the enabled namespaces' do
travel_to(described_class::DOT_COM_ROLLOUT_CUTOFF_DATE + 3.days) do travel_to(described_class::DOT_COM_ROLLOUT_CUTOFF_DATE + 1.week) do
ns = create(:zoekt_enabled_namespace, namespace: group, search: false) created_date = described_class::DOT_COM_ROLLOUT_CUTOFF_DATE + 3.days
ns = create(:zoekt_enabled_namespace, namespace: group, search: false,
created_at: created_date, updated_at: created_date)
create(:zoekt_index, :ready, zoekt_enabled_namespace: ns) create(:zoekt_index, :ready, zoekt_enabled_namespace: ns)
expect { execute_task }.not_to change { ns.reload.search } expect { execute_task }.not_to change { ns.reload.search }
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册