|
| 1 | +require 'ruby3_backward_compatibility/compatibility/regexp' |
| 2 | + |
| 3 | +module Ruby3BackwardCompatibility |
| 4 | + describe Regexp do |
| 5 | + describe '.new' do |
| 6 | + it 'interprets a third argument "n" as Regexp::NOENCODING' do |
| 7 | + regexp = Regexp.new('test', Regexp::EXTENDED, 'n') |
| 8 | + expect(regexp).to eq(/test/xn) |
| 9 | + expect(regexp.options).to eq(Regexp::EXTENDED | Regexp::NOENCODING) |
| 10 | + end |
| 11 | + |
| 12 | + it 'interprets a third argument "N" as Regexp::NOENCODING' do |
| 13 | + regexp = Regexp.new('test', Regexp::EXTENDED, 'N') |
| 14 | + expect(regexp).to eq(/test/xn) |
| 15 | + expect(regexp.options).to eq(Regexp::EXTENDED | Regexp::NOENCODING) |
| 16 | + end |
| 17 | + |
| 18 | + it 'ignores a other third arguments' do |
| 19 | + regexp = Regexp.new('test', Regexp::EXTENDED, 'foo') |
| 20 | + expect(regexp).to eq(/test/xn) |
| 21 | + expect(regexp.options).to eq(Regexp::EXTENDED) |
| 22 | + end |
| 23 | + |
| 24 | + it 'treats a string second argument as Regexp::IGNORECASE if a third argument is present' do |
| 25 | + regexp = Regexp.new('test', 'foo', 'N') |
| 26 | + expect(regexp).to eq(/test/in) |
| 27 | + expect(regexp.options).to eq(Regexp::IGNORECASE | Regexp::NOENCODING) |
| 28 | + end |
| 29 | + |
| 30 | + it 'treats a truish second argument as Regexp::IGNORECASE if a third argument is present' do |
| 31 | + regexp = Regexp.new('test', true, 'N') |
| 32 | + expect(regexp).to eq(/test/in) |
| 33 | + expect(regexp.options).to eq(Regexp::IGNORECASE | Regexp::NOENCODING) |
| 34 | + end |
| 35 | + |
| 36 | + it 'treats a falsish second argument as 0 if a third argument is present' do |
| 37 | + regexp = Regexp.new('test', false, 'N') |
| 38 | + expect(regexp).to eq(/test/n) |
| 39 | + expect(regexp.options).to eq(Regexp::NOENCODING) |
| 40 | + end |
| 41 | + |
| 42 | + it 'can still build a Regexp from string and option' do |
| 43 | + regexp = Regexp.new('test', Regexp::IGNORECASE) |
| 44 | + expect(regexp).to eq(/test/i) |
| 45 | + expect(regexp.options).to eq(Regexp::IGNORECASE) |
| 46 | + end |
| 47 | + |
| 48 | + it 'can still build a Regexp from another Regexp' do |
| 49 | + regexp = Regexp.new(/test/i) |
| 50 | + expect(regexp).to eq(/test/i) |
| 51 | + expect(regexp.options).to eq(Regexp::IGNORECASE) |
| 52 | + end |
| 53 | + |
| 54 | + it 'can still build a Regexp with a boolean flag' do |
| 55 | + regexp = Regexp.new('test', true) |
| 56 | + expect(regexp).to eq(/test/i) |
| 57 | + expect(regexp.options).to eq(Regexp::IGNORECASE) |
| 58 | + end |
| 59 | + |
| 60 | + if RUBY_VERSION >= '3.2' |
| 61 | + it 'can merge a third argument "n" with string flags' do |
| 62 | + regexp = Regexp.new('test', 'mi', 'n') |
| 63 | + expect(regexp.options).to eq(Regexp::IGNORECASE | Regexp::MULTILINE | Regexp::NOENCODING) |
| 64 | + |
| 65 | + regexp = Regexp.new('test', 'ix', 'n') |
| 66 | + expect(regexp.options).to eq(Regexp::IGNORECASE | Regexp::EXTENDED | Regexp::NOENCODING) |
| 67 | + end |
| 68 | + end |
| 69 | + |
| 70 | + if RUBY_VERSION >= '3.3' |
| 71 | + it 'treats options of the form "mix" as flags' do |
| 72 | + regexp = Regexp.new('test', 'mix') |
| 73 | + expect(regexp).to eq(/test/mix) |
| 74 | + end |
| 75 | + |
| 76 | + it 'treats options with different chars as trueish' do |
| 77 | + regexp = Regexp.new('test', 'n') |
| 78 | + expect(regexp).to eq(/test/i) |
| 79 | + end |
| 80 | + |
| 81 | + it 'sets timeout to nil by default' do |
| 82 | + regexp = Regexp.new('test') |
| 83 | + expect(regexp.timeout).to eq(nil) |
| 84 | + end |
| 85 | + |
| 86 | + it 'can still build a Regexp with a timeout' do |
| 87 | + regexp = Regexp.new('test', timeout: 1) |
| 88 | + expect(regexp).to eq(/test/) |
| 89 | + expect(regexp.timeout).to eq(1) |
| 90 | + end |
| 91 | + end |
| 92 | + end |
| 93 | + end |
| 94 | +end |
0 commit comments