This file is indexed.

/usr/share/perl5/Test/MockRandom.pod is in libtest-mockrandom-perl 1.00-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
# Generated by Pod::WikiDoc version 0.18

=pod

=head1 NAME

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

=head1 VERSION

This documentation describes version 1.00.

=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 BUGS

Please report any bugs or feature requests using the CPAN Request Tracker.  
Bugs can be submitted through the web interface at 
L<http://rt.cpan.org/Dist/Display.html?Queue=Test::MockRandom>

When submitting a bug or request, please include a test-file or a patch to an
existing test-file that illustrates the bug or desired feature.

=head1 SEE ALSO

=over

=item *

Test::MockObject

=item *

Test::MockModule

=back

=head1 AUTHOR

David A. Golden (DAGOLDEN)

=head1 COPYRIGHT AND LICENSE

Copyright (c) 2004-2007 by David A. Golden

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at 
L<http://www.apache.org/licenses/LICENSE-2.0>

Files produced as output though the use of this software, shall not be
considered Derivative Works, but shall be considered the original work of the
Licensor.

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.