From c686a4f045f15944940e131ccfb2fa6a1e0a5e7c Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 18 Oct 2020 22:48:44 -0700 Subject: Script to test map --- tools/test-map.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100755 tools/test-map.py (limited to 'tools/test-map.py') diff --git a/tools/test-map.py b/tools/test-map.py new file mode 100755 index 000000000..0568b283e --- /dev/null +++ b/tools/test-map.py @@ -0,0 +1,39 @@ +#!/usr/bin/python + +import urllib +import urllib2 +import httplib +import random +import json + +server = 'localhost:5055' +baseUrl = 'http://localhost:8082' +user = { 'email' : 'admin', 'password' : 'admin' } +devices = 500 + +def login(): + request = urllib2.Request(baseUrl + '/api/session') + response = urllib2.urlopen(request, urllib.urlencode(user)) + return response.headers.get('Set-Cookie') + +def add_device(cookie, unique_id): + request = urllib2.Request(baseUrl + '/api/devices') + request.add_header('Cookie', cookie) + request.add_header('Content-Type', 'application/json') + device = { 'name' : unique_id, 'uniqueId' : unique_id } + response = urllib2.urlopen(request, json.dumps(device)) + data = json.load(response) + return data['id'] + +def send_message(conn, device_id): + params = (('id', device_id), ('lat', random.uniform(59, 61)), ('lon', random.uniform(29, 31))) + conn.request('GET', '?' + urllib.urlencode(params)) + conn.getresponse().read() + +cookie = login() +conn = httplib.HTTPConnection(server) + +for i in range(devices): + device_id = "{0:0>6}".format(i) + add_device(cookie, device_id) + send_message(conn, device_id) -- cgit v1.2.3