In some cases the license-identification header was missing, so I added that as well. Replaced the remaining headers that specifically identified "Versions 3.13.7 and higher". Makefiles and the build system were deliberately excluded.
65 lines
2.0 KiB
Prolog
65 lines
2.0 KiB
Prolog
#!/usr/bin/env perl
|
|
######################################################################
|
|
# SPDX-License-Identifier: EPICS
|
|
# EPICS BASE is distributed subject to a Software License Agreement
|
|
# found in file LICENSE that is included with this distribution.
|
|
######################################################################
|
|
|
|
use lib '@TOP@/lib/perl';
|
|
|
|
use Test::More tests => 18;
|
|
|
|
use DBD;
|
|
|
|
my $dbd = DBD->new;
|
|
isa_ok $dbd, 'DBD';
|
|
|
|
is keys %{$dbd->breaktables}, 0, 'No breaktables yet';
|
|
my $brk = DBD::Breaktable->new('Brighton');
|
|
$dbd->add($brk);
|
|
my %brks = %{$dbd->breaktables};
|
|
is_deeply \%brks, {Brighton => $brk}, 'Added breaktable';
|
|
|
|
is keys %{$dbd->drivers}, 0, 'No drivers yet';
|
|
my $drv = DBD::Driver->new('Danforth');
|
|
$dbd->add($drv);
|
|
my %drvs = %{$dbd->drivers};
|
|
is_deeply \%drvs, {Danforth => $drv}, 'Added driver';
|
|
|
|
is keys %{$dbd->functions}, 0, 'No functions yet';
|
|
my $fnc = DBD::Function->new('Frank');
|
|
$dbd->add($fnc);
|
|
my %fncs = %{$dbd->functions};
|
|
is_deeply \%fncs, {Frank => $fnc}, 'Added function';
|
|
|
|
is keys %{$dbd->menus}, 0, 'No menus yet';
|
|
my $menu = DBD::Menu->new('Mango');
|
|
$dbd->add($menu);
|
|
my %menus = %{$dbd->menus};
|
|
is_deeply \%menus, {Mango => $menu}, 'Added menu';
|
|
is $dbd->menu('Mango'), $menu, 'Named menu';
|
|
|
|
is keys %{$dbd->recordtypes}, 0, 'No recordtypes yet';
|
|
my $rtyp = DBD::Recordtype->new('Rita');
|
|
$dbd->add($rtyp);
|
|
my %rtypes = %{$dbd->recordtypes};
|
|
is_deeply \%rtypes, {Rita => $rtyp}, 'Added recordtype';
|
|
is $dbd->recordtype('Rita'), $rtyp, 'Named recordtype';
|
|
|
|
is keys %{$dbd->registrars}, 0, 'No registrars yet';
|
|
my $reg = DBD::Registrar->new('Reggie');
|
|
$dbd->add($reg);
|
|
my %regs = %{$dbd->registrars};
|
|
is_deeply \%regs, {Reggie => $reg}, 'Added registrar';
|
|
|
|
is keys %{$dbd->variables}, 0, 'No variables yet';
|
|
my $ivar = DBD::Variable->new('IntVar');
|
|
my $dvar = DBD::Variable->new('DblVar', 'double');
|
|
$dbd->add($ivar);
|
|
my %vars = %{$dbd->variables};
|
|
is_deeply \%vars, {IntVar => $ivar}, 'First variable';
|
|
$dbd->add($dvar);
|
|
%vars = %{$dbd->variables};
|
|
is_deeply \%vars, {IntVar => $ivar, DblVar => $dvar}, 'Second variable';
|
|
|