concordia-server/tests/concordiaSearch.py

31 lines
601 B
Python
Raw Normal View History

2015-08-24 19:28:41 +02:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
import unittest
import json
import urllib2
import sys
import time
2015-10-20 20:16:00 +02:00
import host
address = 'http://'+host.concordia_host
if len(host.concordia_port) > 0:
address += ':'+host.concordia_port
2015-08-24 19:28:41 +02:00
data = {
'operation': 'concordiaSearch',
2015-10-20 22:22:43 +02:00
'pattern':sys.argv[1],
2015-10-20 22:22:10 +02:00
'tmId':int(sys.argv[2])
2015-08-24 19:28:41 +02:00
}
start = time.time()
2015-10-20 20:16:00 +02:00
req = urllib2.Request(address)
2015-08-24 19:28:41 +02:00
req.add_header('Content-Type', 'application/json')
2017-04-23 00:43:15 +02:00
response = urllib2.urlopen(req, json.dumps(data)).read()
2015-08-24 19:28:41 +02:00
end = time.time()
print "Execution time: %.4f seconds." % (end-start)
print "Result: "
print response