stress.py :  » Web-Frameworks » Webware » Webware-1.0.2 » WebKit » Tests » stress » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Frameworks » Webware 
Webware » Webware 1.0.2 » WebKit » Tests » stress » stress.py
#!/usr/bin/env python
"""stress.py

By Chuck Esterbrook
Mods by Jay Love

Purpose: Hit the WebKit AppServer with lots of a requests in order to:
  * Test for memory leaks
  * Test concurrency
  * Investigate performance

This stress test skips the web server and the WebKit adapter, so it's not
useful for measuring absolute performance. However, after making a
modification to WebKit or your web-based application, it can be useful to
see the relative difference in performance (although still somewhat
unrealistic).

To run:
  > stress.py  -OR-
  > python stress.py

This will give you the usage (and examples) which is:
  stress.py numRequests [minParallelRequests [maxParallelRequests [delay]]]

Programmatically, you could could also import this file and use the
stress() function.

To capture additional '.rr' files, which contain raw request
dictionaries, make use of the CGIAdapter and uncomment the lines therein
that save the raw requests.

Caveat: HTTP cookies are blown away from the raw requests. Mostly due to
the fact that they will contain stale session ids.

"""


import sys, os, time, socket
from glob import glob
from marshal import dumps
from random import randint
from time import asctime,localtime,time,sleep
from threading import Thread


def usage():
  """ Prints usage of this program and exits. """
  sys.stdout = sys.stderr
  name = sys.argv[0]
  print '%s usage:' % name
  print '  %s numRequests [minParallelRequests [maxParallelRequests [delay [slowconn]]]]' % name
  print 'Examples:'
  print '  %s 100            # run 100 sequential requests' % name
  print '  %s 100 5          # run 100 requests, 5 at a time' % name
  print '  %s 100 5 10       # run 100 requests, 5-10 at a time' % name
  print '  %s 100 10 10 0.01 # run 100 requests, 10 at a time, with delay between each set' % name
  print '  %s 5 1 1 0.1 1    # run 5 sequential requests, simulating a very bad connection' % name
  print
  sys.exit(1)


def request(names, dicts, host, port, count, delay=0, slowconn=0):
  """Perform a single AppServer request.

  This includes sending the request and receiving the response.
  slowconn simulates a slowed connection from the client.

  """
  complete = 0
  filecount = len(names)
  totalbytes = 0
  while complete < count:
    i = randint(0, filecount-1)
    # taken from CGIAdapter:
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.connect((host, port))
    data = dumps(dicts[i])
    data = dumps(len(data)) + data
    if slowconn:
      for d in data:
        s.send(d)
      if delay:
        sleep(delay)
    else:
      s.send(data)
    s.shutdown(1)
    data = []
    while 1:
      newdata = s.recv(8192)
      if not newdata:
        break
      else:
        data.append(newdata)
    data = ''.join(data)
    # process response
    # sys.stdout.write(data)
    try:
      if not data.startswith('Status: '):
        raise ValueError
      status = data.split('\n', 1)[0]
      code = int(status.split()[1])
    except Exception:
      status = 'no status'
      code = 0
    if code not in (200,): # accepted status codes
      status = dicts[i]['environ']['PATH_INFO'] + ' ' + status
      raise Exception, status
    if data.rstrip()[-7:].lower() != '</html>':
      raise Exception, 'response is not a complete html page'
    if delay:
      sleep(delay)
    complete += 1
    totalbytes += len(data)


def stress(maxRequests,
  minParallelRequests=1, maxParallelRequests=1, delay=0.0, slowconn=0):
  """Execute stress test on the AppServer according to the arguments."""
  # taken from CGIAdapter:
  try:
    host, port = open('../../adapter.address').read().split(':')
  except Exception:
    print "Please start the application server first."
    return
  if os.name == 'nt' and host == '':
    # MS Windows doesn't like a blank host name
    host = 'localhost'
  port = int(port)
  bufsize = 32*1024
  # get the requests from .rr files
  # which are expected to contain raw request dictionaries
  requestFilenames = glob('*.rr')
  requestDicts = map(lambda filename:
    eval(open(filename).read()), requestFilenames)
  # kill the HTTP cookies (which typically have an invalid session id)
  # from when the raw requests were captured
  for dict in requestDicts:
    environ = dict['environ']
    if environ.has_key('HTTP_COOKIE'):
      del environ['HTTP_COOKIE']
  requestCount = len(requestFilenames)
  if maxParallelRequests < minParallelRequests:
    maxParallelRequests = minParallelRequests
  sequential = minParallelRequests == 1 and maxParallelRequests == 1
  startTime = time()
  count = 0
  print 'STRESS TEST for Webware.WebKit.AppServer'
  print
  print 'time                =', asctime(localtime(startTime))
  print 'requestFilenames    =', requestFilenames
  print 'maxRequests         =', maxRequests
  print 'minParallelRequests =', minParallelRequests
  print 'maxParallelRequests =', maxParallelRequests
  print 'delay               = %g' % delay
  print 'slowconn            =', slowconn
  print 'sequential          =', sequential
  print 'Running...'
  threads = []
  for i in range(maxParallelRequests):
    num = randint(minParallelRequests, maxParallelRequests)
    num = maxRequests/num
    thread = Thread(target=request, args=(
      requestFilenames, requestDicts, host, port, num, delay, slowconn))
    thread.start()
    threads.append(thread)
    count += num
  # wait till all threads are finished
  for thread in threads:
    thread.join()
  threads = None
  duration = time() - startTime
  print 'count                = %d' % count
  print 'duration             = %g' % duration
  print 'secs/page            = %g' % (duration/count)
  if duration:
    print 'pages/sec            = %g' % (count/duration)
  print 'Done.'
  print


if __name__ == '__main__':
  if len(sys.argv) == 1:
    usage()
  else:
    args = map(eval, sys.argv[1:])
    stress(*args)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.