Algorithm-QuadTree

 view release on metacpan or  search on metacpan

t/03-delete.t  view on Meta::CPAN

use strict;
use warnings;

BEGIN { $ENV{ALGORITHM_QUADTREE_BACKEND} = 'Algorithm::QuadTree::PP'; }

use Test::More;
use Algorithm::QuadTree;

use lib 't/lib';
use QuadTreeUtils;

my $qt = Algorithm::QuadTree->new(
	-xmin  => 0,
	-xmax  => AREA_SIZE,
	-ymin  => 0,
	-ymax  => AREA_SIZE,
	-depth => $QuadTreeUtils::DEPTH
);

# add two objects per zone
init_zones $qt, 2;

# start testing

subtest 'we should be able to delete a node' => sub {
	# delete somewhere in the middle
	$qt->delete(object_name(2, 2));

	# get all objects
	my $list = $qt->getEnclosedObjects(
		0,
		0,
		AREA_SIZE,
		AREA_SIZE,
	);

	is scalar @$list, zones_per_dimension() ** 2 * 2 - 1, 'object count ok';
};

subtest 'we should be able to clear a tree' => sub {
	$qt->clear;

	# get all objects
	my $list = $qt->getEnclosedObjects(
		0,
		0,
		AREA_SIZE,
		AREA_SIZE,
	);

	is scalar @$list, 0, 'object count ok';
};

done_testing;



( run in 0.688 second using v1.01-cache-2.11-cpan-df04353d9ac )