You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio-config-tests/bin/config_debug.pl

120 lines
3.2 KiB

#!/usr/bin/perl
#
# Copyright: 2013 Sipwise Development Team <support@sipwise.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This package 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, see <http://www.gnu.org/licenses/>.
#
# On Debian systems, the complete text of the GNU General
# Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
#
use File::Spec;
use File::Copy;
use Tie::File;
use strict;
use warnings;
use YAML::Tiny;
use Getopt::Long;
sub usage
{
my $output = "usage: config_debug.pl [-h] MODE DOMAIN\n";
$output .= "Options:\n";
$output .= "\t-h: this help\n";
$output .= "\tMODE: on|off\tdefault: off\n";
$output .= "\tDOMAIN: default: spce.test\n";
return $output
}
my $help = 0;
my $profile = "CE";
GetOptions ("h|help" => \$help)
or die("Error in command line arguments\n".usage());
if($#ARGV>1 || $help)
{
die("Wrong number of arguments\n".usage())
}
my $base_dir;
my $yaml = YAML::Tiny->new;
my $file = "/etc/ngcp-config/config.yml";
my @array;
my $path;
if (exists $ENV{'BASE_DIR'})
{
$base_dir = $ENV{'BASE_DIR'};
}
else
{
$base_dir = '/usr/share/kamailio-config-tests';
}
my ($action, $domain) = @ARGV;
$action = 'off' unless defined($action);
$domain = 'spce.test' unless defined($domain);
if (lc($action) eq "off")
{
move("$file.orig", $file) or die "Can't restore the orig config";
tie @array, 'Tie::File', '/etc/hosts' or die ('Can set test domain on /etc/hosts');
for (@array)
{
s/\Q$domain\E//;
}
untie @array;
for my $i ('caller.csv', 'callee.csv')
{
$path = File::Spec->catfile( $base_dir, 'scenarios', $i);
tie @array, 'Tie::File', $path or die ("Can set test domain on $path");
for (@array)
{
s/\Q$domain\E/DOMAIN/;
}
untie @array;
}
}
else
{
copy($file, $file.".orig") or die "Copy failed: $!";
$yaml = YAML::Tiny->read($file) or die "File $file could not be read";
$yaml->[0]->{kamailio}{lb}{debug} = 'yes';
$yaml->[0]->{kamailio}{lb}{use_dns_cache} = 'off';
$yaml->[0]->{kamailio}{proxy}{debug} = 'yes';
$yaml->[0]->{kamailio}{proxy}{presence}{enable} = 'yes';
$yaml->[0]->{sems}{debug} = 'yes';
$yaml->[0]->{checktools}{sip_check_enable} = 0;
tie @array, 'Tie::File', '/etc/hosts' or die ('Can set test domain on /etc/hosts');
for (@array)
{
s/127.0.0.1[ \t]+localhost/127.0.0.1 localhost $domain/;
}
untie @array;
for my $i ('caller.csv', 'callee.csv')
{
$path = File::Spec->catfile( $base_dir, 'scenarios', $i);
tie @array, 'Tie::File', $path or die ("Can set test domain on $path");
for (@array)
{
s/DOMAIN/$domain/;
}
untie @array;
}
open(my $fh, '>', "$file") or die "Could not open $file for writing";
print $fh $yaml->write_string() or die "Could not write YAML to $file";
}
#EOF