summaryrefslogtreecommitdiff
path: root/spec/migrations
diff options
context:
space:
mode:
authorMayra Cabrera <mcabrera@gitlab.com>2019-02-07 11:11:17 -0600
committerMayra Cabrera <mcabrera@gitlab.com>2019-02-07 11:11:22 -0600
commitb3364566c403b1e7027b1e19d619f5b2f614fcf2 (patch)
tree4a40a71adf280c84916af82efefa30110268195c /spec/migrations
parente0ef2376874ef165a3ca4405cf9cfac241302d3f (diff)
downloadgitlab-ce-b3364566c403b1e7027b1e19d619f5b2f614fcf2.tar.gz
Fixes technical debt issues for cluster domain57397-fixes-technical-debt-for-cluster-domain
- Avoid using direct code on spec migration - Removes milestone and point to issue, to avoid making fake promises Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/57397
Diffstat (limited to 'spec/migrations')
-rw-r--r--spec/migrations/migrate_auto_dev_ops_domain_to_cluster_domain_spec.rb16
1 files changed, 12 insertions, 4 deletions
diff --git a/spec/migrations/migrate_auto_dev_ops_domain_to_cluster_domain_spec.rb b/spec/migrations/migrate_auto_dev_ops_domain_to_cluster_domain_spec.rb
index 2ffc0e65fee..b1ff3cfd355 100644
--- a/spec/migrations/migrate_auto_dev_ops_domain_to_cluster_domain_spec.rb
+++ b/spec/migrations/migrate_auto_dev_ops_domain_to_cluster_domain_spec.rb
@@ -55,8 +55,8 @@ describe MigrateAutoDevOpsDomainToClusterDomain, :migration do
expect(clusters_with_domain.count).to eq(20)
project_auto_devops_with_domain.each do |project_auto_devops|
- cluster_project = Clusters::Project.find_by(project_id: project_auto_devops.project_id)
- cluster = Clusters::Cluster.find(cluster_project.cluster_id)
+ cluster_project = find_cluster_project(project_auto_devops.project_id)
+ cluster = find_cluster(cluster_project.cluster_id)
expect(cluster.domain).to be_present
end
@@ -64,8 +64,8 @@ describe MigrateAutoDevOpsDomainToClusterDomain, :migration do
expect(clusters_without_domain.count).to eq(25)
project_auto_devops_without_domain.each do |project_auto_devops|
- cluster_project = Clusters::Project.find_by(project_id: project_auto_devops.project_id)
- cluster = Clusters::Cluster.find(cluster_project.cluster_id)
+ cluster_project = find_cluster_project(project_auto_devops.project_id)
+ cluster = find_cluster(cluster_project.cluster_id)
expect(cluster.domain).not_to be_present
end
@@ -88,6 +88,14 @@ describe MigrateAutoDevOpsDomainToClusterDomain, :migration do
end
end
+ def find_cluster_project(project_id)
+ cluster_projects_table.where(project_id: project_id).first
+ end
+
+ def find_cluster(cluster_id)
+ clusters_table.where(id: cluster_id).first
+ end
+
def project_auto_devops_with_domain
project_auto_devops_table.where.not("domain IS NULL OR domain = ''")
end