-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Add test for Bitdefender AV inventory support on linux after PR #…
…472 Updated Changes
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#!/usr/bin/perl | ||
|
||
use strict; | ||
use warnings; | ||
use lib 't/lib'; | ||
|
||
use Test::Deep; | ||
use Test::Exception; | ||
use Test::More; | ||
use Test::NoWarnings; | ||
|
||
use GLPI::Test::Inventory; | ||
use GLPI::Agent::Task::Inventory::Linux::AntiVirus::Bitdefender; | ||
|
||
my %av_tests = ( | ||
'bduitool-7.0.3.2239' => { | ||
COMPANY => "Bitdefender", | ||
NAME => "Bitdefender Endpoint Security Tools (BEST) for Linux", | ||
ENABLED => 1, | ||
UPTODATE => 1, | ||
VERSION => "7.0.3.2239", | ||
BASE_VERSION => "7.95171", | ||
BASE_CREATION => "2023-08-24", | ||
}, | ||
); | ||
|
||
plan tests => | ||
(2 * scalar keys %av_tests) + | ||
1; | ||
|
||
my $inventory = GLPI::Test::Inventory->new(); | ||
|
||
foreach my $test (keys %av_tests) { | ||
my $file = "resources/linux/antivirus/$test"; | ||
my $antivirus = GLPI::Agent::Task::Inventory::Linux::AntiVirus::Bitdefender::_getBitdefenderInfo(file => $file); | ||
cmp_deeply($antivirus, $av_tests{$test}, "$test: parsing"); | ||
lives_ok { | ||
$inventory->addEntry(section => 'ANTIVIRUS', entry => $antivirus); | ||
} "$test: registering"; | ||
} |