0
votes

I have tried following ways but could not achieve the output.

1) Using Mongodb source config and mongodb script Error: code 13 : unauthorized

2) USing JSR223 Sampler (lang :python) Error :javax.script.ScriptException: ImportError: No module named pymongo in at line number 6

Code:

import random import datetime import string import sys sys.path.append("/usr/lib64/python2.7/site-packages/pymongo") from pymongo import MongoClient

def connection(): global db connection=MongoClient(HOSTNAME,PORT) db=connection[DATABASE] db.authenticate(USERNAME,PASSWORD)

1

1 Answers

0
votes
  1. You need to install the pymongo package like:

    jython -m pip install pymongo
    
  2. After this you need to include site-packages folder to your package lookup path like:

    import sys
    sys.path.append('\\location\\of\\jython\\site-packages')
    
  3. Once done you will be able to use the above Python code for setting up the MongoDB Connection

Be aware that recommended language for JSR223 Test Elements scripting is Groovy, if you plan to conduct high load using the JSR223 Sampler(s) I would suggest migrating to Groovy and using MongoDB Java Driver like:

def mongoClient = MongoClients.create("mongodb://your_username:your_password@mongohost/?authSource=userdb&ssl=true");

More information: MongoDB Performance Testing with JMeter