File: networking_dns_01.t

package info (click to toggle)
systemconfigurator 2.2.11-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 872 kB
  • ctags: 367
  • sloc: perl: 9,686; makefile: 52
file content (81 lines) | stat: -rw-r--r-- 1,377 bytes parent folder | download | duplicates (4)
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
use Test;
use Data::Dumper;
use Carp;

#
#  This test verifies that /etc/resolv.conf is not written at all if NAMSERVER?
#  is missing
#

BEGIN {
    
    # Set up tests to run
    
    plan tests => 6;
    
    # Here is a trick to make it look like this was called with those args
    # on the command line before SCConfig runs.

    @ARGV = qw(--cfgfile t/cfg/networking_dns_01.cfg);
}

eval {
  use SCConfig;
  return 1;
};

ok($@,'') or croak("No point in going any further");

eval {
  use Network;
  return 1;
};

ok($@,'') or croak("No point in going any further");

# We loaded the file... now lets setup a fake directory to use

my $root = $config->root();

if(!$root) {
  croak("Running this not chroot is way too dangerous");
}

my $dir = $root . "/etc/network";

system("mkdir -p $dir");

open(OUT,">$dir/interfaces");
print OUT "test\n";
close(OUT);

if(!-d $dir) {
  croak("No directory $dir exists");
}

#
# Okay now we test the bare minimal setup, i.e. just
# nameserver1 and domainname set
#

Network::setup($config);

ok(-e "$root/etc/resolv.conf");

local($/) = undef;

open(IN,"<$root/etc/resolv.conf") or croak("Can't open /etc/resolv.conf");

my $file = <IN>;

ok($file,'/domain dual.alpha.mycluster.big/');
ok($file,'/nameserver 192.168.64.1/');

close(IN) or croak("Can't close /etc/resolv.conf");

#
# Now we cleanup
#


ok(system("rm -rf $root"),0);