The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use 5.12.0;
use warnings;

use Test::More;
use Test::Fatal;
use Try::Tiny;

use lib 't/lib';
use Test::TagHive;

sub _init_taghive {
  new_taghive;

  taghive->add_tag('fauxbox.type:by-seat.seats:17');
  taghive->add_tag('fauxbox.type:by-seat.aeron');
  taghive->add_tag('fauxbox.type:by-seat.xyzzy');
}

subtest "leaf deletion" => sub {
  _init_taghive;

  taghive->delete_tag('fauxbox.type:by-seat.xyzzy');

  has_tag('fauxbox.type:by-seat');
  has_tag('fauxbox.type:by-seat.aeron');
  has_tag('fauxbox.type:by-seat.seats:17');
  hasnt_tag('fauxbox.type:by-seat.xyzzy');
};

subtest "parent deletion" => sub {
  _init_taghive;

  taghive->delete_tag('fauxbox.type:by-seat');

  has_tag('fauxbox');
  hasnt_tag('fauxbox.type:by-seat');
  hasnt_tag('fauxbox.type:by-seat.aeron');
  hasnt_tag('fauxbox.type:by-seat.seats:17');
  hasnt_tag('fauxbox.type:by-seat.xyzzy');
};

subtest "bogus parent deletion" => sub {
  _init_taghive;

  taghive->delete_tag('fauxbox:foo');

  has_tag('fauxbox');
  has_tag('fauxbox.type:by-seat');
  has_tag('fauxbox.type:by-seat.aeron');
  has_tag('fauxbox.type:by-seat.seats:17');
  has_tag('fauxbox.type:by-seat.xyzzy');
};

done_testing;