File: 13slurpy.t

package info (click to toggle)
libkavorka-perl 0.039-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 696 kB
  • sloc: perl: 2,850; makefile: 6; sh: 6
file content (161 lines) | stat: -rw-r--r-- 3,891 bytes parent folder | download
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
=pod

=encoding utf-8

=head1 PURPOSE

Test slurpy parameters.

=head1 AUTHOR

Toby Inkster E<lt>tobyink@cpan.orgE<gt>.

=head1 COPYRIGHT AND LICENCE

This software is copyright (c) 2013-2014, 2017 by Toby Inkster.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

use strict;
use warnings;
use Test::More;
use Test::Fatal;

{
	package Example;
	use Kavorka;
	
	fun foo ($x, $y?, @z) {
		return { '@_' => \@_, '$x' => $x, '$y' => $y, '@z' => \@z, };
	}
	
	fun bar ($, %z) {
		return { '@_' => \@_, '%_' => \%_, '%z' => \%z, };
	}
	
	fun baz (:$x, :$y, %z) {
		return { '@_' => \@_, '%_' => \%_, '$x' => $x, '$y' => $y, '%z' => \%z };
	}
	
	fun quux ($x, %) {
		return { '@_' => \@_, '%_' => \%_, '$x' => $x, };
	}
}

is_deeply(
	Example::foo(1..5),
	{ '@_' => [1..5], '$x' => 1, '$y' => 2, '@z' => [3..5] },
	'function with leading positional parameters and array slurpy'
);

is_deeply(
	Example::foo(1),
	{ '@_' => [1], '$x' => 1, '$y' => undef, '@z' => [] },
	'function with leading positional parameters and array slurpy - empty slurpy'
);

is_deeply(
	Example::foo(1,2),
	{ '@_' => [1,2], '$x' => 1, '$y' => 2, '@z' => [] },
	'function with leading positional parameters and array slurpy - empty slurpy'
);

is_deeply(
	Example::foo(1..3),
	{ '@_' => [1..3], '$x' => 1, '$y' => 2, '@z' => [3] },
	'function with leading positional parameters and array slurpy - only one item in slurpy'
);

is_deeply(
	Example::bar(0, 1..4),
	{ '@_' => [0..4], '%_' => +{1..4}, '%z' => +{1..4} },
	'function with leading positional parameter and hash slurpy'
);

like(
	exception { Example::bar(0, 1..5) },
	qr{^Odd number of elements},
	'exception passing odd number of items to slurpy hash',
);

is_deeply(
	Example::baz(x => 42, a => 1, b => 2, c => 3),
	{ '@_' => [qw/ x 42 a 1 b 2 c 3 /], '%_' => +{qw/ x 42 a 1 b 2 c 3 /}, '$x' => 42, '$y' => undef, '%z' => +{qw/ a 1 b 2 c 3 /} },
	'function with named parameters and slurpy hash'
);

is_deeply(
	Example::baz({x => 42, a => 1, b => 2, c => 3 }),
	{ '@_' => [{qw/ x 42 a 1 b 2 c 3 /}], '%_' => +{qw/ x 42 a 1 b 2 c 3 /}, '$x' => 42, '$y' => undef, '%z' => +{qw/ a 1 b 2 c 3 /} },
	'function with named parameters and slurpy hash (invoked with hashref)'
);

is_deeply(
	Example::quux(42, a => 1, b => 2, c => 3),
	{ '@_' => [qw/ 42 a 1 b 2 c 3 /], '%_' => +{qw/ a 1 b 2 c 3 /}, '$x' => 42, },
	'anon slurpy hash'
);

{
	package Example2;
	use Kavorka;
	
	fun foo ($x, $y?, slurpy ArrayRef $z) {
		return { '@_' => \@_, '$x' => $x, '$y' => $y, '$z' => $z, };
	}
	
	fun bar ($, slurpy HashRef $z) {
		return { '@_' => \@_, '%_' => \%_, '$z' => $z, };
	}
	
	fun baz (:$x, :$y, slurpy HashRef $z) {
		return { '@_' => \@_, '%_' => \%_, '$x' => $x, '$y' => $y, '$z' => $z };
	}
}

is_deeply(
	Example2::foo(1..5),
	{ '@_' => [1..5], '$x' => 1, '$y' => 2, '$z' => [3..5] },
	'function with leading positional parameters and arrayref slurpy'
);

is_deeply(
	Example2::bar(0, 1..4),
	{ '@_' => [0..4], '%_' => +{1..4}, '$z' => +{1..4} },
	'function with leading positional parameter and hashref slurpy'
);

like(
	exception { Example2::bar(0, 1..5) },
	qr{^Odd number of elements},
	'exception passing odd number of items to slurpy hashref',
);

is_deeply(
	Example2::baz(x => 42, a => 1, b => 2, c => 3),
	{ '@_' => [qw/ x 42 a 1 b 2 c 3 /], '%_' => +{qw/ x 42 a 1 b 2 c 3 /}, '$x' => 42, '$y' => undef, '$z' => +{qw/ a 1 b 2 c 3 /} },
	'function with named parameters and slurpy hashref'
);


{
	package Example3;
	use Kavorka;
	fun foo1 (:$x, :$y, %z) {
		$_{goop}++;
	}
	fun foo2 (:$x, :$y, slurpy HashRef $z) {
		$_{goop}++;
	}
}

my $goop = 40;
Example3::foo1(x => 1, y => 2, goop => $goop);
is($goop, 41, '%_ is an alias with slurpy hash');
Example3::foo2(x => 1, y => 2, goop => $goop);
is($goop, 42, '%_ is an alias with slurpy hashref');

done_testing;