This file is indexed.

/usr/share/perl5/Test/MockDBI/St.pm is in libtest-mockdbi-perl 0.70-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
package Test::MockDBI::St;

use strict;
use warnings;
use Test::MockDBI::Constants;
use Test::MockDBI::Db;
use Test::MockDBI::Base;

use base qw(Test::MockDBI::Base);

my $mockdbi = undef;

sub import{ $mockdbi = $_[1]; }


sub _dbi_bind_param{
  my ($self, $p_num, $bind_value, $attr) = @_;
  
  #Clearing the dbi err/errstr
  $mockdbi->_clear_dbi_err_errstr($self);
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if(ref($retval) eq 'CODE'){
      return $retval->($self);
    }
    
    return $retval;
  }
  return if($mockdbi->_is_bad_bind_param($self->{Statement}, $bind_value));
  
  #Check that the $p_num is a valid number
  if($p_num !~ m/^\d+$/){
    $mockdbi->_set_dbi_err_errstr($self,  err => 16, errstr => 'Illegal parameter number');
    return;
  }
  if($p_num < 1 || $p_num > $self->{NUM_OF_PARAMS}){
    $mockdbi->_set_dbi_err_errstr($self,  err => 16, errstr => 'Illegal parameter number');
    return;
  }
  
  #Verify that the bind_param attribute is a valid one

  
  #Rewrite this to resemble the DBI behaviour
  if($attr && $attr =~ m/^\d+$/){
    $self->{ParamTypes}->{$p_num} = { TYPE => $attr};
  }elsif($attr){
    #Assume its a hash
    #Throw a warning as DBI does
    if( $attr->{TYPE} !~ m/^\d+$/){
      my @caller = caller(1);
      warn 'Argument "' . $attr->{TYPE} .'" isn\'t numeric in subroutine entry at ' . $caller[1] . ' line ' . $caller[2] . '.' . "\n";
    }else{
      $self->{ParamTypes}->{$p_num} = $attr;
    }
    
  }else{
    $self->{ParamTypes}->{$p_num} = { TYPE => SQL_VARCHAR };
  }
    
  $self->{ParamValues}->{$p_num} = $bind_value;
  
  return 1;
}

sub _dbi_bind_param_inout{
  my($self, $p_num, $bind_value, $max_length, $attr) = @_;
  
  $mockdbi->_clear_dbi_err_errstr($self);
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if( ref($retval) eq 'CODE'){
      return $retval->($self);
    }
    
    return $retval;
  }
  return if($mockdbi->_is_bad_bind_param($self->{Statement}, $bind_value));
  
  if(!$self || !$p_num || !$bind_value || $max_length ){
    #DBI just dies if it has to few parameters
    die('DBI bind_param_inout: invalid number of arguments: got handle + 2, expected handle + between 3 and 4
        Usage: $h->bind_param_inout($parameter, \$var, $maxlen, [, \%attr])');
  }

  #Check that the $p_num is a valid number
  if($p_num !~ m/^\d+$/){
    $mockdbi->_set_dbi_err_errstr($self,  err => 16, errstr => 'Illegal parameter number');
    return;
  }
  if($p_num < 1 || $p_num > $self->{NUM_OF_PARAMS}){
    $mockdbi->_set_dbi_err_errstr($self,  err => 16, errstr => 'Illegal parameter number');
    return;
  }
  
  #Verify that the bind_param attribute is a valid one
  if($attr && $attr =~ m/^\d+$/){
    $self->{ParamTypes}->{$p_num} = { TYPE => $attr};
  }elsif($attr){
    #Assume its a hash
    #Throw a warning as DBI does
    if( $attr->{TYPE} !~ m/^\d+$/){
      my @caller = caller(1);
      warn 'Argument "' . $attr->{TYPE} .'" isn\'t numeric in subroutine entry at ' . $caller[1] . ' line ' . $caller[2] . '.' . "\n";
    }else{
      $self->{ParamTypes}->{$p_num} = $attr;
    }
    
  }else{
    $self->{ParamTypes}->{$p_num} = { TYPE => SQL_VARCHAR };
  }
  
  if ( ref($bind_value) ne 'SCALAR' ) {
    #DBI just dies if $bind_value is not a SCALAR reference
    die('bind_param_inout needs a reference to a scalar value');
    return;
  }  
  
  $self->{ParamValues}->{$p_num} = $bind_value;
  
  push( @{ $self->{_fake}->{InoutParams} }, $p_num );
  
  return 1;  
}

sub _dbi_execute{
  my ($self, @bind_values) = @_;
  
  $mockdbi->_clear_dbi_err_errstr($self);
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if(ref($retval) eq 'CODE'){
      return $retval->($self);
    }
    return $retval;
  }    
  
  #Copied from the DBI documentation:
  # Active
  # Type: boolean, read-only
  # The Active attribute is true if the handle object is "active". This is rarely used in applications.
  # The exact meaning of active is somewhat vague at the moment.
  # For a database handle it typically means that the handle is connected to a database ($dbh->disconnect sets Active off).
  # For a statement handle it typically means that the handle is a SELECT that may have more data to fetch.
  # (Fetching all the data or calling $sth->finish sets Active off.)
  #
  # Due to the vague definition of the Active attribute i have taken the freedom to interpeter the attribute in the following way:
  #   - The Active attribute is set to true on a statementhandler when the execute method is called on an already prepared select statement
  #   - The Active attribute is set to false either if finish is called on the statementhandler or disconnect is called on the dbh
  #
  
  #Updating attributes
  $self->{Active} = 1 if $self->{Statement} =~ m/^select/i;
  $self->{Executed} = 1;
  #Update the parent activekids flag
  Test::MockDBI::Db::_update_active_kids($self->{Database});
  
  if(ref($self->{_fake}->{InoutParams}) eq 'ARRAY' && scalar( @{ $self->{_fake}->{InoutParams} } ) > 0 ){
    foreach my $p_num ( @{ $self->{_fake}->{InoutParams} } ){
      my ($status, $retval) = $mockdbi->_has_inout_value($self->{Statement}, $p_num);
      ${ $self->{ParamValues}->{$p_num} } = $retval if $status;
    }
    
  }

  #Not enough parameters bound
  if( $self->{NUM_OF_PARAMS} != scalar(keys %{ $self->{ParamValues} })){
    return '0E0';
  }
  
  #Number of affected rows is not known
  return -1;
}

sub _dbi_fetchrow_arrayref{
  my ($self) = @_;
  
  $mockdbi->_clear_dbi_err_errstr($self);
  
  #return if we are not executed
  return if( !$self->{Executed} );  
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if(ref($retval) eq 'CODE'){
      my @caller = caller(1);
      if($caller[3] && $caller[3] =~ m/fetchrow_array$/){
        return $retval;
      }
      return $retval->($self);
    }
  }  
  
  #The resultset should be an array of hashes
  if(ref($retval) ne 'ARRAY'){
    #Should implement support for RaiseError and PrintError
    return;
  }
  
  if(scalar( @{$retval} ) > 0){
    my $row = shift @{ $retval };
    if(ref($row) ne 'ARRAY'){
      #Should implement support for RaiseError and PrintError
      return;
    }
    return $row;
  }
  #fetchrow_arrayref returns undef if no more rows are available, or an error has occured
  return;
}

sub _dbi_fetch{
  return $_[0]->fetchrow_arrayref();
}

sub _dbi_fetchrow_array{
  my ($self) = @_;
  my $row = $self->fetchrow_arrayref();
  return if !$row;
  return @{$row} if ref($row) eq 'ARRAY';
  return $row->($self) if ref($row) eq 'CODE';
  return $row;
}

sub _dbi_fetchrow_hashref{
  my ($self) = @_;
  
  $mockdbi->_clear_dbi_err_errstr($self);
  
  #return if we are not executed
  return if( !$self->{Executed} );  
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if(ref($retval) eq 'CODE'){
      return $retval->($self);
    }
  }  
  
  #The resultset should be an array of hashes
  if(ref($retval) ne 'ARRAY'){
    #Should implement support for RaiseError and PrintError
    return;
  }
  
  if(scalar( @{$retval} ) > 0){
    my $row = shift @{ $retval };
    if(ref($row) ne 'HASH'){
      #Should implement support for RaiseError and PrintError
      return;
    }
    return $row;
  }

  #fetchrow_hashref returns undef if no more rows are available, or an error has occured
  return;
}

sub _dbi_fetchall_arrayref{
  my ($self) = @_;
  
  $mockdbi->_clear_dbi_err_errstr($self);
  
  #return if we are not executed
  return if( !$self->{Executed} );  
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if(ref($retval) eq 'CODE'){
      return $retval->($self);
    }
  }  

  #The resultset should be an array of hashes
  if(ref($retval) ne 'ARRAY'){
    #Should implement support for RaiseError and PrintError
    return;
  }
  
  return $retval;
}


sub _dbi_finish{
  my ($self) = @_;
  
  $mockdbi->_clear_dbi_err_errstr($self);
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if(ref($retval) eq 'CODE'){
      return $retval->($self);
    }
    return $retval;
  }  
  
  $self->{Active} = undef;
  #Update the parent activekids flag
  Test::MockDBI::Db::_update_active_kids($self->{Database});
  
  return 1;
}

sub _dbi_rows{
  my ($self) = @_;
  
  $mockdbi->_clear_dbi_err_errstr($self);
  
  my ($status, $retval) = $mockdbi->_has_fake_retval($self->{Statement});
  if($status){
    $mockdbi->_set_fake_dbi_err_errstr($self);
    
    if(ref($retval) eq 'CODE'){
      return $retval->($self);
    }
    return $retval;
  }  
  
  return -1;
}
1;