Amazon-DynamoDB

 view release on metacpan or  search on metacpan

t/30-nahttp.t  view on Meta::CPAN

#!perl
use strict;
use warnings;
use lib ('lib', './t');
use Test::Most;
use TestSettings;
use String::Random;
use Data::Dumper;
use IO::Async::Loop;
use IO::Async::SSL;

unless ( $ENV{'AMAZON_DYNAMODB_EXPENSIVE_TESTS'} ) {
    plan skip_all => 'Testing this module for real costs money.';
} else {
    plan tests => 7;
}


# Net::Async::HTTP requires the use of an event loop

my $loop = IO::Async::Loop->new();

my $ddb = TestSettings::get_ddb(loop => $loop,
                                implementation => 'Amazon::DynamoDB::NaHTTP');

my $table_name = TestSettings::random_table_name();

{
    my @all_tables;    

    my $each = $ddb->each_table(
        sub {
            my $table_name =shift;
            push @all_tables, $table_name;
        });
    $loop->await($each);
    ok($each->is_done, "List tables is complete");
    bail_on_fail;
    is(scalar(grep { $_ eq $table_name } @all_tables), 0, "New table to create does not exist");
}

my $create = $ddb->create_table(TableName => $table_name,
                                ReadCapacityUnits => 2,
                                WriteCapacityUnits => 2,
                                AttributeDefinitions => {
                                    user_id => 'N',
                                },
                                KeySchema => ['user_id'],
                            );
$loop->await($create);
ok($create->is_done, "Create request was completed");

my $wait = $ddb->wait_for_table_status(TableName => $table_name);
$loop->await($wait);
ok($wait->is_done, "Created table is ready");

{
    my @all_tables;    
    my $each = $ddb->each_table(
        sub {
            my $table_name =shift;
            push @all_tables, $table_name;
        });
    $loop->await($each);



( run in 0.956 second using v1.01-cache-2.11-cpan-39bf76dae61 )