1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
# rubocop:todo all
# Copyright (C) 2009-2020 MongoDB Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require "spec_helper"
describe Regexp do
describe "#as_json" do
let(:object) do
/\W+/i
end
it "returns the binary data plus type" do
expect(object.as_json).to eq(
{ "$regex" => "\\W+", "$options" => "im" }
)
end
it_behaves_like "a JSON serializable object"
end
describe "#to_bson/#from_bson" do
let(:type) { 11.chr }
let(:obj) { /test/ }
let(:io) do
BSON::ByteBuffer.new(bson)
end
let(:regex) do
described_class.from_bson(io)
end
let(:result) do
regex.compile
end
it_behaves_like "a bson element"
context "when calling normal regexp methods on a Regexp::Raw" do
let :obj do
/\d+/
end
let(:bson) { "#{obj.source}#{BSON::NULL_BYTE}m#{BSON::NULL_BYTE}" }
it_behaves_like "a serializable bson element"
it "runs the method on the Regexp object" do
expect(regex.match('6')).not_to be_nil
end
end
context "when the regexp has no options" do
let(:obj) { /\d+/ }
# Ruby always has a BSON regex's equivalent of multiline on
# http://www.regular-expressions.info/modifiers.html
let(:bson) { "#{obj.source}#{BSON::NULL_BYTE}m#{BSON::NULL_BYTE}" }
it_behaves_like "a serializable bson element"
it "deserializes from bson" do
expect(result).to eq(obj)
end
end
context "when the regexp has options" do
context "when ignoring case" do
let(:obj) { /\W+/i }
let(:bson) { "#{obj.source}#{BSON::NULL_BYTE}im#{BSON::NULL_BYTE}" }
it_behaves_like "a serializable bson element"
it "deserializes from bson" do
expect(result).to eq(obj)
end
end
context "when matching multiline" do
let(:obj) { /\W+/m }
let(:bson) { "#{obj.source}#{BSON::NULL_BYTE}ms#{BSON::NULL_BYTE}" }
it_behaves_like "a serializable bson element"
it "deserializes from bson" do
expect(result).to eq(obj)
end
end
context "when matching extended" do
let(:obj) { /\W+/x }
let(:bson) { "#{obj.source}#{BSON::NULL_BYTE}mx#{BSON::NULL_BYTE}" }
it_behaves_like "a serializable bson element"
it "deserializes from bson" do
expect(result).to eq(obj)
end
end
context "when all options are present" do
let(:obj) { /\W+/xim }
let(:bson) { "#{obj.source}#{BSON::NULL_BYTE}imsx#{BSON::NULL_BYTE}" }
it_behaves_like "a serializable bson element"
it "deserializes from bson" do
expect(result).to eq(obj)
end
end
context "when the regexp options contains a null byte" do
let(:regexp) do
Regexp::Raw.new("pattern", "options\x00")
end
it "raises an error" do
expect do
regexp
end.to raise_error(BSON::Error::InvalidRegexpPattern, /Regexp options cannot contain a null byte/)
end
end
context "when the regexp options is an integer" do
let(:regexp) do
Regexp::Raw.new("pattern", 1)
end
it "raises an error" do
expect do
regexp
end.to raise_error(ArgumentError, /Regexp options must be a String or Symbol/)
end
end
context "when the regexp options is an invalid type" do
let(:regexp) do
Regexp::Raw.new("pattern", [2])
end
it "raises an error" do
expect do
regexp
end.to raise_error(ArgumentError, /Regexp options must be a String or Symbol/)
end
end
end
context "when the pattern contains a null byte" do
let(:regexp) do
Regexp::Raw.new("pattern\x00", "options")
end
it "raises an error" do
expect do
regexp
end.to raise_error(BSON::Error::InvalidRegexpPattern, /Regexp pattern cannot contain a null byte/)
end
end
end
end
|