summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/repeated_permutation_spec.rb
blob: 9038d49560f3624def95c47c420f666017f38ec2 (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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
require File.expand_path('../../../spec_helper', __FILE__)


describe "Array#repeated_permutation" do

  before :each do
    @numbers = [10, 11, 12]
    @permutations = [[10, 10], [10, 11], [10, 12], [11, 10], [11, 11], [11, 12], [12, 10], [12, 11], [12, 12]]
  end

  it "returns an Enumerator of all repeated permutations of given length when called without a block" do
    enum = @numbers.repeated_permutation(2)
    enum.should be_an_instance_of(Enumerator)
    enum.to_a.sort.should == @permutations
  end

  it "yields all repeated_permutations to the block then returns self when called with block but no arguments" do
    yielded = []
    @numbers.repeated_permutation(2) {|n| yielded << n}.should equal(@numbers)
    yielded.sort.should == @permutations
  end

  it "yields the empty repeated_permutation ([[]]) when the given length is 0" do
    @numbers.repeated_permutation(0).to_a.should == [[]]
    [].repeated_permutation(0).to_a.should == [[]]
  end

  it "does not yield when called on an empty Array with a nonzero argument" do
    [].repeated_permutation(10).to_a.should == []
  end

  it "handles duplicate elements correctly" do
    @numbers[-1] = 10
    @numbers.repeated_permutation(2).sort.should ==
      [[10, 10], [10, 10], [10, 10], [10, 10], [10, 11], [10, 11], [11, 10], [11, 10], [11, 11]]
  end

  it "truncates Float arguments" do
    @numbers.repeated_permutation(3.7).to_a.sort.should ==
      @numbers.repeated_permutation(3).to_a.sort
  end

  it "returns an Enumerator which works as expected even when the array was modified" do
    @numbers.shift
    enum = @numbers.repeated_permutation(2)
    @numbers.unshift 10
    enum.to_a.sort.should == @permutations
  end

  it "allows permutations larger than the number of elements" do
    [1,2].repeated_permutation(3).sort.should ==
      [[1, 1, 1], [1, 1, 2], [1, 2, 1],
       [1, 2, 2], [2, 1, 1], [2, 1, 2],
       [2, 2, 1], [2, 2, 2]]
  end

  it "generates from a defensive copy, ignoring mutations" do
    accum = []
    ary = [1,2]
    ary.repeated_permutation(3) do |x|
      accum << x
      ary[0] = 5
    end

    accum.sort.should ==
      [[1, 1, 1], [1, 1, 2], [1, 2, 1],
       [1, 2, 2], [2, 1, 1], [2, 1, 2],
       [2, 2, 1], [2, 2, 2]]
  end

  describe "when no block is given" do
    describe "returned Enumerator" do
      describe "size" do
        it "returns 0 when combination_size is < 0" do
          @numbers.repeated_permutation(-1).size.should == 0
          [].repeated_permutation(-1).size.should == 0
        end

        it "returns array size ** combination_size" do
          @numbers.repeated_permutation(4).size.should == 81
          @numbers.repeated_permutation(3).size.should == 27
          @numbers.repeated_permutation(2).size.should == 9
          @numbers.repeated_permutation(1).size.should == 3
          @numbers.repeated_permutation(0).size.should == 1
          [].repeated_permutation(4).size.should == 0
          [].repeated_permutation(3).size.should == 0
          [].repeated_permutation(2).size.should == 0
          [].repeated_permutation(1).size.should == 0
          [].repeated_permutation(0).size.should == 1
        end
      end
    end
  end
end