This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/spec/lib/validators/regex_setting_validator_spec.rb
2023-01-09 11:49:28 +00:00

25 lines
665 B
Ruby

# frozen_string_literal: true
RSpec.describe RegexSettingValidator do
describe "#valid_value?" do
subject(:validator) { described_class.new }
it "returns true for blank values" do
expect(validator.valid_value?("")).to eq(true)
expect(validator.valid_value?(nil)).to eq(true)
end
it "return false for invalid regex" do
expect(validator.valid_value?("(()")).to eq(false)
end
it "returns false for regex with dangerous matches" do
expect(validator.valid_value?("(.)*")).to eq(false)
end
it "returns true for safe regex" do
expect(validator.valid_value?('\d{3}-\d{4}')).to eq(true)
end
end
end