HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-2.5.9/spec/ruby/core/hash/transform_values_spec.rb
require File.expand_path('../../../spec_helper', __FILE__)

ruby_version_is "2.4" do
  describe "Hash#transform_values" do
    before :each do
      @hash = { a: 1, b: 2, c: 3 }
    end

    it "returns new hash" do
      ret = @hash.transform_values(&:succ)
      ret.should_not equal(@hash)
      ret.should be_an_instance_of(Hash)
    end

    it "sets the result as transformed values with the given block" do
      @hash.transform_values(&:succ).should ==  { a: 2, b: 3, c: 4 }
    end

    it "makes both hashes to share keys" do
      key = [1, 2, 3]
      new_hash = { key => 1 }.transform_values(&:succ)
      new_hash[key].should == 2
      new_hash.keys[0].should equal(key)
    end

    context "when no block is given" do
      it "returns a sized Enumerator" do
        enumerator = @hash.transform_values
        enumerator.should be_an_instance_of(Enumerator)
        enumerator.size.should == @hash.size
        enumerator.each(&:succ).should == { a: 2, b: 3, c: 4 }
      end
    end

    it "returns a Hash instance, even on subclasses" do
      klass = Class.new(Hash)
      h = klass.new
      h[:foo] = 42
      r = h.transform_values{|v| 2 * v}
      r[:foo].should == 84
      r.class.should == Hash
    end
  end

  describe "Hash#transform_values!" do
    before :each do
      @hash = { a: 1, b: 2, c: 3 }
      @initial_pairs = @hash.dup
    end

    it "returns self" do
      @hash.transform_values!(&:succ).should equal(@hash)
    end

    it "updates self as transformed values with the given block" do
      @hash.transform_values!(&:succ)
      @hash.should == { a: 2, b: 3, c: 4 }
    end

    it "partially modifies the contents if we broke from the block" do
      @hash.transform_values! do |v|
        break if v == 3
        100 + v
      end
      @hash.should == { a: 101, b: 102, c: 3}
    end

    context "when no block is given" do
      it "returns a sized Enumerator" do
        enumerator = @hash.transform_values!
        enumerator.should be_an_instance_of(Enumerator)
        enumerator.size.should == @hash.size
        enumerator.each(&:succ)
        @hash.should == { a: 2, b: 3, c: 4 }
      end
    end

    describe "on frozen instance" do
      before :each do
        @hash.freeze
      end

      it "raises a RuntimeError on an empty hash" do
        ->{ {}.freeze.transform_values!(&:succ) }.should raise_error(RuntimeError)
      end

      it "keeps pairs and raises a RuntimeError" do
        ->{ @hash.transform_values!(&:succ) }.should raise_error(RuntimeError)
        @hash.should == @initial_pairs
      end

      context "when no block is given" do
        it "does not raise an exception" do
          @hash.transform_values!.should be_an_instance_of(Enumerator)
        end
      end
    end
  end
end