Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

use lib "t/testlib";
use strict;
use SPVM 'TestCase::Array';
# Start objects count
my $start_memory_blocks_count = SPVM::get_memory_blocks_count();
# Fat camma
{
ok(SPVM::TestCase::Array->array_init_fatcamma);
}
# Array
{
ok(SPVM::TestCase::Array->array());
ok(SPVM::TestCase::Array->array_store_undef());
}
# Array length
{
ok(SPVM::TestCase::Array->array_length_atmark());
ok(SPVM::TestCase::Array->array_length_atmark_brace());
ok(SPVM::TestCase::Array->array_length_scalar_atmark());
ok(SPVM::TestCase::Array->array_length_scalar_atmark_brace());
ok(SPVM::TestCase::Array->array_length_undef());
}
# [] Array initialization
{
ok(SPVM::TestCase::Array->array_init_empty());
ok(SPVM::TestCase::Array->array_init_byte());
ok(SPVM::TestCase::Array->array_init_short());
ok(SPVM::TestCase::Array->array_init_int());
ok(SPVM::TestCase::Array->array_init_long());
ok(SPVM::TestCase::Array->array_init_float());
ok(SPVM::TestCase::Array->array_init_double());
ok(SPVM::TestCase::Array->array_init_object());
}
# {} Array initialization
{
ok(SPVM::TestCase::Array->array_init_key_values_empty());
ok(SPVM::TestCase::Array->array_init_key_values());
}
# Array default
{
ok(SPVM::TestCase::Array->array_default_zero_memory_pool());
ok(SPVM::TestCase::Array->array_default_zero_not_memory_pool());
}
# array - set and get array element, first element
{
my $element = SPVM::TestCase::Array->array_set_and_get_array_element_first();
is($element, 345);
}
# array - set and get array element, last element
{
my $element = SPVM::TestCase::Array->array_set_and_get_array_element_last();
is($element, 298);
}
# array - culcurate sum by for
{
my $total = SPVM::TestCase::Array->array_culcurate_sum_by_for();
is($total, 6);
}
# Clear exception
SPVM::set_exception(undef);
# All object is freed
my $end_memory_blocks_count = SPVM::get_memory_blocks_count();
is($end_memory_blocks_count, $start_memory_blocks_count);
done_testing;