125 lines
3.4 KiB
Python
Executable File
125 lines
3.4 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Copyright 2009 10gen, 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.
|
|
|
|
"""Test runner for the driver tests."""
|
|
|
|
import sys
|
|
import os
|
|
import datetime
|
|
|
|
sys.path[0:0] = [os.path.join(os.getcwd(), "..")]
|
|
from pymongo.connection import Connection
|
|
from pymongo.errors import CollectionInvalid
|
|
from pymongo import OFF, SLOW_ONLY, ALL
|
|
|
|
def test1(db, out):
|
|
for i in range(100):
|
|
db.part1.insert({"x": i})
|
|
|
|
def remove(db, out):
|
|
db.remove1.remove({})
|
|
db.remove2.remove({"a": 3})
|
|
|
|
def find(db, out):
|
|
db.test.insert({"a": 2})
|
|
|
|
def capped(db, out):
|
|
collection = db.create_collection("capped1", {"capped": True, "size": 500})
|
|
collection.insert({"x": 1})
|
|
collection.insert({"x": 2})
|
|
|
|
# TODO ignoring $nExtents for now
|
|
collection2 = db.create_collection("capped2", {"capped": True, "size": 1000})
|
|
str = ""
|
|
for _ in range(100):
|
|
collection2.insert({"dashes": str})
|
|
str += "-"
|
|
|
|
def count1(db, out):
|
|
print >>out, db.test1.find().count()
|
|
print >>out, db.test2.find().count()
|
|
print >>out, db.test3.find({"i": "a"}).count()
|
|
print >>out, db.test3.find({"i": 3}).count()
|
|
print >>out, db.test3.find({"i": {"$gte": 67}}).count()
|
|
|
|
def admin(db, out):
|
|
tester = db.tester
|
|
tester.insert({"test": 1})
|
|
try:
|
|
db.validate_collection(tester)
|
|
print >>out, "true"
|
|
except:
|
|
print >>out, "false"
|
|
|
|
try:
|
|
db.validate_collection("system.users")
|
|
print >>out, "true"
|
|
except:
|
|
print >>out, "false"
|
|
|
|
try:
|
|
db.validate_collection("$")
|
|
print >>out, "true"
|
|
except:
|
|
print >>out, "false"
|
|
|
|
levels = {OFF: "off",
|
|
SLOW_ONLY: "slowOnly",
|
|
ALL: "all"}
|
|
print >>out, levels[db.profiling_level()]
|
|
db.set_profiling_level(OFF)
|
|
print >>out, levels[db.profiling_level()]
|
|
|
|
def dbs(db, out):
|
|
db.dbs_1.save({"foo": "bar"})
|
|
db.dbs_2.save({"psi": "phi"})
|
|
print >>out, db.name()
|
|
for name in [n for n in sorted(db.collection_names()) if n.startswith("dbs")]:
|
|
print >>out, name
|
|
db.drop_collection(db.dbs_1)
|
|
db.create_collection("dbs_3")
|
|
for name in [n for n in sorted(db.collection_names()) if n.startswith("dbs")]:
|
|
print >>out, name
|
|
|
|
def main(test, out_file):
|
|
db = Connection().driver_test_framework
|
|
try:
|
|
test_function = globals()[test]
|
|
except KeyError:
|
|
return
|
|
|
|
f = open(out_file, "w")
|
|
try:
|
|
begin = datetime.datetime.now()
|
|
test_function(db, f)
|
|
end = datetime.datetime.now()
|
|
exit_status = 0
|
|
except:
|
|
begin = None
|
|
begin = None
|
|
exit_status = 1
|
|
|
|
if begin and end:
|
|
f.write("begintime:%s\n" % begin)
|
|
f.write("endtime:%s\n" % end)
|
|
f.write("totaltime:%s\n" % (end - begin))
|
|
f.write("exit_code:%s\n" % exit_status)
|
|
f.close()
|
|
|
|
if __name__ == "__main__":
|
|
main(sys.argv[1], sys.argv[2])
|
|
|