This file is indexed.

/usr/share/perl5/Test/MockRandom.pm is in libtest-mockrandom-perl 1.01-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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
use strict;
use warnings;

package Test::MockRandom;
# ABSTRACT: Replaces random number generation with non-random number generation
our $VERSION = '1.01'; # VERSION

use Carp qw/croak/;

#--------------------------------------------------------------------------#
# Class data
#--------------------------------------------------------------------------#

my @data = (0);

#--------------------------------------------------------------------------#
# new()
#--------------------------------------------------------------------------#

sub new {
    my ( $class, @data ) = @_;
    my $self = bless( [], ref($class) || $class );
    $self->srand(@data);
    return $self;
}

#--------------------------------------------------------------------------#
# srand()
#--------------------------------------------------------------------------#

sub srand { ## no critic
    if ( ref( $_[0] ) eq __PACKAGE__ ) {
        my $self = shift;
        @$self = $self->_test_srand(@_);
        return;
    }
    else {
        @data = Test::MockRandom->_test_srand(@_);
        return;
    }
}

sub _test_srand {
    my ( $self, @data ) = @_;
    my $error =
      "Seeds for " . __PACKAGE__ . " must be between 0 (inclusive) and 1 (exclusive)";
    croak $error if grep { $_ < 0 or $_ >= 1 } @data;
    return @data ? @data : (0);
}

#--------------------------------------------------------------------------#
# rand()
#--------------------------------------------------------------------------#

sub rand(;$) { ## no critic
    my ( $mult, $val );
    if ( ref( $_[0] ) eq __PACKAGE__ ) { # we're a MockRandom object
        $mult = $_[1];
        $val = shift @{ $_[0] } || 0;
    }
    else {
        # we might be called as a method of some other class
        # so we need to ignore that and get the right multiplier
        $mult = $_[ ref( $_[0] ) ? 1 : 0 ];
        $val = shift @data || 0;
    }
    # default to 1 for undef, 0, or strings that aren't numbers
    eval { no warnings; local $^W = 0; my $bogus = 1 / $mult };
    $mult = 1 if $@;
    return $val * $mult;
}

#--------------------------------------------------------------------------#
# oneish()
#--------------------------------------------------------------------------#

sub oneish {
    return ( 2**32 - 1 ) / ( 2**32 );
}

#--------------------------------------------------------------------------#
# import()
#--------------------------------------------------------------------------#

sub import {
    my ( $class, @import_list ) = @_;
    my $caller = caller(0);

    # Nothing exported by default or if empty string requested
    return unless @import_list;
    return if ( @import_list == 1 && $import_list[0] eq '' );

    for my $tgt (@import_list) {
        # custom handling if it's a hashref
        if ( ref($tgt) eq "HASH" ) {
            for my $sym ( keys %$tgt ) {
                croak "Unrecognized symbol '$sym'"
                  unless grep { $sym eq $_ } qw (rand srand oneish);
                my @custom = ref( $tgt->{$sym} ) eq 'ARRAY' ? @{ $tgt->{$sym} } : $tgt->{$sym};
                _custom_export( $sym, $_ ) for (@custom);
            }
        }
        # otherwise, export rand to target and srand/oneish to caller
        else {
            my $pkg = ( $tgt =~ /^__PACKAGE__$/ ) ? $caller : $tgt; # DWIM
            _export_symbol( "rand", $pkg );
            _export_symbol( $_, $caller ) for qw( srand oneish );
        }
    }
    return;
}

#--------------------------------------------------------------------------#
# export_oneish_to()
#--------------------------------------------------------------------------#

sub export_oneish_to {
    my ( $class, @args ) = @_;
    _export_fcn_to( $class, "oneish", @args );
    return;
}

#--------------------------------------------------------------------------#
# export_rand_to()
#--------------------------------------------------------------------------#

sub export_rand_to {
    my ( $class, @args ) = @_;
    _export_fcn_to( $class, "rand", @args );
    return;
}

#--------------------------------------------------------------------------#
# export_srand_to()
#--------------------------------------------------------------------------#

sub export_srand_to {
    my ( $class, @args ) = @_;
    _export_fcn_to( $class, "srand", @args );
    return;
}

#--------------------------------------------------------------------------#
# _custom_export
#--------------------------------------------------------------------------#

sub _custom_export {
    my ( $sym, $custom ) = @_;
    if ( ref($custom) eq 'HASH' ) {
        _export_symbol( $sym, %$custom ); # flatten { pkg => 'alias' }
    }
    else {
        _export_symbol( $sym, $custom );
    }
    return;
}

#--------------------------------------------------------------------------#
# _export_fcn_to
#--------------------------------------------------------------------------#

sub _export_fcn_to {
    my ( $self, $fcn, $pkg, $alias ) = @_;
    croak "Must call to export_${fcn}_to() as a class method"
      unless ( $self eq __PACKAGE__ );
    croak("export_${fcn}_to() requires a package name") unless $pkg;
    _export_symbol( $fcn, $pkg, $alias );
    return;
}

#--------------------------------------------------------------------------#
# _export_symbol()
#--------------------------------------------------------------------------#

sub _export_symbol {
    my ( $sym, $pkg, $alias ) = @_;
    $alias ||= $sym;
    {
        no strict 'refs'; ## no critic
        no warnings 'redefine';
        local $^W = 0;    # no redefine warnings
        *{"${pkg}::${alias}"} = \&{"Test::MockRandom::${sym}"};
    }
    return;
}

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Test::MockRandom - Replaces random number generation with non-random number generation

=head1 VERSION

version 1.01

=head1 SYNOPSIS

   # intercept rand in another package
   use Test::MockRandom 'Some::Other::Package';
   use Some::Other::Package; # exports sub foo { return rand }
   srand(0.13);
   foo(); # returns 0.13
 
   # using a seed list and "oneish"
   srand(0.23, 0.34, oneish() );
   foo(); # returns 0.23
   foo(); # returns 0.34
   foo(); # returns a number just barely less than one
   foo(); # returns 0, as the seed array is empty
 
   # object-oriented, for use in the current package
   use Test::MockRandom ();
   my $nrng = Test::MockRandom->new(0.42, 0.23);
   $nrng->rand(); # returns 0.42

=head1 DESCRIPTION

This perhaps ridiculous-seeming module was created to test routines that
manipulate random numbers by providing a known output from C<<< rand >>>.  Given a
list of seeds with C<<< srand >>>, it will return each in turn.  After seeded random
numbers are exhausted, it will always return 0.  Seed numbers must be of a form
that meets the expected output from C<<< rand >>> as called with no arguments -- i.e.
they must be between 0 (inclusive) and 1 (exclusive).  In order to facilitate
generating and testing a nearly-one number, this module exports the function
C<<< oneish >>>, which returns a number just fractionally less than one.  

Depending on how this module is called with C<<< use >>>, it will export C<<< rand >>> to a
specified package (e.g. a class being tested) effectively overriding and
intercepting calls in that package to the built-in C<<< rand >>>.  It can also
override C<<< rand >>> in the current package or even globally.  In all
of these cases, it also exports C<<< srand >>> and C<<< oneish >>> to the current package
in order to control the output of C<<< rand >>>.  See L</USAGE> for details.

Alternatively, this module can be used to generate objects, with each object
maintaining its own distinct seed array.

=head1 USAGE

By default, Test::MockRandom does not export any functions.  This still allows
object-oriented use by calling C<<< Test::MockRandom->new(@seeds) >>>.  In order
for Test::MockRandom to be more useful, arguments must be provided during the
call to C<<< use >>>.

=head2 use Test::MockRandom 'Target::Package'

The simplest way to intercept C<<< rand >>> in another package is to provide the
name(s) of the package(s) for interception as arguments in the C<<< use >>>
statement.  This will export C<<< rand >>> to the listed packages and will export
C<<< srand >>> and C<<< oneish >>> to the current package to control the behavior of
C<<< rand >>>.  You B<must> C<<< use >>> Test::MockRandom before you C<<< use >>> the target
package.  This is a typical case for testing a module that uses random numbers:

  use Test::More 'no_plan';
  use Test::MockRandom 'Some::Package';
  BEGIN { use_ok( Some::Package ) }
 
  # assume sub foo { return rand } was imported from Some::Package
 
  srand(0.5)
  is( foo(), 0.5, "is foo() 0.5?") # test gives "ok"

If multiple package names are specified, C<<< rand >>> will be exported to all
of them.

If you wish to export C<<< rand >>> to the current package, simply provide
C<<< __PACKAGE__ >>> as the parameter for C<<< use >>>, or C<<< main >>> if importing
to a script without a specified package.  This can be part of a
list provided to C<<< use >>>.  All of the following idioms work:

  use Test::MockRandom qw( main Some::Package ); # Assumes a script
  use Test::MockRandom __PACKAGE__, 'Some::Package';
 
  # The following doesn't interpolate __PACKAGE__ as above, but 
  # Test::MockRandom will still DWIM and handle it correctly
 
  use Test::MockRandom qw( __PACKAGE__ Some::Package );

=head2 use Test::MockRandom %customized

As an alternative to a package name as an argument to C<<< use >>>,
Test::MockRandom will also accept a hash reference with a custom
set of instructions for how to export functions:

  use Test::MockRandom {
     rand   => [ Some::Package, {Another::Package => 'random'} ],
     srand  => { Another::Package => 'seed' }, 
     oneish => __PACKAGE__
  };

The keys of the hash may be any of C<<< rand >>>, C<<< srand >>>, and C<<< oneish >>>.  The
values of the hash give instructions for where to export the symbol
corresponding to the key.  These are interpreted as follows, depending on their
type:

=over

=item *

String: a package to which Test::MockRandom will export the symbol

=item *

Hash Reference: the key is the package to which Test::MockRandom will export
the symbol and the value is the name under which it will be exported

=item *

Array Reference: a list of strings or hash references which will be handled
as above

=back

=head2 Test::MockRandom-E<gt>export_rand_to()

In order to intercept the built-in C<<< rand >>> in another package, 
Test::MockRandom must export its own C<<< rand >>> function to the 
target package B<before> the target package is compiled, thus overriding
calls to the built-in.  The simple approach (described above) of providing the
target package name in the C<<< use Test::MockRandom >>> statement accomplishes this
because C<<< use >>> is equivalent to a C<<< require >>> and C<<< import >>> within a C<<< BEGIN >>>
block.  To explicitly intercept C<<< rand >>> in another package, you can also call
C<<< export_rand_to >>>, but it must be enclosed in a C<<< BEGIN >>> block of its own.  The
explicit form also support function aliasing just as with the custom approach
with C<<< use >>>, described above:

  use Test::MockRandom;
  BEGIN {Test::MockRandom->export_rand_to('AnotherPackage'=>'random')}
  use AnotherPackage;

This C<<< BEGIN >>> block must not include a C<<< use >>> statement for the package to be
intercepted, or perl will compile the package to be intercepted before the
C<<< export_rand_to >>> function has a chance to execute and intercept calls to 
the built-in C<<< rand >>>.  This is very important in testing.  The C<<< export_rand_to >>>
call must be in a separate C<<< BEGIN >>> block from a C<<< use >>> or C<<< use_ok >>> test,
which should be enclosed in a C<<< BEGIN >>> block of its own: 

  use Test::More tests => 1;
  use Test::MockRandom;
  BEGIN { Test::MockRandom->export_rand_to( 'AnotherPackage' ); }
  BEGIN { use_ok( 'AnotherPackage' ); }

Given these cautions, it's probably best to use either the simple or custom
approach with C<<< use >>>, which does the right thing in most circumstances.  Should
additional explicit customization be necessary, Test::MockRandom also provides
C<<< export_srand_to >>> and C<<< export_oneish_to >>>.

=head2 Overriding C<<< rand >>> globally: use Test::MockRandom 'CORE::GLOBAL'

This is just like intercepting C<<< rand >>> in a package, except that you
do it globally by overriding the built-in function in C<<< CORE::GLOBAL >>>. 

  use Test::MockRandom 'CORE::GLOBAL';
 
  # or
 
  BEGIN { Test::MockRandom->export_rand_to('CORE::GLOBAL') }

You can always access the real, built-in C<<< rand >>> by calling it explicitly as
C<<< CORE::rand >>>.

=head2 Intercepting C<<< rand >>> in a package that also contains a C<<< rand >>> function

This is tricky as the order in which the symbol table is manipulated will lead
to very different results.  This can be done safely (maybe) if the module uses
the same rand syntaxE<sol>prototype as the system call but offers them up as method
calls which resolve at run-time instead of compile time.  In this case, you
will need to do an explicit intercept (as above) but do it B<after> importing
the package.  I.e.:

  use Test::MockRandom 'SomeRandPackage';
  use SomeRandPackage;
  BEGIN { Test::MockRandom->export_rand_to('SomeRandPackage');

The first line is necessary to get C<<< srand >>> and C<<< oneish >>> exported to
the current package.  The second line will define a C<<< sub rand >>> in 
C<<< SomeRandPackage >>>, overriding the results of the first line.  The third
line then re-overrides the C<<< rand >>>.  You may see warnings about C<<< rand >>> 
being redefined.

Depending on how your C<<< rand >>> is written and used, there is a good likelihood
that this isn't going to do what you're expecting, no matter what.  If your
package that defines C<<< rand >>> relies internally upon the system
C<<< CORE::GLOBAL::rand >>> function, then you may be best off overriding that
instead.

=head1 FUNCTIONS

=head2 C<<< new >>>

  $obj = new( LIST OF SEEDS );

Returns a new Test::MockRandom object with the specified list of seeds.

=head2 C<<< srand >>>

  srand( LIST OF SEEDS );
  $obj->srand( LIST OF SEEDS);

If called as a bare function call or package method, sets the seed list
for bareE<sol>package calls to C<<< rand >>>.  If called as an object method,
sets the seed list for that object only.

=head2 C<<< rand >>>

  $rv = rand();
  $rv = $obj->rand();
  $rv = rand(3);

If called as a bare or package function, returns the next value from the
package seed list.  If called as an object method, returns the next value from
the object seed list. 

If C<<< rand >>> is called with a numeric argument, it follows the same behavior as
the built-in function -- it multiplies the argument with the next value from
the seed array (resulting in a random fractional value between 0 and the
argument, just like the built-in).  If the argument is 0, undef, or
non-numeric, it is treated as if the argument is 1.

Using this with an argument in testing may be complicated, as limits in
floating point precision mean that direct numeric comparisons are not reliable.
E.g.

  srand(1/3);
  rand(3);       # does this return 1.0 or .999999999 etc.

=head2 C<<< oneish >>>

  srand( oneish() );
  if ( rand() == oneish() ) { print "It's almost one." };

A utility function to return a nearly-one value.  Equal to ( 2^32 - 1 ) E<sol> 2^32.
Useful in C<<< srand >>> and test functions.

=head2 C<<< export_rand_to >>>

  Test::MockRandom->export_rand_to( 'Some::Class' );
  Test::MockRandom->export_rand_to( 'Some::Class' => 'random' );

This function exports C<<< rand >>> into the specified package namespace.  It must be
called as a class function.  If a second argument is provided, it is taken as
the symbol name used in the other package as the alias to C<<< rand >>>:

  use Test::MockRandom;
  BEGIN { Test::MockRandom->export_rand_to( 'Some::Class' => 'random' ); }
  use Some::Class;
  srand (0.5);
  print Some::Class::random(); # prints 0.5

It can also be used to explicitly intercept C<<< rand >>> after Test::MockRandom has
been loaded.  The effect of this function is highly dependent on when it is
called in the compile cycle and should usually called from within a BEGIN
block.  See L</USAGE> for details.

Most users will not need this function.

=head2 C<<< export_srand_to >>>

  Test::MockRandom->export_srand_to( 'Some::Class' );
  Test::MockRandom->export_srand_to( 'Some::Class' => 'seed' );

This function exports C<<< srand >>> into the specified package namespace.  It must be 
called as a class function.  If a second argument is provided, it is taken as
the symbol name to use in the other package as the alias for C<<< srand >>>.
This function may be useful if another package wraps C<<< srand >>>:

  # In Some/Class.pm
  package Some::Class;
  sub seed { srand(shift) }
  sub foo  { rand }
 
  # In a script
  use Test::MockRandom 'Some::Class';
  BEGIN { Test::MockRandom->export_srand_to( 'Some::Class' ); }
  use Some::Class;
  seed(0.5);
  print foo();   # prints "0.5"

The effect of this function is highly dependent on when it is called in the
compile cycle and should usually be called from within a BEGIN block.  See
L</USAGE> for details.

Most users will not need this function.  

=head2 C<<< export_oneish_to >>>

  Test::MockRandom->export_oneish_to( 'Some::Class' );
  Test::MockRandom->export_oneish_to( 'Some::Class' => 'nearly_one' );

This function exports C<<< oneish >>> into the specified package namespace.  It must
be called as a class function.  If a second argument is provided, it is taken
as the symbol name to use in the other package as the alias for C<<< oneish >>>.  
Since C<<< oneish >>> is usually only used in a test script, this function is likely
only necessary to alias C<<< oneish >>> to some other name in the current package:

  use Test::MockRandom 'Some::Class';
  BEGIN { Test::MockRandom->export_oneish_to( __PACKAGE__, "one" ); }
  use Some::Class;
  seed( one() );
  print foo();   # prints a value very close to one

The effect of this function is highly dependent on when it is called in the
compile cycle and should usually be called from within a BEGIN block.  See
L</USAGE> for details.

Most users will not need this function.  

=head1 SEE ALSO

=over

=item *

L<Test::MockObject>

=item *

L<Test::MockModule>

=back

=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan

=head1 SUPPORT

=head2 Bugs / Feature Requests

Please report any bugs or feature requests through the issue tracker
at L<https://github.com/dagolden/Test-MockRandom/issues>.
You will be notified automatically of any progress on your issue.

=head2 Source Code

This is open source software.  The code repository is available for
public review and contribution under the terms of the license.

L<https://github.com/dagolden/Test-MockRandom>

  git clone https://github.com/dagolden/Test-MockRandom.git

=head1 AUTHOR

David Golden <dagolden@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2014 by David Golden.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004

=cut