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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
#
# Copyright 2009-2013 MongoDB, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
use strict;
use warnings;
use Test::More 0.96;
use Test::Deep qw/!blessed/;
use Test::Fatal;
use utf8;
use JSON::MaybeXS;
use MongoDB;
use lib "t/lib";
use MongoDBTest qw/skip_unless_mongod build_client get_test_db server_version server_type/;
skip_unless_mongod();
my $conn = build_client();
my $testdb = get_test_db($conn);
my $server_version = server_version($conn);
my $server_type = server_type($conn);
my $coll = $testdb->get_collection("foo");
# basic indexes
subtest 'basic indexes' => sub {
$coll->drop;
$coll->drop;
for ( my $i = 0; $i < 10; $i++ ) {
$coll->insert_one( { 'x' => $i, 'z' => 3, 'w' => 4 } );
$coll->insert_one( { 'x' => $i, 'y' => 2, 'z' => 3, 'w' => 4 } );
}
$coll->drop;
ok( !$coll->get_indexes, 'no indexes yet' );
my $indexes = Tie::IxHash->new( foo => 1, bar => 1, baz => 1 );
ok( $coll->ensure_index($indexes) );
my $err = $testdb->last_error;
is( $err->{ok}, 1 );
is( $err->{err}, undef );
$indexes = Tie::IxHash->new( foo => 1, bar => 1 );
ok( $coll->ensure_index($indexes) );
$coll->insert_one( { foo => 1, bar => 1, baz => 1, boo => 1 } );
$coll->insert_one( { foo => 1, bar => 1, baz => 1, boo => 2 } );
is( $coll->count, 2 );
ok( $coll->ensure_index( { boo => 1 }, { unique => 1 } ) );
eval { $coll->insert_one( { foo => 3, bar => 3, baz => 3, boo => 2 } ) };
is( $coll->count, 2, 'unique index' );
my @indexes = $coll->get_indexes;
is( scalar @indexes, 4, 'three custom indexes and the default _id_ index' );
my ($foobarbaz) = grep { $_->{name} eq 'foo_1_bar_1_baz_1' } @indexes;
is_deeply( [ sort keys %{ $foobarbaz->{key} } ], [ sort qw/foo bar baz/ ], );
my ($foobar) = grep { $_->{name} eq 'foo_1_bar_1' } @indexes;
is_deeply( [ sort keys %{ $foobar->{key} } ], [ sort qw/foo bar/ ], );
$coll->drop_index('foo_1_bar_1_baz_1');
@indexes = $coll->get_indexes;
is( scalar @indexes, 3 );
ok( ( !scalar grep { $_->{name} eq 'foo_1_bar_1_baz_1' } @indexes ),
"right index deleted" );
$coll->drop;
ok( !$coll->get_indexes, 'no indexes after dropping' );
# make sure this still works
$coll->ensure_index( { "foo" => 1 } );
@indexes = $coll->get_indexes;
is( scalar @indexes, 2, '1 custom index and the default _id_ index' );
};
# test ensure index with drop_dups
subtest 'drop dups' => sub {
$coll->drop;
$coll->insert_one( { foo => 1, bar => 1, baz => 1, boo => 1 } );
$coll->insert_one( { foo => 1, bar => 1, baz => 1, boo => 2 } );
is( $coll->count, 2 );
eval { $coll->ensure_index( { foo => 1 }, { unique => 1 } ) };
like( $@, qr/E11000/, "got expected error creating unique index with dups" );
# prior to 2.7.5, drop_dups was respected
if ( $server_version < v2.7.5 ) {
ok( $coll->ensure_index( { foo => 1 }, { unique => 1, drop_dups => 1 } ) );
}
};
# test new form of ensure index
subtest 'new form of ensure index' => sub {
$coll->drop;
ok( $coll->ensure_index( { foo => 1, bar => -1, baz => 1 } ) );
ok( $coll->ensure_index( [ foo => 1, bar => 1 ] ) );
$coll->insert_one( { foo => 1, bar => 1, baz => 1, boo => 1 } );
$coll->insert_one( { foo => 1, bar => 1, baz => 1, boo => 2 } );
is( $coll->count, 2 );
# unique index
$coll->ensure_index( { boo => 1 }, { unique => 1 } );
eval { $coll->insert_one( { foo => 3, bar => 3, baz => 3, boo => 2 } ) };
is( $coll->count, 2, 'unique index' );
};
subtest '2d index with options' => sub {
$coll->drop;
$coll->ensure_index( { loc => '2d' }, { bits => 32, sparse => 1 } );
my ($index) = grep { $_->{name} eq 'loc_2d' } $coll->get_indexes;
ok( $index, "created 2d index" );
ok( $index->{sparse}, "sparse option set on index" );
is( $index->{bits}, 32, "bits option set on index" );
};
subtest 'ensure index arbitrary options' => sub {
$coll->ensure_index( { wibble => 1 }, { notReallyAnOption => { foo => 1 } } );
my ($index) = grep { $_->{name} eq 'wibble_1' } $coll->get_indexes;
ok( $index, "created index" );
cmp_deeply(
$index->{notReallyAnOption},
{ foo => 1 },
"arbitrary option set on index"
);
};
subtest "indexes with dots" => sub {
my $ok = $coll->ensure_index({"x.y" => 1}, {"name" => "foo"});
my ($index) = grep { $_->{name} eq 'foo' } $coll->get_indexes;
ok($index);
ok($index->{'key'});
ok($index->{'key'}->{'x.y'});
$coll->drop;
};
subtest 'sparse indexes' => sub {
for (1..10) {
$coll->insert_one({x => $_, y => $_});
$coll->insert_one({x => $_});
}
is($coll->count, 20);
eval { $coll->ensure_index({"y" => 1}, {"unique" => 1, "name" => "foo"}) };
my ($index) = grep { $_->{name} eq 'foo' } $coll->get_indexes;
ok(!$index);
$coll->ensure_index({"y" => 1}, {"unique" => 1, "sparse" => 1, "name" => "foo"});
($index) = grep { $_->{name} eq 'foo' } $coll->get_indexes;
ok($index);
$coll->drop;
};
subtest 'text indices' => sub {
plan skip_all => "text indices won't work with db version $server_version"
unless $server_version >= v2.4.0;
# parameter required only on 2.4; deprecated as of 2.6; removed for 3.4
if ( $server_version < v2.6.0 ) {
my $res = $conn->get_database('admin')->run_command(['getParameter' => 1, 'textSearchEnabled' => 1]);
plan skip_all => "text search not enabled"
if !$res->{'textSearchEnabled'};
}
my $coll = $testdb->get_collection('test_text');
$coll->insert_one({language => 'english', w1 => 'hello', w2 => 'world'}) foreach (1..10);
is($coll->count, 10);
my $res = $coll->ensure_index({'$**' => 'text'}, {
name => 'testTextIndex',
default_language => 'spanish',
language_override => 'language',
weights => { w1 => 5, w2 => 10 }
});
ok($res);
my ($text_index) = grep { $_->{name} eq 'testTextIndex' } $coll->get_indexes;
is($text_index->{'default_language'}, 'spanish', 'default_language option works');
is($text_index->{'language_override'}, 'language', 'language_override option works');
is($text_index->{'weights'}->{'w1'}, 5, 'weights option works 1');
is($text_index->{'weights'}->{'w2'}, 10, 'weights option works 2');
# 2.6 deprecated 'text' command and added '$text' operator; also the
# result format changed.
if ( $server_version >= v2.6.0 ) {
my $n_found =()= $coll->find( { '$text' => { '$search' => 'world' } } )->all;
is( $n_found, 10, "correct number of results found" );
}
else {
my $results =
$testdb->run_command( [ 'text' => 'test_text', 'search' => 'world' ] )->{results};
is( scalar(@$results), 10, "correct number of results found" );
}
$coll->drop;
};
done_testing;
|