1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
use Test::More;
use Test::Deep;
use Test::Exception;
use lib 't/lib';
use strict;
use warnings;
$ENV{ES_VERSION} = '1_0';
our $es = do "es_sync.pl" or die( $@ || $! );
$es->indices->delete( index => '_all', ignore => 404 );
do "index_test_data.pl" or die( $@ || $! );
my $b;
# Reindex to new index and new type
$b = $es->bulk_helper(
index => 'test2',
type => 'test2'
);
$b->reindex( source => { index => 'test' } );
$es->indices->refresh;
is $es->count(
index => 'test2',
type => 'test2'
)->{count}, 100,
'Reindexed to new index and type';
# Reindex to same index
$b = $es->bulk_helper();
$b->reindex( source => { index => 'test' } );
$es->indices->refresh;
is $es->count(
index => 'test',
type => 'test'
)->{count}, 100,
'Reindexed to same index';
is $es->get( index => 'test', type => 'test', id => 1 )->{_version}, 2,
"Reindexed to same index - version updated";
# Reindex from generic source
my @docs = map {
{ _index => 'foo', _type => 'bar', _id => $_, _source => { num => $_ } }
} ( 1 .. 10 );
$es->indices->delete( index => 'test2' );
$b = $es->bulk_helper( index => 'test2' );
$b->reindex( index => 'test2', source => sub { shift @docs } );
$es->indices->refresh;
is $es->count(
index => 'test2',
type => 'bar'
)->{count}, 10,
'Reindexed from generic source';
# Reindex with transform
$es->indices->delete( index => 'test2' );
$b = $es->bulk_helper( index => 'test2' );
$b->reindex(
source => { index => 'test' },
transform => sub {
my $doc = shift;
return if $doc->{_source}{color} eq 'red';
$doc->{_source}{transformed} = 1;
return $doc;
}
);
$es->indices->refresh;
is $es->count(
index => 'test2',
type => 'test'
)->{count}, 50,
'Transfrom - removed docs';
my $query = {
query => {
bool => {
must => [
{ term => { color => 'green' } },
{ term => { transformed => 1 } }
]
}
}
};
is $es->count(
index => 'test2',
type => 'test',
body => $query,
)->{count}, 50,
'Transfrom - transformed docs';
# Reindex with parent & routing
$es->indices->delete( index => '_all', ignore => 404 );
for ( 'test', 'test2' ) {
$es->indices->create(
index => $_,
body => { mappings => { test => { _parent => { type => 'foo' } } } }
);
}
$es->cluster->health( wait_for_status => 'yellow' );
for ( 1 .. 5 ) {
$es->index(
index => 'test',
type => 'test',
version_type => 'external',
version => $_,
id => $_,
parent => 1,
routing => 2,
body => { count => $_ },
);
}
$es->indices->refresh;
$b = $es->bulk_helper( index => 'test2' );
ok $b->reindex(
version_type => 'external',
source => {
index => 'test',
version => 1,
fields => [ '_parent', '_routing', '_source' ]
}
),
"Advanced";
$es->indices->refresh;
my $results = $es->search(
index => 'test2',
type => 'test',
sort => 'count',
fields => [ '_parent', '_routing' ],
version => 1,
)->{hits}{hits};
is $results->[3]{fields}{_parent}, 1, "Advanced - parent";
is $results->[3]{fields}{_routing}, 2, "Advanced - routing";
is $results->[3]{_version}, 4, "Advanced - version";
done_testing;
|