/usr/share/perl5/EBox/NetWrappers/TestStub.pm is in zentyal-common 2.3.3.
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 | # Copyright (C) 2008-2012 eBox Technologies S.L.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package EBox::NetWrappers::TestStub;
# Description:
#
use strict;
use warnings;
use Test::MockObject;
use EBox::NetWrappers;
my %fakeIfaces;
my %fakeRoutes;
sub fake
{
Test::MockObject->fake_module('EBox::NetWrappers',
iface_exists => \&iface_exists,
list_ifaces => \&list_ifaces,
iface_is_up => \&iface_is_up,
iface_mac_address => \&iface_mac_address,
iface_addresses => \&iface_addresses,
iface_addresses_with_netmask => \&iface_addresses_with_netmask,
list_routes => \&list_routes,
route_is_up => \&route_is_up,
);
}
sub unfake
{
delete $INC{'EBox/NetWrappers.pm'};
eval 'use EBox::NetWrappers';
$@ and die "Error reloading EBox::NetWrappers: $@";
}
sub setFakeIfaces
{
my ($fakeIfaces_r) = @_;
%fakeIfaces = %{$fakeIfaces_r};
}
sub fakeIfaces
{
return \%fakeIfaces;
}
sub setFakeRoutes
{
my ($fakeRoutes_r) = @_;
%fakeRoutes = %{$fakeRoutes_r};
}
sub fakeRoutes
{
return \%fakeRoutes;
}
# fake methods:
sub iface_exists
{
my ($iface) = @_;
return exists $fakeIfaces{$iface};
}
sub list_ifaces
{
return keys %fakeIfaces;
}
sub iface_is_up
{
my ($iface) = @_;
return _ifacePropierty($iface, 'up');
}
sub iface_mac_address
{
my ($iface) = @_;
return _ifacePropierty($iface, 'mac_address');
}
sub iface_addresses
{
my ($iface) = @_;
my $address_r = _ifacePropierty($iface, 'address') ;
return keys %{ $address_r };
}
sub iface_addresses_with_netmask
{
my ($iface) = @_;
return _ifacePropierty($iface, 'address');
}
sub _ifacePropierty
{
my ($iface, $propierty) = @_;
unless (exists $fakeIfaces{$iface}) {
throw EBox::Exceptions::DataNotFound(
data => 'Interface',
value => $iface);
}
unless (exists $fakeIfaces{$iface}->{$propierty} ) {
die "You had not setted a $propierty propierty for the fake iface $iface";
}
return $fakeIfaces{$iface}->{$propierty};
}
sub list_routes
{
my @routes;
while (my ($dest, $router) = each %fakeRoutes) {
push @routes, { network => $dest, router => $router };
}
return @routes;
}
sub route_is_up
{
my ($network, $router) = @_;
if (exists $fakeRoutes{$network}) {
if ($fakeRoutes{$network} eq $router) {
return 1;
}
}
return undef;
}
1;
|