summaryrefslogtreecommitdiff
path: root/jstests/core/fts1.js
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2014-01-14 14:09:42 -0500
committerRandolph Tan <randolph@10gen.com>2014-02-28 16:26:33 -0500
commit5595b945603b0712c537787e31e6da661c424fee (patch)
tree90945ee3fe4931032f3af2d397bb755fbf5d30ef /jstests/core/fts1.js
parentcd62080dcb036e83f8fca6d68d9bcab67bf7a21c (diff)
downloadmongo-5595b945603b0712c537787e31e6da661c424fee.tar.gz
SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
Diffstat (limited to 'jstests/core/fts1.js')
-rw-r--r--jstests/core/fts1.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/jstests/core/fts1.js b/jstests/core/fts1.js
new file mode 100644
index 00000000000..6bd138d6c25
--- /dev/null
+++ b/jstests/core/fts1.js
@@ -0,0 +1,29 @@
+load( "jstests/libs/fts.js" );
+
+t = db.text1;
+t.drop();
+
+// this test requires usePowerOf2Sizes to be off
+db.createCollection( t.getName(), {"usePowerOf2Sizes" : false } );
+assert.eq(0, t.stats().userFlags);
+
+assert.eq( [] , queryIDS( t , "az" ) , "A0" );
+
+t.save( { _id : 1 , x : "az b c" } );
+t.save( { _id : 2 , x : "az b" } );
+t.save( { _id : 3 , x : "b c" } );
+t.save( { _id : 4 , x : "b c d" } );
+
+assert.eq(t.stats().userFlags, 0,
+ "A new collection should not have power-of-2 storage allocation strategy");
+t.ensureIndex( { x : "text" } );
+assert.eq(t.stats().userFlags, 1,
+ "Creating a text index on a collection should change the allocation strategy " +
+ "to power-of-2.");
+
+assert.eq( [1,2,3,4] , queryIDS( t , "c az" ) , "A1" );
+assert.eq( [4] , queryIDS( t , "d" ) , "A2" );
+
+idx = db.system.indexes.findOne( { ns: t.getFullName(), "weights.x" : 1 } )
+assert( idx.v >= 1, tojson( idx ) )
+assert( idx.textIndexVersion >= 1, tojson( idx ) )