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:
Diffstat (limited to 'spec/migrations/cleanup_environments_external_url_spec.rb')
-rw-r--r--spec/migrations/cleanup_environments_external_url_spec.rb30
1 files changed, 0 insertions, 30 deletions
diff --git a/spec/migrations/cleanup_environments_external_url_spec.rb b/spec/migrations/cleanup_environments_external_url_spec.rb
deleted file mode 100644
index 54fcb8c62cd..00000000000
--- a/spec/migrations/cleanup_environments_external_url_spec.rb
+++ /dev/null
@@ -1,30 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-require Rails.root.join('db', 'migrate', '20181108091549_cleanup_environments_external_url.rb')
-
-describe CleanupEnvironmentsExternalUrl do
- let(:environments) { table(:environments) }
- let(:invalid_entries) { environments.where(environments.arel_table[:external_url].matches('javascript://%')) }
- let(:namespaces) { table(:namespaces) }
- let(:projects) { table(:projects) }
-
- before do
- namespace = namespaces.create(name: 'foo', path: 'foo')
- project = projects.create!(namespace_id: namespace.id)
-
- environments.create!(id: 1, project_id: project.id, name: 'poisoned', slug: 'poisoned', external_url: 'javascript://alert("1")')
- end
-
- it 'clears every environment with a javascript external_url' do
- expect do
- subject.up
- end.to change { invalid_entries.count }.from(1).to(0)
- end
-
- it 'do not removes environments' do
- expect do
- subject.up
- end.not_to change { environments.count }
- end
-end