Sha256: f55c3581133062a949cdd672f4d920a38d73fd4fe939b17a87db7b6c9366a383

Contents?: true

Size: 1.65 KB

Versions: 4

Compression:

Stored size: 1.65 KB

Contents

require "spec_helper"

describe SafeYAML::Transform::ToSymbol do
  def with_symbol_deserialization_value(value)
    symbol_deserialization_flag = SafeYAML::OPTIONS[:deserialize_symbols]
    SafeYAML::OPTIONS[:deserialize_symbols] = value

    yield

  ensure
    SafeYAML::OPTIONS[:deserialize_symbols] = symbol_deserialization_flag
  end

  def with_symbol_deserialization(&block)
    with_symbol_deserialization_value(true, &block)
  end

  def without_symbol_deserialization(&block)
    with_symbol_deserialization_value(false, &block)
  end

  it "returns true when the value matches a valid Symbol" do
    with_symbol_deserialization { subject.transform?(":foo")[0].should be_true }
  end

  it "returns true when the value matches a valid String+Symbol" do
    with_symbol_deserialization { subject.transform?(':"foo"')[0].should be_true }
  end

  it "returns true when the value matches a valid String+Symbol with 's" do
    with_symbol_deserialization { subject.transform?(":'foo'")[0].should be_true }
  end

  it "returns true when the value has special characters and is wrapped in a String" do
    with_symbol_deserialization { subject.transform?(':"foo.bar"')[0].should be_true }
  end

  it "returns false when symbol deserialization is disabled" do
    without_symbol_deserialization { subject.transform?(":foo").should be_false }
  end

  it "returns false when the value does not match a valid Symbol" do
    with_symbol_deserialization { subject.transform?("foo").should be_false }
  end

  it "returns false when the symbol does not begin the line" do
    with_symbol_deserialization do
      subject.transform?("NOT A SYMBOL\n:foo").should be_false
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
whos_dated_who-0.1.0 vendor/bundle/gems/safe_yaml-1.0.3/spec/transform/to_symbol_spec.rb
whos_dated_who-0.0.1 vendor/bundle/gems/safe_yaml-1.0.3/spec/transform/to_symbol_spec.rb
safe_yaml-1.0.3 spec/transform/to_symbol_spec.rb
safe_yaml-1.0.2 spec/transform/to_symbol_spec.rb