Skip to content

Commit c8cb6a4

Browse files
committed
ncm-afsclt: add unit tests for Configure_Cell
1 parent 5be2b85 commit c8cb6a4

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed
+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# -*- mode: cperl -*-
2+
# ${license-info}
3+
# ${author-info}
4+
# ${build-info}
5+
6+
use strict;
7+
use warnings;
8+
9+
use Test::More tests => 11;
10+
use Test::NoWarnings;
11+
use Test::Quattor qw(explicit);
12+
use NCM::Component::afsclt;
13+
use Readonly;
14+
use CAF::Object;
15+
Test::NoWarnings::clear_warnings();
16+
17+
=pod
18+
19+
=head1 SYNOPSIS
20+
21+
Tests for AFS cell configuration
22+
23+
=cut
24+
25+
Readonly my $THISCELL_FILE => '/usr/vice/etc/ThisCell';
26+
Readonly my $THISCELL_EXPECTED => 'in2p3.fr
27+
';
28+
29+
#############
30+
# Main code #
31+
#############
32+
33+
34+
my $fh;
35+
my $status;
36+
37+
$CAF::Object::NoAction = 1;
38+
set_caf_file_close_diff(1);
39+
40+
my $comp = NCM::Component::afsclt->new('afsclt');
41+
42+
my $config_explicit = get_config_for_profile("explicit");
43+
44+
# Initial ThisCell file empty
45+
set_file_contents($THISCELL_FILE,"");
46+
$status = $comp->Configure_Cell($config_explicit);
47+
ok(!$status, "Configure_Cell returned no explicit error");
48+
$fh = get_file($THISCELL_FILE);
49+
ok(defined($fh), $THISCELL_FILE." was opened");
50+
is("$fh", $THISCELL_EXPECTED, $THISCELL_FILE." (initially empty) has expected contents");
51+
$fh->close();
52+
53+
# Initial ThisCell content different from expected one
54+
set_file_contents($THISCELL_FILE,"abcdefg");
55+
$status = $comp->Configure_Cell($config_explicit);
56+
ok(!$status, "Configure_Cell returned no explicit error");
57+
$fh = get_file($THISCELL_FILE);
58+
ok(defined($fh), $THISCELL_FILE." was opened");
59+
is("$fh", $THISCELL_EXPECTED, $THISCELL_FILE." (initial content wrong) has expected contents");
60+
$fh->close();
61+
62+
# Initial ThisCell content matching expected one
63+
set_file_contents($THISCELL_FILE,$THISCELL_EXPECTED);
64+
$status = $comp->Configure_Cell($config_explicit);
65+
ok(!$status, "Configure_Cell returned no explicit error");
66+
$fh = get_file($THISCELL_FILE);
67+
ok(defined($fh), $THISCELL_FILE." was opened");
68+
is("$fh", $THISCELL_EXPECTED, $THISCELL_FILE." (initial content ok) has expected contents");
69+
$fh->close();
70+
71+
Test::NoWarnings::had_no_warnings();
72+

0 commit comments

Comments
 (0)