use v6;

use Test;

# See L<"http://use.perl.org/~autrijus/journal/25337"> and
# L<"http://www.nntp.perl.org/group/perl.perl6.language/22532">.

plan 22;

# Refs to "non-objects" (in this case, a number) should not autoderef.
{
  my $x = 3;
  my $y = \$x;

  ok !$y.isa("Int"), "refs to 'non-objects' should not autoderef", :todo<bug>;
  dies_ok { +$y },   "'real refs' don't numify", :todo<bug>;
  dies_ok { ~$y },   "'real refs' don't stringify", :todo<bug>;

  $x = undef;
  ok ?$y, "'real refs' always booleanify to true";
}

# Refs to "objects" (in this case, an array) should autoderef.
{
  my @x = (1,2,3);
  my $y = \@x;

  ok $y.isa("Array"), "refs to non-'non-objects' should autoderef";
  is +$y, 3,          "refs to non-'non-objects' should numify";
  is ~$y, "1 2 3",    "refs to non-'non-objects' should stringify";
  ok ?$y,             "refs to non-'non-objects' should booleanify (1)";

  @x = ();
  ok !?$y,            "refs to non-'non-objects' should booleanify (2)";
}

# Refs to "objects" (in this case, a hash) should autoderef.
{
  my %x = (:a(1), :b(2), :c(3));
  my $y = \%x;

  ok $y.isa("Hash"), "refs to non-'non-objects' should autoderef";
  is +$y, 3,         "refs to non-'non-objects' should numify";
  ok ~$y,            "refs to non-'non-objects' should stringify";
  ok ?$y,            "refs to non-'non-objects' should booleanify (1)";

  %x = ();
  ok !?$y,           "refs to non-'non-objects' should booleanify (2)";
}

# Refs to "non-objects" (in this case, a ref) should not autoderef.
{
  my @x = (1,2,3);
  my $y = \@x;
  my $z = \$y;

  ok !$z.isa("Array"), "refs to Refs should not autoderef", :todo<bug>;
  dies_ok { +$z },     "refs to Refs don't numify (1)", :todo<bug>;
  dies_ok { ~$z },     "refs to Refs don't stringify (1)", :todo<bug>;

  @x = ();
  ok ?$z, "refs to Refs always booleanify to true (1)", :todo<bug>;
}

# Refs to "non-objects" (in this case, a subref) should not autoderef.
{
  my $x = { 42 };
  my $y = \$x;

  ok !$y.isa("Code"), "refs to subrefs should not autoderef", :todo<bug>;
  dies_ok { +$y },    "'real refs' don't numify (2)";
  dies_ok { ~$y },    "'real refs' don't stringify (2)", :todo<bug>;

  $x = undef;
  ok ?$y, "'real refs' always booleanify to true (2)";
}

# vim: ft=perl6