App-news

 view release on metacpan or  search on metacpan

t/10-groups.t  view on Meta::CPAN

# Copyright (C) 2021–2023  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 Test::Mojo;

our $port;
require './t/test.pl';

diag "Starting News Client on $port";
$ENV{NNTPSERVER} = "localhost:$port";

my $t = Test::Mojo->new(Mojo::File->new('script/news'));

$t->get_ok('/')->status_is(302);
my $location = $t->tx->res->headers->header('Location');
like($location, qr(^/news$), "Redirect");

$t->get_ok('/news')->status_is(200)
    ->text_like('a[href="/news/group/local.test#2"]', qr/local\.test/)
    ->text_like('td.status', qr/OK/);

$t->get_ok('/news/group/local.test#2')->status_is(200)
    ->text_like('td.day', qr/1998-10-06/)
    ->text_like('tr:nth-child(3) td.from', qr/Bard/)
    ->text_like('a[href="/news/article/local.test/1"]', qr/4:38/)
    ->text_like('tr:nth-child(4) td.from', qr/Poet/)
    ->text_like('a[href="/news/article/local.test/2"]', qr/5:38/);

$t->get_ok('/news/article/local.test/1')->status_is(200)
    ->text_like('pre', qr/Church bells are ringing/);

# warn $t->tx->res->body;
done_testing;



( run in 2.332 seconds using v1.01-cache-2.11-cpan-364913b4093 )