/usr/share/perl5/Test/Data/Scalar.pm is in libtest-data-perl 1.241-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 | package Test::Data::Scalar;
use strict;
use Exporter qw(import);
our @EXPORT = qw(
blessed_ok defined_ok dualvar_ok greater_than length_ok
less_than maxlength_ok minlength_ok number_ok
readonly_ok ref_ok ref_type_ok strong_ok tainted_ok
untainted_ok weak_ok undef_ok number_between_ok
string_between_ok
);
our $VERSION = '1.241';
use Scalar::Util;
use Test::Builder;
my $Test = Test::Builder->new();
=encoding utf8
=head1 NAME
Test::Data::Scalar -- test functions for scalar variables
=head1 SYNOPSIS
use Test::Data qw(Scalar);
=head1 DESCRIPTION
This modules provides a collection of test utilities for
scalar variables. Load the module through Test::Data.
=head2 Functions
=over 4
=item blessed_ok( SCALAR )
Ok if the SCALAR is a blessed reference.
=cut
sub blessed_ok ($;$) {
my $ref = ref $_[0];
my $ok = Scalar::Util::blessed($_[0]);
my $name = $_[1] || 'Scalar is blessed';
$Test->diag("Expected a blessed value, but didn't get it\n\t" .
qq|Reference type is "$ref"\n| ) unless $ok;
$Test->ok( $ok, $name );
}
=item defined_ok( SCALAR )
Ok if the SCALAR is defined.
=cut
sub defined_ok ($;$) {
my $ok = defined $_[0];
my $name = $_[1] || 'Scalar is defined';
$Test->diag("Expected a defined value, got an undefined one\n", $name )
unless $ok;
$Test->ok( $ok, $name );
}
=item undef_ok( SCALAR )
Ok if the SCALAR is undefined.
=cut
sub undef_ok ($;$) {
my $name = $_[1] || 'Scalar is undefined';
if( @_ > 0 ) {
my $ok = not defined $_[0];
$Test->diag("Expected an undefined value, got a defined one\n")
unless $ok;
$Test->ok( $ok, $name );
}
else {
$Test->diag("Expected an undefined value, but got no arguments\n");
$Test->ok( 0, $name );
}
}
=item dualvar_ok( SCALAR )
Ok if the scalar is a dualvar.
How do I test this?
sub dualvar_ok ($;$)
{
my $ok = Scalar::Util::dualvar( $_[0] );
my $name = $_[1] || 'Scalar is a dualvar';
$Test->ok( $ok, $name );
$Test->diag("Expected a dualvar, didn't get it\n")
unless $ok;
}
=cut
=item greater_than( SCALAR, BOUND )
Ok if the SCALAR is numerically greater than BOUND.
=cut
sub greater_than ($$;$) {
my $value = shift;
my $bound = shift;
my $name = shift || 'Scalar is greater than bound';
my $ok = $value > $bound;
$Test->diag("Number is less than the bound.\n\t" .
"Expected a number greater than [$bound]\n\t" .
"Got [$value]\n") unless $ok;
$Test->ok( $ok, $name );
}
=item length_ok( SCALAR, LENGTH )
Ok if the length of SCALAR is LENGTH.
=cut
sub length_ok ($$;$) {
my $string = shift;
my $length = shift;
my $name = shift || 'Scalar has right length';
my $actual = length $string;
my $ok = $length == $actual;
$Test->diag("Length of value not within bounds\n\t" .
"Expected length=[$length]\n\t" .
"Got [$actual]\n") unless $ok;
$Test->ok( $ok, $name );
}
=item less_than( SCALAR, BOUND )
Ok if the SCALAR is numerically less than BOUND.
=cut
sub less_than ($$;$) {
my $value = shift;
my $bound = shift;
my $name = shift || 'Scalar is less than bound';
my $ok = $value < $bound;
$Test->diag("Number is greater than the bound.\n\t" .
"Expected a number less than [$bound]\n\t" .
"Got [$value]\n") unless $ok;
$Test->ok( $ok, $name );
}
=item maxlength_ok( SCALAR, LENGTH )
Ok is the length of SCALAR is less than or equal to LENGTH.
=cut
sub maxlength_ok($$;$) {
my $string = shift;
my $length = shift;
my $name = shift || 'Scalar length is less than bound';
my $actual = length $string;
my $ok = $actual <= $length;
$Test->diag("Length of value longer than expected\n\t" .
"Expected max=[$length]\n\tGot [$actual]\n") unless $ok;
$Test->ok( $ok, $name );
}
=item minlength_ok( SCALAR, LENGTH )
Ok is the length of SCALAR is greater than or equal to LENGTH.
=cut
sub minlength_ok($$;$) {
my $string = shift;
my $length = shift;
my $name = shift || 'Scalar length is greater than bound';
my $actual = length $string;
my $ok = $actual >= $length;
$Test->diag("Length of value shorter than expected\n\t" .
"Expected min=[$length]\n\tGot [$actual]\n") unless $ok;
$Test->ok( $ok, $name );
}
=item number_ok( SCALAR )
Ok if the SCALAR is a number ( or a string that represents a
number ).
At the moment, a number is just a string of digits. This needs
work.
=cut
sub number_ok($;$) {
my $number = shift;
my $name = shift || 'Scalar is a number';
$number =~ /\D/ ? $Test->ok( 0, $name ) : $Test->ok( 1, $name );
}
=item number_between_ok( SCALAR, LOWER, UPPER )
Ok if the number in SCALAR sorts between the number
in LOWER and the number in UPPER, numerically.
If you put something that isn't a number into UPPER or
LOWER, Perl will try to make it into a number and you
may get unexpected results.
=cut
sub number_between_ok($$$;$) {
my $number = shift;
my $lower = shift;
my $upper = shift;
my $name = shift || 'Scalar is in numerical range';
unless( defined $lower and defined $upper ) {
$Test->diag("You need to define LOWER and UPPER bounds " .
"to use number_between_ok" );
$Test->ok( 0, $name );
}
elsif( $upper < $lower ) {
$Test->diag(
"Upper bound [$upper] is lower than lower bound [$lower]" );
$Test->ok( 0, $name );
}
elsif( $number >= $lower and $number <= $upper ) {
$Test->ok( 1, $name );
}
else {
$Test->diag( "Number [$number] was not within bounds\n",
"\tExpected lower bound [$lower]\n",
"\tExpected upper bound [$upper]\n" );
$Test->ok( 0, $name );
}
}
=item string_between_ok( SCALAR, LOWER, UPPER )
Ok if the string in SCALAR sorts between the string
in LOWER and the string in UPPER, ASCII-betically.
=cut
sub string_between_ok($$$;$) {
my $string = shift;
my $lower = shift;
my $upper = shift;
my $name = shift || 'Scalar is in string range';
unless( defined $lower and defined $upper ) {
$Test->diag("You need to define LOWER and UPPER bounds " .
"to use string_between_ok" );
$Test->ok( 0, $name );
}
elsif( $upper lt $lower ) {
$Test->diag(
"Upper bound [$upper] is lower than lower bound [$lower]" );
$Test->ok( 0, $name );
}
elsif( $string ge $lower and $string le $upper ) {
$Test->ok( 1, $name );
}
else {
$Test->diag( "String [$string] was not within bounds\n",
"\tExpected lower bound [$lower]\n",
"\tExpected upper bound [$upper]\n" );
$Test->ok( 0, $name );
}
}
=item readonly_ok( SCALAR )
Ok is the SCALAR is read-only.
=cut
sub readonly_ok($;$) {
my $ok = not Scalar::Util::readonly( $_[0] );
my $name = $_[1] || 'Scalar is read-only';
$Test->diag("Expected readonly reference, got writeable one\n")
unless $ok;
$Test->ok( $ok, $name );
}
=item ref_ok( SCALAR )
Ok if the SCALAR is a reference.
=cut
sub ref_ok($;$) {
my $ok = ref $_[0];
my $name = $_[1] || 'Scalar is a reference';
$Test->diag("Expected reference, didn't get it\n")
unless $ok;
$Test->ok( $ok, $name );
}
=item ref_type_ok( REF1, REF2 )
Ok if REF1 is the same reference type as REF2.
=cut
sub ref_type_ok($$;$) {
my $ref1 = ref $_[0];
my $ref2 = ref $_[1];
my $ok = $ref1 eq $ref2;
my $name = $_[2] || 'Scalar is right reference type';
$Test->diag("Expected references to match\n\tGot $ref1\n\t" .
"Expected $ref2\n") unless $ok;
ref $_[0] eq ref $_[1] ? $Test->ok( 1, $name ) : $Test->ok( 0, $name );
}
=item strong_ok( SCALAR )
Ok is the SCALAR is not a weak reference.
=cut
sub strong_ok($;$) {
my $ok = not Scalar::Util::isweak( $_[0] );
my $name = $_[1] || 'Scalar is not a weak reference';
$Test->diag("Expected strong reference, got weak one\n")
unless $ok;
$Test->ok( $ok, $name );
}
=item tainted_ok( SCALAR )
Ok is the SCALAR is tainted.
(Tainted values may seem like a not-Ok thing, but remember, when
you use taint checking, you want Perl to taint data, so you
should have a test to make sure it happens.)
=cut
sub tainted_ok($;$) {
my $ok = Scalar::Util::tainted( $_[0] );
my $name = $_[1] || 'Scalar is tainted';
$Test->diag("Expected tainted data, got untainted data\n")
unless $ok;
$Test->ok( $ok, $name );
}
=item untainted_ok( SCALAR )
Ok if the SCALAR is not tainted.
=cut
sub untainted_ok($;$) {
my $ok = not Scalar::Util::tainted( $_[0] );
my $name = $_[1] || 'Scalar is not tainted';
$Test->diag("Expected untainted data, got tainted data\n")
unless $ok;
$Test->ok( $ok, $name );
}
=item weak_ok( SCALAR )
Ok if the SCALAR is a weak reference.
=cut
sub weak_ok($;$) {
my $ok = Scalar::Util::isweak( $_[0] );
my $name = $_[1] || 'Scalar is a weak reference';
$Test->diag("Expected weak reference, got stronge one\n")
unless $ok;
$Test->ok( $ok, $name );
}
=back
=head1 TO DO
* add is_a_filehandle test
* add is_vstring test
=head1 SEE ALSO
L<Scalar::Util>,
L<Test::Data>,
L<Test::Data::Array>,
L<Test::Data::Function>,
L<Test::Data::Hash>,
L<Test::Builder>
=head1 SOURCE AVAILABILITY
This source is in Github:
https://github.com/briandfoy/test-data
=head1 AUTHOR
brian d foy, C<< <bdfoy@cpan.org> >>
=head1 COPYRIGHT AND LICENSE
Copyright © 2002-2016, brian d foy <bdfoy@cpan.org>. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
"The quick brown fox jumped over the lazy dog";
|