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-3.0.2/spec/ruby/core/struct/deconstruct_keys_spec.rb
require_relative '../../spec_helper'

ruby_version_is "2.7" do
  describe "Struct#deconstruct_keys" do
    it "returns a hash of attributes" do
      struct = Struct.new(:x, :y)
      s = struct.new(1, 2)

      s.deconstruct_keys([:x, :y]).should == {x: 1, y: 2}
    end

    it "requires one argument" do
      struct = Struct.new(:x)
      obj = struct.new(1)

      -> {
        obj.deconstruct_keys
      }.should raise_error(ArgumentError, /wrong number of arguments \(given 0, expected 1\)/)
    end

    it "returns only specified keys" do
      struct = Struct.new(:x, :y, :z)
      s = struct.new(1, 2, 3)

      s.deconstruct_keys([:x, :y]).should == {x: 1, y: 2}
      s.deconstruct_keys([:x]    ).should == {x: 1}
      s.deconstruct_keys([]      ).should == {}
    end

    it "accepts string attribute names" do
      struct = Struct.new(:x, :y)
      s = struct.new(1, 2)

      s.deconstruct_keys(['x', 'y']).should == {'x' => 1, 'y' => 2}
    end

    it "accepts argument position number as well but returns them as keys" do
      struct = Struct.new(:x, :y, :z)
      s = struct.new(10, 20, 30)

      s.deconstruct_keys([0, 1, 2]).should == {0 => 10, 1 => 20, 2 => 30}
      s.deconstruct_keys([0, 1]   ).should == {0 => 10, 1 => 20}
      s.deconstruct_keys([0]      ).should == {0 => 10}
    end

    it "ignores not existing attribute names" do
      struct = Struct.new(:x, :y)
      s = struct.new(1, 2)

      s.deconstruct_keys([:a, :b, :c]).should == {}
    end

    it "accepts nil argument and return all the attributes" do
      struct = Struct.new(:x, :y)
      obj = struct.new(1, 2)

      obj.deconstruct_keys(nil).should == {x: 1, y: 2}
    end

    it "raise TypeError if passed anything accept nil or array" do
      struct = Struct.new(:x, :y)
      s = struct.new(1, 2)

      -> { s.deconstruct_keys('x') }.should raise_error(TypeError, /expected Array or nil/)
      -> { s.deconstruct_keys(1)   }.should raise_error(TypeError, /expected Array or nil/)
      -> { s.deconstruct_keys(:x)  }.should raise_error(TypeError, /expected Array or nil/)
      -> { s.deconstruct_keys({})  }.should raise_error(TypeError, /expected Array or nil/)
    end
  end
end