summaryrefslogtreecommitdiff
path: root/spec/ruby/core/enumerator/product/each_spec.rb
blob: cabeb9d93a2c1f972b83e3a1486092e765cc0b15 (plain)
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
require_relative '../../../spec_helper'
require_relative '../../enumerable/shared/enumeratorized'

ruby_version_is "3.2" do
  describe "Enumerator::Product#each" do
    it_behaves_like :enumeratorized_with_origin_size, :each, Enumerator::Product.new([1, 2], [:a, :b])

    it "yields each element of Cartesian product of enumerators" do
      enum = Enumerator::Product.new([1, 2], [:a, :b])
      acc = []
      enum.each { |e| acc << e }
      acc.should == [[1, :a], [1, :b], [2, :a], [2, :b]]
    end

    it "calls #each_entry method on enumerators" do
      object1 = Object.new
      def object1.each_entry
        yield 1
        yield 2
      end

      object2 = Object.new
      def object2.each_entry
        yield :a
        yield :b
      end

      enum = Enumerator::Product.new(object1, object2)
      acc = []
      enum.each { |e| acc << e }
      acc.should == [[1, :a], [1, :b], [2, :a], [2, :b]]
    end

    it "raises a NoMethodError if the object doesn't respond to #each_entry" do
      -> {
        Enumerator::Product.new(Object.new).each {}
      }.should raise_error(NoMethodError, /undefined method [`']each_entry' for/)
    end

    it "returns enumerator if not given a block" do
      enum = Enumerator::Product.new([1, 2], [:a, :b])
      enum.each.should.kind_of?(Enumerator)

      enum = Enumerator::Product.new([1, 2], [:a, :b])
      enum.each.to_a.should == [[1, :a], [1, :b], [2, :a], [2, :b]]
    end

    it "returns self if given a block" do
      enum = Enumerator::Product.new([1, 2], [:a, :b])
      enum.each {}.should.equal?(enum)
    end

    it "doesn't accept arguments" do
      Enumerator::Product.instance_method(:each).arity.should == 0
    end

    it "yields each element to a block that takes multiple arguments" do
      enum = Enumerator::Product.new([1, 2], [:a, :b])

      acc = []
      enum.each { |x, y| acc << x }
      acc.should == [1, 1, 2, 2]

      acc = []
      enum.each { |x, y| acc << y }
      acc.should == [:a, :b, :a, :b]

      acc = []
      enum.each { |x, y, z| acc << z }
      acc.should == [nil, nil, nil, nil]
    end
  end
end