File Coverage

blib/lib/Net/DRI/Transport/Dummy.pm
Criterion Covered Total %
statement 25 38 65.7
branch 2 4 50.0
condition n/a
subroutine 7 10 70.0
pod 1 4 25.0
total 35 56 62.5


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Dummy transport for tests & debug
2             ##
3             ## Copyright (c) 2005,2007,2009,2011,2013 Patrick Mevzek . All rights reserved.
4             ##
5             ## This file is part of Net::DRI
6             ##
7             ## Net::DRI is free software; you can redistribute it and/or modify
8             ## it under the terms of the GNU General Public License as published by
9             ## the Free Software Foundation; either version 2 of the License, or
10             ## (at your option) any later version.
11             ##
12             ## See the LICENSE file that comes with this distribution for more details.
13             #########################################################################################
14              
15             package Net::DRI::Transport::Dummy;
16              
17 67     67   33910 use strict;
  67         84  
  67         1761  
18 67     67   256 use warnings;
  67         69  
  67         1593  
19              
20 67     67   189 use base qw(Net::DRI::Transport);
  67         71  
  67         28343  
21              
22 67     67   309 use Net::DRI::Data::Raw;
  67         77  
  67         334  
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DRI::Transport::Dummy - Net::DRI dummy transport for tests & debug
29              
30             =head1 DESCRIPTION
31              
32             Please see the README file for details.
33              
34             =head1 SUPPORT
35              
36             For now, support questions should be sent to:
37              
38             Enetdri@dotandco.comE
39              
40             Please also see the SUPPORT file in the distribution.
41              
42             =head1 SEE ALSO
43              
44             Ehttp://www.dotandco.com/services/software/Net-DRI/E
45              
46             =head1 AUTHOR
47              
48             Patrick Mevzek, Enetdri@dotandco.comE
49              
50             =head1 COPYRIGHT
51              
52             Copyright (c) 2005,2007,2009,2011,2013 Patrick Mevzek .
53             All rights reserved.
54              
55             This program is free software; you can redistribute it and/or modify
56             it under the terms of the GNU General Public License as published by
57             the Free Software Foundation; either version 2 of the License, or
58             (at your option) any later version.
59              
60             See the LICENSE file that comes with this distribution for more details.
61              
62             =cut
63              
64             ####################################################################################################
65              
66             sub new
67             {
68 1     1 1 2 my ($class,$ctx,$rh)=@_;
69 1         7 my $self=$class->SUPER::new($ctx,$rh); ## We are now officially a Net::DRI::Transport instance
70 1         5 $self->has_state(0);
71 1         10 $self->is_sync(1);
72 1         7 $self->name('dummy');
73 1         11 $self->version('0.1');
74              
75 1 50       10 $self->{f_send}=(exists($rh->{f_send}))? $rh->{f_send} : \&_print;
76 1 50       5 $self->{f_recv}=(exists($rh->{f_recv}))? $rh->{f_recv} : \&_got_ok;
77              
78 1         3 return $self;
79             }
80              
81             sub send ## no critic (Subroutines::ProhibitBuiltinHomonyms)
82             {
83 10     10 0 12 my ($self,$ctx,$tosend)=@_;
84 10         31 return $self->SUPER::send($ctx,$tosend,$self->{f_send},\&handle_error);
85             }
86              
87             sub handle_error
88             {
89 0     0 0 0 my ($self,$err,$c,$is_timeout,$ok)=@_;
90 0         0 die($err->as_string());
91             }
92              
93             sub _print
94             {
95 0     0   0 my ($self,$count,$tosend)=@_;
96 0         0 print STDOUT ">>>>>>>>>>>>>>>>>> (Net::DRI::Transport::Dummy) (count=$count)\n";
97 0         0 print STDOUT $tosend->as_string();
98 0         0 print STDOUT ">>>>>>>>>>>>>>>>>>\n\n";
99 0         0 return 1; ## very important
100             }
101              
102             sub receive
103             {
104 10     10 0 10 my ($self,$ctx,$count)=@_;
105 10         24 return $self->SUPER::receive($ctx,$self->{f_recv});
106             }
107              
108             sub _got_ok
109             {
110 0     0     my ($self,$count)=@_;
111 0           my $m="200 OK\r\n.\r\n";
112 0           print STDOUT "<<<<<<<<<<<<<<<<<< (Net::DRI::Transport::Dummy) (count=$count)\n";
113 0           print STDOUT $m;
114 0           print STDOUT "<<<<<<<<<<<<<<<<<<\n\n";
115 0           return Net::DRI::Data::Raw->new_from_string($m);
116             }
117              
118             ######################################################################################
119             1;