summaryrefslogtreecommitdiff
path: root/code/environments/production/modules/stdlib/spec/acceptance/zip_spec.rb
blob: 57adfa7a8d09fad8982b462d90dd7c7a03fb5834 (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
require 'spec_helper_acceptance'

describe 'zip function' do
  describe 'success' do
    pp1 = <<-DOC
      $one = [1,2,3,4]
      $two = [5,6,7,8]
      $output = zip($one,$two)
      notice(inline_template('<%= @output.inspect %>'))
    DOC
    it 'zips two arrays of numbers together' do
      expect(apply_manifest(pp1, :catch_failures => true).stdout).to match(%r{\[\[1, 5\], \[2, 6\], \[3, 7\], \[4, 8\]\]})
    end

    pp2 = <<-DOC
      $one = [1,2,"three",4]
      $two = [true,true,false,false]
      $output = zip($one,$two)
      notice(inline_template('<%= @output.inspect %>'))
    DOC
    it 'zips two arrays of numbers & bools together' do
      expect(apply_manifest(pp2, :catch_failures => true).stdout).to match(%r{\[\[1, true\], \[2, true\], \["three", false\], \[4, false\]\]})
    end

    # XXX This only tests the argument `true`, even though the following are valid:
    # 1 t y true yes
    # 0 f n false no
    # undef undefined
    pp3 = <<-DOC
      $one = [1,2,3,4]
      $two = [5,6,7,8]
      $output = zip($one,$two,true)
      notice(inline_template('<%= @output.inspect %>'))
    DOC
    it 'zips two arrays of numbers together and flattens them' do
      expect(apply_manifest(pp3, :catch_failures => true).stdout).to match(%r{\[1, 5, 2, 6, 3, 7, 4, 8\]})
    end

    # XXX Is this expected behavior?
    pp4 = <<-DOC
      $one = [1,2]
      $two = [5,6,7,8]
      $output = zip($one,$two)
      notice(inline_template('<%= @output.inspect %>'))
    DOC
    it 'handles unmatched length' do
      expect(apply_manifest(pp4, :catch_failures => true).stdout).to match(%r{\[\[1, 5\], \[2, 6\]\]})
    end
  end

  describe 'failure' do
    pp5 = <<-DOC
      $one = [1,2]
      $output = zip($one)
      notice(inline_template('<%= @output.inspect %>'))
    DOC
    it 'handles improper number of arguments' do
      expect(apply_manifest(pp5, :expect_failures => true).stderr).to match(%r{Wrong number of arguments})
    end

    pp6 = <<-DOC
      $one = "a string"
      $two = [5,6,7,8]
      $output = zip($one,$two)
      notice(inline_template('<%= @output.inspect %>'))
    DOC
    it 'handles improper argument types' do
      expect(apply_manifest(pp6, :expect_failures => true).stderr).to match(%r{Requires array})
    end
  end
end