The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# -*- cperl -*-


use ExtUtils::testlib;
use Test::More;
use Test::Exception;
use Test::Warn;
use Test::Differences;
use Test::Memory::Cycle;
use Config::Model;
use Config::Model::Tester::Setup qw/init_test/;

use strict;
use warnings;

my ($model, $trace) = init_test();

# minimal set up to get things working
$model->create_config_class(
    name    => "Master",
    element => [
        plain_hash => {
            type       => 'hash',
            status     => 'deprecated',
            index_type => 'string',
            ordered    => 1,
            cargo      => {
                type       => 'leaf',
                value_type => 'string'
            },
        },
        hash_with_data_migration => {
            type                => 'hash',
            index_type          => 'string',
            migrate_values_from => '- plain_hash',
            ordered             => 1,
            cargo               => {
                type       => 'leaf',
                value_type => 'string',
            },
        },
        hash2_with_data_migration => {
            type                => 'hash',
            index_type          => 'string',
            migrate_values_from => '- hash_with_data_migration',
            ordered             => 1,
            cargo               => {
                type       => 'leaf',
                value_type => 'string',
            },
        },
    ] );

ok( 1, "config classes created" );

my $inst = $model->instance(
    root_class_name => 'Master',
    instance_name   => 'test1'
);
ok( $inst, "created dummy instance" );

my $root = $inst->config_root;

# emulate start of file read
$inst->initial_load_start;

# emulate config file load
$root->load( step => "plain_hash:k1=foo plain_hash:k2=bar", check => 'no' );
ok( 1, "set up plain hash" );

my $hwdm = $root->fetch_element('hash_with_data_migration');
ok( $hwdm, "create hash_with_data_migration element" );
$hwdm->fetch_with_id('new')->store('baz0');

# check data prior to migration
eq_or_diff( [ $hwdm->fetch_all_values ], ['baz0'], "hash data before migration" );

# emulate end of file read
$inst->initial_load_stop;

# test data migration stuff

eq_or_diff( [ $hwdm->fetch_all_indexes ], [qw/new k1 k2/],    "hash keys after migration" );
eq_or_diff( [ $hwdm->fetch_all_values ],  [qw/baz0 foo bar/], "hash data after migration " );

my $hwdm2 = $root->fetch_element('hash2_with_data_migration');
ok( $hwdm2, "create hash2_with_data_migration element" );
eq_or_diff( [ $hwdm2->fetch_all_values ], [qw/baz0 foo bar/], "hash data after 2nd migration " );

memory_cycle_ok( $model, "test memory cycles" );

done_testing;