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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641
|
import time
import string
import datetime
import os.path
from cPickle import dumps, loads
from django.db import models
from django.db.models import permalink
from django.db import connection
class DateTimeIntegerField(models.IntegerField):
"""Like DateTimeField, but reads the value from an integer UNIX timestamp."""
__metaclass__ = models.SubfieldBase
def to_python(self, value):
if isinstance(value, int) or isinstance(value, long):
value = datetime.datetime.fromtimestamp(value)
return value
def get_db_prep_value(self, val, connection=None, prepared=False):
return time.mktime(val.timetuple())
class MyBooleanField(models.IntegerField):
__metaclass__ = models.SubfieldBase
def to_python(self, value):
return bool(value)
def get_db_prep_value(self, val, connection=None, prepared=False):
return int(val)
class CustomSQLInterface:
def _fetchAll(self, instruction, *args, **kwargs):
cur = connection.cursor()
cur.execute(instruction, *args, **kwargs)
res = cur.fetchall()
return res
def _fetchOne(self, instruction, *args, **kwargs):
cur = connection.cursor()
cur.execute(instruction, *args, **kwargs)
res = cur.fetchone()
return res
class Client(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
software = models.TextField(blank=True)
name = models.TextField(blank=True)
user = models.TextField(blank=True)
class Meta:
db_table = 'client'
class Admin:
pass
def __str__(self):
return "Client #%d [%s/%s/%s]" % (self.id, self.software, self.name,
self.user)
class TestClassInfoManager(models.Manager):
def scenarios(self):
"""Returns all scenario TestClasses"""
try:
sct = self.get(type="scenario")
except:
return []
v = self.all().select_related("id", "type", "parent")
def filter_subclass(ptype, avail):
res = [ptype]
for t in avail:
if ptype == t.parent:
res.extend(filter_subclass(t, avail))
return res
return filter_subclass(sct, v)
class TestClassInfo(models.Model):
objects = TestClassInfoManager()
id = models.IntegerField(null=True, primary_key=True, blank=True)
type = models.TextField(unique=True)
parent = models.ForeignKey("self", to_field="type",
db_column="parent",
related_name="subclass")
description = models.TextField(blank=True)
fulldescription = models.TextField(blank=True)
def _get_fullchecklist(self):
"""
Returns the full list of checkitems (including from parents)
The list is ordered by classes and then by id.
"""
# this should be done in two queries
# 1. get the list of all testclassinfo (from here to base)
# 2. get the checklist for all those classes
classes = self.__get_parentage()
res = TestClassInfoCheckListDict.objects.filter(containerid__in=classes).order_by("id")
return res
fullchecklist = property(_get_fullchecklist)
def _get_fullarguments(self):
"""
Returns the full list of arguments (including from parents).
The list is ordered by classes and then by id.
"""
classes = self.__get_parentage()
res = TestClassInfoArgumentsDict.objects.filter(containerid__in=classes).select_related(depth=1).order_by("id")
return res
fullarguments = property(_get_fullarguments)
def _get_is_scenario(self):
if self.type == "scenario":
return True
if self.parent_id:
return self.parent.is_scenario
return False
is_scenario = property(_get_is_scenario)
def __get_parentage(self):
res = [self.type]
if self.parent_id:
res.extend(self.parent.__get_parentage())
return res
def __repr__(self):
return "TestClassInfo:%s" % self.type
class Meta:
db_table = 'testclassinfo'
class TestClassInfoArgumentsDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(TestClassInfo,
db_column="containerid",
related_name="arguments",
to_field="type")
name = models.TextField(blank=True)
value = models.TextField(blank=True, db_column="txtvalue")
def _get_description(self):
return self.value
description = property(_get_description)
def __str__(self):
return self.name
class Meta:
db_table = 'testclassinfo_arguments_dict'
class TestClassInfoCheckListDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(TestClassInfo,
db_column="containerid",
related_name="checklist",
to_field="type")
name = models.TextField(blank=True)
description = models.TextField(blank=True,
db_column="txtvalue")
def __str__(self):
return self.name
class Meta:
db_table = 'testclassinfo_checklist_dict'
class TestClassInfoExtraInfoDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(TestClassInfo,
db_column="containerid",
related_name="extrainfos",
to_field="type")
name = models.TextField(blank=True)
description = models.TextField(blank=True, db_column="txtvalue")
def __str__(self):
return self.name
class Meta:
db_table = 'testclassinfo_extrainfo_dict'
class TestClassInfoOutputFilesDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(TestClassInfo,
db_column="containerid",
related_name="outputfiles",
to_field="type")
name = models.TextField(blank=True)
value = models.TextField(blank=True, db_column="txtvalue")
def __str__(self):
return self.name
class Meta:
db_table = 'testclassinfo_outputfiles_dict'
class TestRunManager(models.Manager):
def withcounts(self):
return self.all().extra(select={'nbtests':"SELECT COUNT(*) FROM test WHERE test.testrunid = testrun.id and test.ismonitor=0"})
class TestRun(models.Model, CustomSQLInterface):
objects = TestRunManager()
id = models.IntegerField(null=True, primary_key=True, blank=True)
clientid = models.ForeignKey(Client, db_column="clientid")
starttime = DateTimeIntegerField(null=True, blank=True)
stoptime = DateTimeIntegerField(null=True, blank=True)
class Meta:
db_table = 'testrun'
def get_absolute_url(self):
return ('web.insanityweb.views.matrix_view', [str(self.id)])
get_absolute_url = permalink(get_absolute_url)
def get_matrix_view_url(self):
return ('web.insanityweb.views.matrix_view', [self.id])
get_matrix_view_url = permalink(get_matrix_view_url)
def find_test_similar_args(self, atest):
"""Returns tests which have the similar arguments as atest"""
# this query is too complex to do with DJango code
# if somebody can convert it to django code, you're welcome
# FIXME : This can be done in one SQL query
res = [x.id for x in self.test_set.filter(type__id=atest.type.id)]
searchstr = """
SELECT test.id
FROM test, test_arguments_dict
WHERE test.id=test_arguments_dict.containerid
"""
for arg in atest.arguments.all():
tmpsearch = "AND test.id in (%s) " % string.join([str(x) for x in res], ', ')
tmpsearch += "AND test_arguments_dict.name=%s "
if arg.txtvalue:
tmpsearch += "AND test_arguments_dict.txtvalue=%s "
val = arg.txtvalue
elif arg.intvalue:
tmpsearch += "AND test_arguments_dict.intvalue=%s "
val = arg.intvalue
else:
tmpsearch += "AND test_arguments_dict.blobvalue=%s "
val = arg.blobvalue
tmpres = self._fetchAll(searchstr+tmpsearch,
[arg.name.id, val])
res = []
if tmpres == []:
break
tmp2 = list(zip(*tmpres)[0])
for i in tmp2:
if not i in res:
res.append(i)
return [Test.objects.get(pk=i) for i in res]
# FIXME : This is insanely crufty and not performant at all
def compare(self, other):
"""
Compares the tests from self and the tests from other.
Returns a tuple of 5 values:
* list of tests in other which are not in self
* list of tests in self which are not in other
* list of tests in self which have improved compared to the one in other
* list of tests in self which have regressed compared to the one in other
* a dictionnary mapping of:
* test from self
* corresponding test from other
"""
if not isinstance(other, TestRun):
raise TypeError
newmapping = {}
oldinnew = []
newtests = []
for othert in other.test_set.all():
anc = self.find_test_similar_args(othert)
if anc == []:
newtests.append(othert)
else:
newmapping[othert] = anc
oldinnew.extend(anc)
testsgone = [x for x in self.test_set.all() if not x in oldinnew]
return newmapping
def __str__(self):
return "Testrun #%d [%s]" % (self.id, self.starttime)
class TestManager(models.Manager):
def failed(self):
"""Only returns the tests that succeeded"""
return self.exclude(resultpercentage=100.0)
def succeeded(self):
"""Only returns the tests that failed (either totally or partially)"""
return self.filter(resultpercentage=100.0)
def scenarios(self):
"""Filters the QuerySet to only contain scenarios (i.e. container tests)"""
self.filter(isscenario=True)
def leaftests(self):
"""Filters the QuerySet to only contain leaf tests (i.e. not scenarios)"""
return self.filter(subtest=None)
def timedout(self):
"""Filters the QuerySet to only return tests that timed out"""
# timed-out tests are definitely failed
return self.failed().exclude(checklist__name__name="no-timeout",
checklist__value=1)
def nomonitors(self):
"""Filters the QuerySet to only return non-monitors"""
return self.filter(ismonitor=0)
class Test(models.Model):
objects = TestManager()
id = models.IntegerField(null=True, primary_key=True, blank=True)
testrunid = models.ForeignKey(TestRun, db_column="testrunid")
type = models.ForeignKey(TestClassInfo, db_column="type",
related_name="instances")
resultpercentage = models.TextField(blank=True) # This field type is a guess.
parent = models.ForeignKey("self", to_field="id",
db_column="parentid",
related_name="child")
ismonitor = MyBooleanField(null=False, default=False)
isscenario = MyBooleanField(null=False, default=False)
def get_absolute_url(self):
return ('web.insanityweb.views.test_summary', [str(self.id)])
get_absolute_url = permalink(get_absolute_url)
def is_scenario(self):
return self.isscenario
def _is_subtest(self):
return (self.ismonitor == False) and (self.parent != None)
is_subtest = property(_is_subtest)
def _is_success(self):
return bool(self.resultpercentage == 100.0)
is_success = property(_is_success)
@property
def monitors(self):
"""Monitors controling the given test"""
return Test.objects.filter(ismonitor=1,parent=self.id)
def _get_results_dict(self, checklist=None, allchecks=None):
"""
Returns an ordered list of check results as dictionnaries.
dictionnary:
'type': TestClassInfoCheckListDict
'value': TestCheckListList
'skipped': boolean set to True if check was skipped
'expected': boolean set to True if the check was expected failure
This differs from checklist_set in the sense that it will indicate
the skipped check items.
"""
res = []
# pre-computed fullchecklist
if checklist == None:
fcl = self.type.fullchecklist
else:
fcl = checklist
# pre-computer checklist
if allchecks:
v = [x for x in allchecks if x.containerid == self]
else:
v = self.checklist.all().select_related("name","value") # v.name == fcl.id
for checktype in fcl:
d = {}
d['type'] = checktype
d['expected'] = False
val = None
for av in v:
if checktype == av.name:
d['skipped'] = False
d['expected'] = av.expected
val = av.success
break
if val == None:
d['skipped'] = True
d['value'] = val
res.append(d)
return res
results = property(_get_results_dict)
def _get_full_arguments(self, fullarguments=None, allargs=None):
"""
Returns an ordered list of arguments
This differs from test.arguments.all in the sense that it will also
contains the arguments with defaults values
"""
res = []
# pre-computed fullarguments
if fullarguments == None:
fa = self.type.fullarguments
else:
fa = fullarguments
# pre-computed arguments
if allargs:
v = [x for x in allargs if x.containerid == self]
else:
v = self.arguments.all().select_related(depth=1)
for argtype in fa:
d = {}
d['type'] = argtype
val = None
for av in v:
if argtype == av.name:
d['skipped'] = False
val = av.value
break
if val == None:
d['skipped'] = True
d['value'] = "Default"
else:
d['value'] = val
res.append(d)
return res
fullarguments = property(_get_full_arguments)
def _test_error(self, allextras=None):
""" Returns the error TestExtraInfoDict if available"""
def stringify_gst_error(anerr):
quarkmap = {
"gst-core-error-quark" : "CORE_ERROR",
"gst-library-error-quark" : "LIBRARY_ERROR",
"gst-resource-error-quark" : "RESOURCE_ERROR",
"gst-stream-error-quark" : "STREAM_ERROR"
}
quark,message = anerr[1:3]
return "%s: %s" % (quarkmap.get(quark, "UNKNOWN_ERROR"),
message)
def stringify_return_code(retcodestr):
retmap = {
-1:"SIGHUP",
-2:"SIGINT",
-3:"SIGQUIT",
-4:"SIGILL",
-6:"SIGABRT",
-8:"SIGFPE",
-9:"SIGKILL",
-11:"SIGSEGV",
-15:"SIGTERM",
}
ret = None
retcode = long(retcodestr)
if retcode:
if retcode in retmap:
ret = "Process return code : %s [%d]" % (retmap[retcode],retcode)
else:
ret = "Process return code : %d" % retcode
return ret
err = None
# pre-computed extras
if allextras != None:
errs = allextras
else:
try:
errs = self.extrainfo.all().select_related("name__name", "intvalue","txtvalue").filter(name__name__in=["errors", "subprocess-return-code"])
except:
errs = []
if len(errs) == 0:
return None
errs = errs[0]
if errs.name.name == "errors":
err = stringify_gst_error(errs.value[0])
else: # it can only be subprocess-return-code
err = stringify_return_code(errs.intvalue)
return err
test_error = property(_test_error)
class Meta:
db_table = 'test'
def __str__(self):
return "%s:%s" % (self.type.type, self.id)
class TestArgumentsDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(Test, db_column="containerid",
related_name="arguments")
name = models.ForeignKey(TestClassInfoArgumentsDict,
db_column="name")
intvalue = models.IntegerField(null=True, blank=True)
txtvalue = models.TextField(blank=True)
def _get_value(self):
# our magic to figure out the type of the value
if not self.intvalue == None:
return self.intvalue
if not self.txtvalue == None:
return self.txtvalue
return None
value = property(_get_value)
def skipped(self):
return self.value == None
class Meta:
db_table = 'test_arguments_dict'
def __str__(self):
return "%s:%s" % (self.name.name, self.value)
class TestCheckListList(models.Model):
SKIPPED = None
FAILURE = 0
SUCCESS = 1
EXPECTED_FAILURE = 2
VALUE_CHOICES = (
(SKIPPED, 'Skipped'),
(FAILURE, 'Failure'),
(SUCCESS, 'Success'),
(EXPECTED_FAILURE, 'Expected failure'),
)
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(Test, db_column="containerid",
related_name="checklist")
name = models.ForeignKey(TestClassInfoCheckListDict,
db_column="name")
value = models.IntegerField(null=True, blank=True,
db_column="intvalue",
choices=VALUE_CHOICES)
@property
def skipped(self):
return self.value == self.SKIPPED
@property
def failure(self):
return self.value == self.FAILURE
@property
def success(self):
return self.value == self.SUCCESS
@property
def expected_failure(self):
return self.value == self.EXPECTED_FAILURE
class Meta:
db_table = 'test_checklist_list'
class TestOutputFilesDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(Test, db_column="containerid",
related_name="outputfiles")
name = models.ForeignKey(TestClassInfoOutputFilesDict,
db_column="name")
value = models.TextField(blank=True, db_column="txtvalue")
def _get_basename(self):
return os.path.basename(self.value)
basename = property(_get_basename)
class Meta:
db_table = 'test_outputfiles_dict'
class TestExtraInfoDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(Test, db_column="containerid",
related_name="extrainfo")
name = models.ForeignKey(TestClassInfoExtraInfoDict,
db_column="name")
intvalue = models.IntegerField(null=True, blank=True)
txtvalue = models.TextField(blank=True)
def _get_value(self):
# our magic to figure out the type of the value
if not self.intvalue == None:
return self.intvalue
if not self.txtvalue == None:
return self.txtvalue
return None
value = property(_get_value)
def __str__(self):
return "%s:%s" % (self.name.name, self.value)
class Meta:
db_table = 'test_extrainfo_dict'
class TestErrorExplanationDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(Test, db_column="containerid",
related_name="error_explanations")
name = models.ForeignKey(TestClassInfoCheckListDict,
db_column="name")
txtvalue = models.TextField(blank=True)
def __str__(self):
return "%s:%s" % (self.name.name, self.txtvalue)
class Meta:
db_table = 'test_error_explanation_dict'
class TestRunEnvironmentDict(models.Model):
id = models.IntegerField(null=True, primary_key=True, blank=True)
containerid = models.ForeignKey(TestRun, db_column="containerid",
related_name="environment")
name = models.TextField(blank=True)
intvalue = models.IntegerField(null=True, blank=True)
txtvalue = models.TextField(blank=True)
def _get_value(self):
# our magic to figure out the type of the value
if not self.intvalue == None:
return self.intvalue
if not self.txtvalue == None:
return self.txtvalue
return None
value = property(_get_value)
class Meta:
db_table = 'testrun_environment_dict'
class Version(models.Model):
version = models.IntegerField(null=True, blank=True)
modificationtime = models.IntegerField(null=True, blank=True)
class Meta:
db_table = 'version'
|