summaryrefslogtreecommitdiffstats
path: root/config-db/t/29-transaction.t
blob: 1f1566bfd6d706ae5cc07862e8622c75e49fcec7 (plain) (blame)
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
use Test::More qw(no_plan);

use strict;
use warnings;

use lib '/opt/openslx/lib';

# basic init
use OpenSLX::ConfigDB;

my $configDB = OpenSLX::ConfigDB->new;
$configDB->connect();

my @vendorOSes = $configDB->fetchVendorOSByFilter();
my @exports    = $configDB->fetchExportByFilter();
my @systems    = $configDB->fetchSystemByFilter();
my @clients    = $configDB->fetchClientByFilter();
my @groups     = $configDB->fetchGroupByFilter();

ok($configDB->startTransaction(), 'starting a transaction');

ok($configDB->emptyDatabase(), 'emptying the DB');

ok($configDB->rollbackTransaction(), 'rolling back the transaction');

my @vendorOSes2 = $configDB->fetchVendorOSByFilter();
my @exports2    = $configDB->fetchExportByFilter();
my @systems2    = $configDB->fetchSystemByFilter();
my @clients2    = $configDB->fetchClientByFilter();
my @groups2     = $configDB->fetchGroupByFilter();

is( 
    scalar @vendorOSes2, scalar @vendorOSes, "should still have all vendor-OSes"
);
is(scalar @exports2, scalar @exports, "should still have all exports");
is(scalar @systems2, scalar @systems, "should still have all systems");
is(scalar @clients2, scalar @clients, "should still have all clients");
is(scalar @groups2, scalar @groups, "should still have all groups");

ok($configDB->startTransaction(), 'starting a transaction');

ok($configDB->emptyDatabase(), 'emptying the DB');

ok($configDB->commitTransaction(), 'committing the transaction');

my @vendorOSes3 = $configDB->fetchVendorOSByFilter();
my @exports3    = $configDB->fetchExportByFilter();
my @systems3    = $configDB->fetchSystemByFilter();
my @clients3    = $configDB->fetchClientByFilter();
my @groups3     = $configDB->fetchGroupByFilter();

is(scalar @vendorOSes3, 0, "should have no vendor-OSes");
is(scalar @exports3, 0, "should have no exports");
is(scalar @systems3, 1, "should have one system (default)");
is(scalar @clients3, 1, "should have one client (default)");
is(scalar @groups3, 0, "should have no groups");

$configDB->disconnect();