File: multisig-custom-message.t

package info (click to toggle)
libtype-tiny-perl 2.002001-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,948 kB
  • sloc: perl: 14,610; makefile: 2; sh: 1
file content (124 lines) | stat: -rw-r--r-- 2,422 bytes parent folder | download | duplicates (2)
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
=pod

=encoding utf-8

=head1 PURPOSE

Make sure that custom C<multisig()> messages work.

=head1 AUTHOR

Benct Philip Jonsson E<lt>bpjonsson@gmail.comE<gt>.

=head1 COPYRIGHT AND LICENCE

This software is copyright (c) 2018-2023 by Benct Philip Jonsson.

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;

use Type::Params qw( multisig );
use Types::Standard qw( Optional Str Int Bool Dict slurpy );


sub _maybe_slurpy {
	my @sig = @_;
	$sig[-1] = slurpy $sig[-1];
	return ( [@_], \@sig );
}

my $foo_args;
sub foo {
	$foo_args ||= multisig(
		{
			description => "parameter validation for foo()",
			message => 'USAGE: foo($string [, \%options|%options])',
		},
		_maybe_slurpy( Str, Dict[ bool => Optional[Bool], num => Optional[Int] ] ),
	);
	return $foo_args->(@_);
}

my $bar_args;
sub bar {
	$bar_args ||= multisig(
		{
			description => "parameter validation for bar()",
			message => 'USAGE: bar()',
		},
		[],
	);
	return $bar_args->(@_);
}

my @tests = (
	[ 'bar(1)' => sub { bar( 1 ) }, 'USAGE: bar()', undef ],
	[ 'bar()'  => sub { bar() },    "",             0 ],
	[
		'foo($string, num => "x")' => sub { foo( "baz", num => "x" ) },
		'USAGE: foo($string [, \\%options|%options])', undef,
	],
	[
		'foo([], num => 42)' => sub { foo( [], num => 42 ) },
		'USAGE: foo($string [, \\%options|%options])', undef,
	],
	[
		'foo($string, quux => 0)' => sub { foo( "baz", quux => 0 ) },
		'USAGE: foo($string [, \\%options|%options])', undef,
	],
	[
		'foo($string, [])' => sub { foo( "baz", [] ) },
		'USAGE: foo($string [, \\%options|%options])', undef,
	],
	[
		'foo($string, bool => 1)',
		sub {
			is_deeply
				[ foo( "baz", bool => 1 ) ],
				[ "baz", { bool => 1 } ],
				'slurpy options';
		},
		"",
		1,
	],
	[
		'foo($string, { bool => 1 })',
		sub {
			is_deeply
				[ foo( "baz", { bool => 1 } ) ],
				[ "baz", { bool => 1 } ],
				'hashref options';
		},
		"",
		0
	],
	[
	'foo($string)',
		sub {
			is_deeply
				[ foo( "baz" ) ],
				[ "baz", {} ],
				'no options';
		},
		"",
		1
	],
);

for my $test ( @tests ) {
	no warnings 'uninitialized';
	my($name, $code, $expected, $sig) = @$test;
	like( exception { $code->() } || '', qr/\A\Q$expected/, $name );
	is ${^TYPE_PARAMS_MULTISIG}, $sig, "$name \${^TYPE_PARAMS_MULTISIG}";
}

done_testing;