we have some trivial cookie tests that work in 5.68 (and many other 
versions previously) but not in 5.71
i didn't see anything relevant in changelog

test code looks like this: ($t is a Test::Mojo instance)

my $domain = 'localhost';
my $value = 'aabbcc123';
$t->ua->cookie_jar->add(
    Mojo::Cookie::Response->new(
        name => 'testCookie',
        value => $value,
        domain => $domain,
        path => '/' 
    )
);

$t->get_ok('/testGetCookie')->content_like(qr|value: $value|,'testGetCookie 
from jar');


the test controller method just returns "value: " and 
$c->cookie('testCookie')  or  'none'. in 5.68 it returns the value, in 5.71 
it returns 'none'. i dumped $c->every_cookie and there are no cookies with 
the correct name. i also tried an all-lowercase cookie name, and tried some 
alternatives to domain => 'localhost' (e.g. the FQDN) with no luck

looks like a problem in the Test::Mojo user agent cookie jar, since i can 
set cookies from other clients, for example 

> curl -b testCookie=xyz http://localhost:3023/testGetCookie
value: xyz

any ideas?
thanks,
jay

-- 
You received this message because you are subscribed to the Google Groups 
"Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/d/optout.

Reply via email to