Sha256: 15ff1d20a8f1faa11f38075af7e7ad4788d9a37b08788587db785bcb78f25d33

Contents?: true

Size: 1.7 KB

Versions: 95

Compression:

Stored size: 1.7 KB

Contents

# frozen_string_literal: true

require "re2/string"

class String
  include RE2::String
end

RSpec.describe RE2::String do
  describe "#re2_sub" do
    it "delegates to RE2.Replace to perform replacement" do
      expect("My name is Robert Paulson".re2_sub('Robert', 'Crobert')).to eq("My name is Crobert Paulson")
    end

    it "doesn't perform an in-place replacement" do
      string = "My name is Robert Paulson"

      expect(string.re2_sub('Robert', 'Crobert')).not_to equal(string)
    end
  end

  describe "#re2_gsub" do
    it "delegates to RE2.GlobalReplace to perform replacement" do
      expect("My name is Robert Paulson".re2_gsub('a', 'e')).to eq("My neme is Robert Peulson")
    end

    it "doesn't perform an in-place replacement" do
      string = "My name is Robert Paulson"

      expect(string.re2_gsub('a', 'e')).not_to equal(string)
    end
  end

  describe "#re2_match" do
    it "delegates to RE2::Regexp#match to perform matches", :aggregate_failures do
      md = "My name is Robert Paulson".re2_match('My name is (\S+) (\S+)')

      expect(md).to be_a(RE2::MatchData)
      expect(md[0]).to eq("My name is Robert Paulson")
      expect(md[1]).to eq("Robert")
      expect(md[2]).to eq("Paulson")
    end

    it "supports limiting the number of matches" do
      md = "My name is Robert Paulson".re2_match('My name is (\S+) (\S+)', 0)

      expect(md).to eq(true)
    end
  end

  describe "#re2_escape" do
    it "escapes the string for use in regular expressions" do
      expect("1.5-2.0?".re2_escape).to eq('1\.5\-2\.0\?')
    end
  end

  describe "#re2_quote" do
    it "escapes the string for use in regular expressions" do
      expect("1.5-2.0?".re2_quote).to eq('1\.5\-2\.0\?')
    end
  end
end

Version data entries

95 entries across 95 versions & 1 rubygems

Version Path
re2-2.15.0 spec/re2/string_spec.rb
re2-2.15.0-x86_64-linux-musl spec/re2/string_spec.rb
re2-2.15.0-x86_64-linux-gnu spec/re2/string_spec.rb
re2-2.15.0-x86_64-darwin spec/re2/string_spec.rb
re2-2.15.0-x86-mingw32 spec/re2/string_spec.rb
re2-2.15.0-x86-linux-musl spec/re2/string_spec.rb
re2-2.15.0-x86-linux-gnu spec/re2/string_spec.rb
re2-2.15.0-x64-mingw32 spec/re2/string_spec.rb
re2-2.15.0-x64-mingw-ucrt spec/re2/string_spec.rb
re2-2.15.0-arm64-darwin spec/re2/string_spec.rb
re2-2.15.0-arm-linux-musl spec/re2/string_spec.rb
re2-2.15.0-arm-linux-gnu spec/re2/string_spec.rb
re2-2.15.0-aarch64-linux-musl spec/re2/string_spec.rb
re2-2.15.0-aarch64-linux-gnu spec/re2/string_spec.rb
re2-2.15.0.rc1 spec/re2/string_spec.rb
re2-2.15.0.rc1-x86_64-linux-musl spec/re2/string_spec.rb
re2-2.15.0.rc1-x86_64-linux-gnu spec/re2/string_spec.rb
re2-2.15.0.rc1-x86_64-darwin spec/re2/string_spec.rb
re2-2.15.0.rc1-x86-linux-musl spec/re2/string_spec.rb
re2-2.15.0.rc1-x86-linux-gnu spec/re2/string_spec.rb