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
Jarek Radosz 45cc16098d
DEV: Move spec/components to spec/lib (#15987)
Lib specs were inexplicably split into two directories (`lib` and `components`)

This moves them all into `lib`.
2022-02-18 19:41:54 +01:00

27 lines
683 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
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