JMAP-Tester
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
lib/JMAP/Tester.pm view on Meta::CPAN
#pod
#pod This method fetches the content at the authentication endpoint and uses it to
#pod configure the tester's target URIs and signing keys.
#pod
#pod This method respects the C<should_return_futures> attributes of the
#pod JMAP::Tester object, and in futures mode will return a future that will resolve
#pod to the Result.
#pod
#pod =cut
sub update_client_session {
my ($self, $auth_uri) = @_;
$auth_uri //= $self->authentication_uri;
my $auth_req = HTTP::Request->new(
GET => $auth_uri,
[
$self->_maybe_auth_header,
'Accept' => 'application/json',
],
);
lib/JMAP/Tester/Response/Sentence/Set.pm view on Meta::CPAN
}
sub created_creation_ids {
keys %{ $_[0]->created }
}
sub created_ids {
map {; $_->{id} } values %{ $_[0]->created }
}
sub updated_ids {
my ($self) = @_;
my $updated = $_[0]{arguments}{updated} // {};
if (ref $updated eq 'ARRAY') {
return @$updated;
}
return keys %$updated;
}
sub updated {
my ($self) = @_;
my $updated = $_[0]{arguments}{updated} // {};
if (ref $updated eq 'ARRAY') {
return { map {; $_ => undef } @$updated };
}
return $updated;
}
sub destroyed_ids { @{ $_[0]{arguments}{destroyed} } }
# Is this the best API to provide? I dunno, maybe. Usage will tell us whether
# it's right. -- rjbs, 2016-04-11
sub not_created_ids { keys %{ $_[0]{arguments}{notCreated} } }
sub not_updated_ids { keys %{ $_[0]{arguments}{notUpdated} } }
sub not_destroyed_ids { keys %{ $_[0]{arguments}{notDestroyed} } }
sub create_errors { $_[0]{arguments}{notCreated} // {} }
sub update_errors { $_[0]{arguments}{notUpdated} // {} }
sub destroy_errors { $_[0]{arguments}{notDestroyed} // {} }
sub assert_no_errors {
my ($self) = @_;
my @errors;
local $Data::Dumper::Terse = 1;
if (keys %{ $self->create_errors }) {
push @errors, "notCreated: " . Data::Dumper::Dumper(
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.543 second using v1.00-cache-2.02-grep-82fe00e-cpan-4673cadbf75 )