我有一个使用 mongodb 的模块,我正在为它编写一个集成测试。我的测试基于此处的示例。
我看到的错误是OperationFailure: command SON([('listDatabases', 1)]) failed: need to login
当我打电话时conn.database_names()
问题是我不确定如何登录。我尝试将 --username 和 --password 参数添加到 subprocess.Popen,但没有成功,并且 pymongo.Connection 对象没有身份验证方法,尽管 pymongo 数据库对象有。
有没有一种方法可以在我从 Popen 启动 mongo 时进行身份验证,或者重新构建它以便我可以访问数据库对象?
class MongoTemporaryInstance(object):
_instance = None
@classmethod
def get_instance(cls):
if cls._instance is None:
cls._instance = cls()
atexit.register(cls._instance.shutdown)
return cls._instance
def __init__(self):
self._tmpdir = tempfile.mkdtemp()
self._process = subprocess.Popen(['mongod', '--bind_ip', 'localhost',
'--port', str(MONGODB_TEST_PORT),
'--dbpath', self._tmpdir,
'--nojournal', '--nohttpinterface',
'--noauth', '--smallfiles',
'--syncdelay', '0',
'--maxConns', '10',
'--nssize', '1', ],
stdout=open(os.devnull, 'wb'),
stderr=subprocess.STDOUT)
for i in range(3):
time.sleep(0.1)
try:
self._conn = pymongo.Connection('localhost', MONGODB_TEST_PORT)
except pymongo.errors.ConnectionFailure:
continue
else:
break