Changes between Version 2 and Version 3 of DeveloperGuidelines/Testing/Load


Ignore:
Timestamp:
09/26/11 12:22:04 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Testing/Load

    v2 v3  
    125125
    126126=== Dynamic Tests ===
    127 A set of transactions can be performed with an increasing level of load {{{~/.tsung/tsung.xml}}}:
     127A set of transactions can be performed with an increasing level of load.
     128
     129Content can be pulled from CSV if it needs to vary per run (e.g. usernames to register). Can create a large CSV using a simple Python script:
     130{{{
     131#!/usr/bin/env python
     132FILENAME = "users.csv"
     133f = open(FILENAME, "wb")
     134for i in range(1, 100000):
     135    f.write("Test%i%40example.com\n" % i)
     136f.close()
     137}}}
     138
     139{{{~/.tsung/tsung.xml}}}:
    128140{{{
    129141<?xml version="1.0"?>