Game-TextMapper

 view release on metacpan or  search on metacpan

t/basic.t  view on Meta::CPAN

# Copyright (C) 2021–2022  Alex Schroeder <alex@gnu.org>

# This program is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero 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 Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <https://www.gnu.org/licenses/>.

use Modern::Perl;
use Test::More;
use Test::Mojo;
use utf8;

my $t = Test::Mojo->new('Game::TextMapper');

my $stash;
$t->app->hook(after_dispatch => sub { my $c = shift; $stash = $c->stash });

$t->get_ok('/')
    ->status_is(200)
    ->text_is('h1' => 'Text Mapper')
    ->text_like('textarea[name=map]' => qr/^0101 mountain "mountain"$/m);

my $map = <<EOT;
grass attributes fill="green"
0101 grass "Schröder’s"
url /wiki
EOT

$t->post_ok('/render' => form => {map => $map})
    ->status_is(200)
    ->element_exists('defs g#grass polygon[fill=green]')
    # I don't know how to use a namespace for attributes with Mojo::DOM::CSS
    ->element_exists('g#backgrounds use[x=150.0][y=86.6]')
    ->text_is('g#coordinates text[x=150.0][y=17.3]', "01.01")
    ->element_exists('g#regions polygon#hex0101')
    ->text_is('g#labels g text', "Schröder’s");

# I don't know how to use a namespace for attributes with Mojo::DOM::CSS
like($t->tx->res->body, qr(xlink:href="/wikiSchr%C3%B6der%E2%80%99s"), 'xlink:href for url');

$t->get_ok('/smale/random')
    ->status_is(200)
    ->element_exists('defs g#Keep rect[fill=white]')
    ->element_exists('g#backgrounds use[x=150.0][y=86.6]')
    ->text_is('g#coordinates text[x=150.0][y=17.3]', "01.01")
    ->element_exists('g#regions polygon#hex0101');

$t->get_ok('/alpine/random')
    ->status_is(200)
    ->element_exists('defs g#Keep rect[fill=white]')
    ->element_exists('g#backgrounds use[x=150.0][y=86.6]')
    ->text_is('g#coordinates text[x=150.0][y=17.3]', "01.01")
    ->element_exists('g#regions polygon#hex0101');

$t->get_ok('/alpine/random?type=square')
    ->status_is(200)
    ->element_exists('defs g#Keep rect[fill=white]')
    ->element_exists('g#backgrounds use[x=173.2][y=173.2]')
    ->text_is('g#coordinates text[x=173.2][y=103.9]', "01.01")
    ->element_exists('g#regions rect#square0101');

$t->get_ok('/island/random')
    ->status_is(200)
    ->element_exists('defs g#Keep rect[fill=white]')
    ->element_exists('g#backgrounds use[x=150.0][y=86.6]')
    ->text_is('g#coordinates text[x=150.0][y=17.3]', "01.01")
    ->element_exists('g#regions polygon#hex0101');



( run in 0.569 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )