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/validators/html_safety_validator_spec.rb')
-rw-r--r--spec/validators/html_safety_validator_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/validators/html_safety_validator_spec.rb b/spec/validators/html_safety_validator_spec.rb
new file mode 100644
index 00000000000..4d9425235e3
--- /dev/null
+++ b/spec/validators/html_safety_validator_spec.rb
@@ -0,0 +1,24 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe HtmlSafetyValidator do
+ let(:validator) { described_class.new(attributes: [:name]) }
+ let(:group) { build(:group) }
+
+ def validate(value)
+ validator.validate_each(group, :name, value)
+ end
+
+ it 'adds an error when a script is included in the name' do
+ validate('My group <script>evil_script</script>')
+
+ expect(group.errors[:name]).to eq([HtmlSafetyValidator.error_message])
+ end
+
+ it 'does not add an error when an ampersand is included in the name' do
+ validate('Group with 1 & 2')
+
+ expect(group.errors).to be_empty
+ end
+end