############################## # # NodeValue.t # # Before `make install' is performed this script should be runnable with # `make test'. After `make install' it should work as `perl NodeValue.t` ############################## # C O P Y R I G H T N O T I C E # Copyright (c) 2001-2006 by: # * The MicroArray Gene Expression Database Society (MGED) # # Permission is hereby granted, free of charge, to any person # obtaining a copy of this software and associated documentation files # (the "Software"), to deal in the Software without restriction, # including without limitation the rights to use, copy, modify, merge, # publish, distribute, sublicense, and/or sell copies of the Software, # and to permit persons to whom the Software is furnished to do so, # subject to the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. use Carp; # use blib; use Test::More tests => 76; use strict; use Bio::MAGE; use Bio::MAGE::Association; BEGIN { use_ok('Bio::MAGE::HigherLevelAnalysis::NodeValue') }; use Bio::MAGE::NameValueType; use Bio::MAGE::Description::OntologyEntry; # we test the new() method my $nodevalue; { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; $nodevalue = Bio::MAGE::HigherLevelAnalysis::NodeValue->new(); } isa_ok($nodevalue, 'Bio::MAGE::HigherLevelAnalysis::NodeValue'); # test the package_name class method is($nodevalue->package_name(), q[HigherLevelAnalysis], 'package'); # test the class_name class method is($nodevalue->class_name(), q[Bio::MAGE::HigherLevelAnalysis::NodeValue], 'class_name'); # set the attribute values in the call to new() { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; $nodevalue = Bio::MAGE::HigherLevelAnalysis::NodeValue->new(value => '1', name => '2'); } # # testing attribute value # # test attribute values can be set in new() is($nodevalue->getValue(), '1', 'value new'); # test getter/setter $nodevalue->setValue('1'); is($nodevalue->getValue(), '1', 'value getter/setter'); # test getter throws exception with argument eval {$nodevalue->getValue(1)}; ok($@, 'value getter throws exception with argument'); # test setter throws exception with no argument eval {$nodevalue->setValue()}; ok($@, 'value setter throws exception with no argument'); # test setter throws exception with too many argument eval {$nodevalue->setValue('1', '1')}; ok($@, 'value setter throws exception with too many argument'); # test setter accepts undef eval {$nodevalue->setValue(undef)}; ok((!$@ and not defined $nodevalue->getValue()), 'value setter accepts undef'); # # testing attribute name # # test attribute values can be set in new() is($nodevalue->getName(), '2', 'name new'); # test getter/setter $nodevalue->setName('2'); is($nodevalue->getName(), '2', 'name getter/setter'); # test getter throws exception with argument eval {$nodevalue->getName(1)}; ok($@, 'name getter throws exception with argument'); # test setter throws exception with no argument eval {$nodevalue->setName()}; ok($@, 'name setter throws exception with no argument'); # test setter throws exception with too many argument eval {$nodevalue->setName('2', '2')}; ok($@, 'name setter throws exception with too many argument'); # test setter accepts undef eval {$nodevalue->setName(undef)}; ok((!$@ and not defined $nodevalue->getName()), 'name setter accepts undef'); # retrieve the list of association meta-data my %assns = Bio::MAGE::HigherLevelAnalysis::NodeValue->associations(); # set the association values in the call to new() { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; $nodevalue = Bio::MAGE::HigherLevelAnalysis::NodeValue->new(dataType => Bio::MAGE::Description::OntologyEntry->new(), scale => Bio::MAGE::Description::OntologyEntry->new(), type => Bio::MAGE::Description::OntologyEntry->new(), propertySets => [Bio::MAGE::NameValueType->new()]); } my ($end, $assn); # testing association dataType my $datatype_assn; { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; $datatype_assn = Bio::MAGE::Description::OntologyEntry->new(); } isa_ok($nodevalue->getDataType, q[Bio::MAGE::Description::OntologyEntry]); is($nodevalue->setDataType($datatype_assn), $datatype_assn, 'setDataType returns value'); ok($nodevalue->getDataType() == $datatype_assn, 'getDataType fetches correct value'); # test setDataType throws exception with bad argument eval {$nodevalue->setDataType(1)}; ok($@, 'setDataType throws exception with bad argument'); # test getDataType throws exception with argument eval {$nodevalue->getDataType(1)}; ok($@, 'getDataType throws exception with argument'); # test setDataType throws exception with no argument eval {$nodevalue->setDataType()}; ok($@, 'setDataType throws exception with no argument'); # test setDataType throws exception with too many argument eval {$nodevalue->setDataType(1,2)}; ok($@, 'setDataType throws exception with too many argument'); # test setDataType accepts undef eval {$nodevalue->setDataType(undef)}; ok((!$@ and not defined $nodevalue->getDataType()), 'setDataType accepts undef'); # test the meta-data for the assoication $assn = $assns{dataType}; isa_ok($assn, 'Bio::MAGE::Association'); $end = $assn->other(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->rank(), and $end->rank(), and defined $end->ordered(), and ($end->ordered() == 0 or $end->ordered() == 1), and defined $end->class_name(), and $end->class_name(), and defined $end->name(), and $end->name()), 'dataType->other() is a valid Bio::MAGE::Association::End' ); $end = $assn->self(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->class_name(), and $end->class_name()), 'dataType->self() is a valid Bio::MAGE::Association::End' ); # testing association scale my $scale_assn; { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; $scale_assn = Bio::MAGE::Description::OntologyEntry->new(); } isa_ok($nodevalue->getScale, q[Bio::MAGE::Description::OntologyEntry]); is($nodevalue->setScale($scale_assn), $scale_assn, 'setScale returns value'); ok($nodevalue->getScale() == $scale_assn, 'getScale fetches correct value'); # test setScale throws exception with bad argument eval {$nodevalue->setScale(1)}; ok($@, 'setScale throws exception with bad argument'); # test getScale throws exception with argument eval {$nodevalue->getScale(1)}; ok($@, 'getScale throws exception with argument'); # test setScale throws exception with no argument eval {$nodevalue->setScale()}; ok($@, 'setScale throws exception with no argument'); # test setScale throws exception with too many argument eval {$nodevalue->setScale(1,2)}; ok($@, 'setScale throws exception with too many argument'); # test setScale accepts undef eval {$nodevalue->setScale(undef)}; ok((!$@ and not defined $nodevalue->getScale()), 'setScale accepts undef'); # test the meta-data for the assoication $assn = $assns{scale}; isa_ok($assn, 'Bio::MAGE::Association'); $end = $assn->other(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->rank(), and $end->rank(), and defined $end->ordered(), and ($end->ordered() == 0 or $end->ordered() == 1), and defined $end->class_name(), and $end->class_name(), and defined $end->name(), and $end->name()), 'scale->other() is a valid Bio::MAGE::Association::End' ); $end = $assn->self(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->class_name(), and $end->class_name()), 'scale->self() is a valid Bio::MAGE::Association::End' ); # testing association type my $type_assn; { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; $type_assn = Bio::MAGE::Description::OntologyEntry->new(); } isa_ok($nodevalue->getType, q[Bio::MAGE::Description::OntologyEntry]); is($nodevalue->setType($type_assn), $type_assn, 'setType returns value'); ok($nodevalue->getType() == $type_assn, 'getType fetches correct value'); # test setType throws exception with bad argument eval {$nodevalue->setType(1)}; ok($@, 'setType throws exception with bad argument'); # test getType throws exception with argument eval {$nodevalue->getType(1)}; ok($@, 'getType throws exception with argument'); # test setType throws exception with no argument eval {$nodevalue->setType()}; ok($@, 'setType throws exception with no argument'); # test setType throws exception with too many argument eval {$nodevalue->setType(1,2)}; ok($@, 'setType throws exception with too many argument'); # test setType accepts undef eval {$nodevalue->setType(undef)}; ok((!$@ and not defined $nodevalue->getType()), 'setType accepts undef'); # test the meta-data for the assoication $assn = $assns{type}; isa_ok($assn, 'Bio::MAGE::Association'); $end = $assn->other(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->rank(), and $end->rank(), and defined $end->ordered(), and ($end->ordered() == 0 or $end->ordered() == 1), and defined $end->class_name(), and $end->class_name(), and defined $end->name(), and $end->name()), 'type->other() is a valid Bio::MAGE::Association::End' ); $end = $assn->self(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->class_name(), and $end->class_name()), 'type->self() is a valid Bio::MAGE::Association::End' ); # testing association propertySets my $propertysets_assn; { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; $propertysets_assn = Bio::MAGE::NameValueType->new(); } ok((UNIVERSAL::isa($nodevalue->getPropertySets,'ARRAY') and scalar @{$nodevalue->getPropertySets} == 1 and UNIVERSAL::isa($nodevalue->getPropertySets->[0], q[Bio::MAGE::NameValueType])), 'propertySets set in new()'); ok(eq_array($nodevalue->setPropertySets([$propertysets_assn]), [$propertysets_assn]), 'setPropertySets returns correct value'); ok((UNIVERSAL::isa($nodevalue->getPropertySets,'ARRAY') and scalar @{$nodevalue->getPropertySets} == 1 and $nodevalue->getPropertySets->[0] == $propertysets_assn), 'getPropertySets fetches correct value'); is($nodevalue->addPropertySets($propertysets_assn), 2, 'addPropertySets returns number of items in list'); ok((UNIVERSAL::isa($nodevalue->getPropertySets,'ARRAY') and scalar @{$nodevalue->getPropertySets} == 2 and $nodevalue->getPropertySets->[0] == $propertysets_assn and $nodevalue->getPropertySets->[1] == $propertysets_assn), 'addPropertySets adds correct value'); # test setPropertySets throws exception with non-array argument eval {$nodevalue->setPropertySets(1)}; ok($@, 'setPropertySets throws exception with non-array argument'); # test setPropertySets throws exception with bad argument array eval {$nodevalue->setPropertySets([1])}; ok($@, 'setPropertySets throws exception with bad argument array'); # test addPropertySets throws exception with no arguments eval {$nodevalue->addPropertySets()}; ok($@, 'addPropertySets throws exception with no arguments'); # test addPropertySets throws exception with bad argument eval {$nodevalue->addPropertySets(1)}; ok($@, 'addPropertySets throws exception with bad array'); # test setPropertySets accepts empty array ref eval {$nodevalue->setPropertySets([])}; ok((!$@ and defined $nodevalue->getPropertySets() and UNIVERSAL::isa($nodevalue->getPropertySets, 'ARRAY') and scalar @{$nodevalue->getPropertySets} == 0), 'setPropertySets accepts empty array ref'); # test getPropertySets throws exception with argument eval {$nodevalue->getPropertySets(1)}; ok($@, 'getPropertySets throws exception with argument'); # test setPropertySets throws exception with no argument eval {$nodevalue->setPropertySets()}; ok($@, 'setPropertySets throws exception with no argument'); # test setPropertySets throws exception with too many argument eval {$nodevalue->setPropertySets(1,2)}; ok($@, 'setPropertySets throws exception with too many argument'); # test setPropertySets accepts undef eval {$nodevalue->setPropertySets(undef)}; ok((!$@ and not defined $nodevalue->getPropertySets()), 'setPropertySets accepts undef'); # test the meta-data for the assoication $assn = $assns{propertySets}; isa_ok($assn, 'Bio::MAGE::Association'); $end = $assn->other(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->rank(), and $end->rank(), and defined $end->ordered(), and ($end->ordered() == 0 or $end->ordered() == 1), and defined $end->class_name(), and $end->class_name(), and defined $end->name(), and $end->name()), 'propertySets->other() is a valid Bio::MAGE::Association::End' ); $end = $assn->self(); isa_ok($end, 'Bio::MAGE::Association::End'); ok((defined $end and defined $end->documentation(), and defined $end->cardinality(), and grep {$_ eq $end->cardinality} ('0..1','1','1..N','0..N'), and defined $end->is_ref(), and ($end->is_ref() == 0 or $end->is_ref() == 1), and defined $end->class_name(), and $end->class_name()), 'propertySets->self() is a valid Bio::MAGE::Association::End' ); my $extendable; { # silence the abstract class warnings local $SIG{__WARN__} = sub {'IGNORE'}; # create a superclass $extendable = Bio::MAGE::Extendable->new(); } # testing superclass Extendable isa_ok($extendable, q[Bio::MAGE::Extendable]); isa_ok($nodevalue, q[Bio::MAGE::Extendable]);