File: StressSuite.py

package info (click to toggle)
python-orbit 0.3.1-12
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,492 kB
  • ctags: 801
  • sloc: sh: 9,444; ansic: 5,642; python: 1,141; makefile: 126
file content (265 lines) | stat: -rw-r--r-- 8,445 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#!/usr/bin/env python

# StressSuite, a unittest testSuite designed for stressing software and
# catching memory leaks.
#
# Copyright (C) 2001  Christian Reis <kiko@async.com.br>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
# 
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Library General Public License for more details.
# 
# You should have received a copy of the GNU Library General Public
# License along with this library; if not, write to the Free
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA

import unittest, os, string, sys, time

# Needs to have certain number of variables set externally. Okay, so
# this is ugly. Sue me. :)

RUNS = 1000
NUM_SAMPLES = 30

TESTS = []
DEBUG = 0

# A simple stat class that monitors a single process for growth

class SingleStressStats:
    def __init__(self):
        self.mypid = str(os.getpid())
        self.size = self.get_size()
        self.start_size = self.get_size()
        self.leak = 0
        self.startTime = time.time()

    def get_size(self):
        return self.get_vmsize(self.mypid)

    def get_vmsize(self, pid):
        sizeh = open('/proc/'+pid+'/status')
        lines = sizeh.readlines()
        sizeh.close()
        for l in lines:
            if l[0:6] == "VmSize":
                return int(string.split(l)[1])
        raise "/proc/#/status broken - not found"

    def __str__(self):
        self.update()
        curr = self.get_size()
        diff = curr - self.start_size
        tdiff = time.time() - self.startTime
        stats = "(%02.2fs)" % ( tdiff ) 
        # if we leak more than half the times
        if ( self.leak > NUM_SAMPLES * 0.5 ):
            stats = stats + \
            "\n    *** Leak in process: %.2f Kbytes, %d bytes per invocation" % \
                    ( diff, (diff*1024)/ (RUNS) )
        return stats

    def update(self):
        curr = self.get_vmsize(self.mypid)
        # do x-y for curr and self.sizes in parallel
        diff = curr - self.size
        self.sizes = curr

        # Attention: leak is a counter because we want to catch
        # reproducible leaks, and not just a single leak (which could be
        # caused by python startup or one-time growth
        if diff:
            self.leak = self.leak+1
        return self.leak

# A StressStats class that reads information from /proc for two processes, a
# client and a server.

class ClientServerStressStats:

    def __init__(self):
        self.mypid = str(os.getpid())
        # get server pid from "pid" file.
        self.serverpid = string.strip( open('pid').readline() )
        self.sizes = self.get_size()
        self.start_sizes = self.get_size()
        # store leaks in client and server
        self.leak = [ 0, 0 ]
        self.startTime = time.time()

    def get_size(self):
        return [ self.get_vmsize(self.serverpid),
            self.get_vmsize(self.mypid) ]

    # Reach for the crack pipe!
    def __str__(self):
        self.update()
        curr = self.get_size()
        diff = map(lambda x,y: x - y, curr, self.start_sizes)
        tdiff = time.time() - self.startTime
        stats = "(%02.2fs)" % ( tdiff ) 
        if ( self.leak[0] > NUM_SAMPLES / 2  ):
            stats = stats + \
            "\n    *** Leak in server: %.2f Kbytes, %d bytes per invocation" % \
                    ( diff[0], (diff[0]*1024)/ (RUNS) )
        if ( self.leak[1] > NUM_SAMPLES / 2  ):
            stats = stats + \
            "\n    *** Leak in client: %.2f KBytes, %d bytes per invocation" % \
                    ( diff[1], (diff[1]*1024)/ (RUNS) )
        return stats

    def get_vmsize(self, pid):
        sizeh = open('/proc/'+pid+'/status')
        lines = sizeh.readlines()
        sizeh.close()
        for l in lines:
            if l[0:6] == "VmSize":
                return int(string.split(l)[1])
        raise "/proc/#/status broken - not found"

    def update(self):
        curr = [ self.get_vmsize(self.serverpid),
            self.get_vmsize(self.mypid) ]
        # do x-y for curr and self.sizes in parallel
        diff = map(lambda x,y: x - y, curr, self.sizes)
        self.sizes = curr

        # Attention: leak is a counter because we want to catch
        # reproducible leaks, and not just a single leak (which could be
        # caused by python startup or one-time growth
        if diff[0]:
            self.leak[0] = self.leak[0]+1
        if diff[1]:
            self.leak[1] = self.leak[1]+1

        return self.leak[0] + self.leak[1]

#
# Override this if you don't want the default C/S test.
#

STATS = ClientServerStressStats

#
# The suite itself.
#

class StressSuite(unittest.TestSuite):
    def __init__(self, tests=() ):
        unittest.TestSuite.__init__(self, tests)

    # This is to get the tests running in the right order
    # Names are of the type X## where X is any letter.
    def _cmp_names(self,x,y):
        nx = string.split(str(x),"_")[1]
        ny = string.split(str(y),"_")[1]

        # Don't try and reorder things with broken names
        try:
            int(nx[1:])
        except ValueError:
            return 0
            
        if int(nx[1:]) > int(ny[1:]):
            return 1
        else: 
            return -1

    def echo(self,str):
        sys.stdout.write(str)
        sys.stdout.flush()

    def __call__(self, result):
    
        SAMPLE_INTERVAL = int ( RUNS / NUM_SAMPLES )

        self.echo("\n")
        n = str("Test name")
        self.echo(n)
        for i in range(0,30 - len(n)):
            self.echo(" ")
        n = " Progress"
        self.echo(n)
        for i in range(0,NUM_SAMPLES + 3 - len(n)):
            self.echo(" ")
        self.echo(" Time")
        self.echo("\n\n")

        # get those tests in the right order
        self._tests.sort(self._cmp_names)
        for test in self._tests:

            # filter our nostress tests
            if str(test).find("nostress") != -1:
                continue

            # if TESTS exists, only run tests listed
            if TESTS:
                if string.split(str(test),"_")[1] not in TESTS:
                    continue

            stats = STATS()
            # No idea what this is - stolen from TestSuite
            if result.shouldStop:
                break
            # Cut up name into something nice
            fullname = string.split(str(test)," ")[0]
            testname = string.split(fullname,"_",1)[1]
            # truncate name and fix open progress bracket.
            self.echo(testname[:28])
            for i in range(0,30 - len(testname[:28])):
                self.echo(" ")

            # The testing loop
            self.echo("[")
            for i in range(0,RUNS):
                if DEBUG: print i
                test(result)
                if not i % ( SAMPLE_INTERVAL ):
                    r = stats.update()
                    if r > NUM_SAMPLES * 0.75:
                        self.echo("O")
                    elif r > NUM_SAMPLES * 0.5:
                        self.echo("o")
                    elif r > NUM_SAMPLES * 0.25:
                        self.echo(".")
                    else:
                        self.echo("_")
            self.echo("] "+str(stats)+"\n")

            # Catch multiple errors and just use first one
            if len(result.errors) > 0:
                result.errors = [ result.errors[0], ]
            if len(result.failures) > 0:
                result.failures = [ result.failures[0], ]

        return result

#
# Example run.
#

if __name__ == "__main__":

    STATS = SingleStressStats
    RUNS = 1000

    class FooTest(unittest.TestCase):
        hoard = []
        def test_A0_nop(self):
            pass
        def test_A1_alloc(self):
            self.hoard.append(open("/dev/zero").read(2048))
        def test_A2_alloc_big(self):
            self.hoard.append(open("/dev/zero").read(8192))

    suites = unittest.makeSuite ( FooTest, suiteClass = StressSuite ) 
    suite = unittest.TestSuite ( ( suites, ) ) 
    runner = unittest.TextTestRunner( verbosity = 0)
    runner.run(suite)