App-Phoebe

 view release on metacpan or  search on metacpan

t/gemini-diagnostics.t  view on Meta::CPAN

# Copyright (C) 2021  Alex Schroeder <alex@gnu.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

use Modern::Perl;
use Test::More;
use Encode qw(decode_utf8);
use utf8; # tests contain UTF-8 characters and it matters

my $msg;
if (not $ENV{TEST_AUTHOR} or $ENV{TEST_AUTHOR} < 2) {
  $msg = 'Diagnostics are an author test that cannot succeed, unfortunately. Set $ENV{TEST_AUTHOR} to "2" to run it anyway.';
}
plan skip_all => $msg if $msg;

our $host = 'localhost';
our $port;

require './t/test.pl';

say "Running gemini-diagnostics $host $port";
open(my $fh, "-|:utf8", "gemini-diagnostics $host $port")
    or plan skip_all => "Cannot run gemini-diagnostics";
diag "A lot of errors at the beginning are OK!";

my $test;
while (<$fh>) {
  $test = $1 if /\[(\w+)\]/;
  next unless m/^ *(x|✓)/;
  ok($1 eq "✓", $test);
}

done_testing();



( run in 0.689 second using v1.01-cache-2.11-cpan-b16cb0d3907 )