VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testmanager/config.py@ 69221

Last change on this file since 69221 was 69111, checked in by vboxsync, 7 years ago

(C) year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.2 KB
Line 
1# -*- coding: utf-8 -*-
2# $Id: config.py 69111 2017-10-17 14:26:02Z vboxsync $
3
4"""
5Test Manager Configuration.
6"""
7
8__copyright__ = \
9"""
10Copyright (C) 2012-2017 Oracle Corporation
11
12This file is part of VirtualBox Open Source Edition (OSE), as
13available from http://www.virtualbox.org. This file is free software;
14you can redistribute it and/or modify it under the terms of the GNU
15General Public License (GPL) as published by the Free Software
16Foundation, in version 2 as it comes in the "COPYING" file of the
17VirtualBox OSE distribution. VirtualBox OSE is distributed in the
18hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
19
20The contents of this file may alternatively be used under the terms
21of the Common Development and Distribution License Version 1.0
22(CDDL) only, as it comes in the "COPYING.CDDL" file of the
23VirtualBox OSE distribution, in which case the provisions of the
24CDDL are applicable instead of those of the GPL.
25
26You may elect to license modified versions of this file under the
27terms and conditions of either the GPL or the CDDL or both.
28"""
29__version__ = "$Revision: 69111 $"
30
31import os;
32
33## Test Manager version string.
34g_ksVersion = 'v0.1.0';
35## Test Manager revision string.
36g_ksRevision = ('$Revision: 69111 $')[11:-2];
37
38## Enable VBox specific stuff.
39g_kfVBoxSpecific = True;
40
41
42## @name Used by the TMDatabaseConnection class.
43# @{
44g_ksDatabaseName = 'testmanager';
45g_ksDatabaseAddress = None;
46g_ksDatabasePort = None;
47g_ksDatabaseUser = 'postgres';
48g_ksDatabasePassword = '';
49## @}
50
51
52## @name User handling.
53## @{
54
55## Whether login names are case insensitive (True) or case sensitive (False).
56## @note Implemented by inserting lower case names into DB and lower case
57## bind variables in WHERE clauses.
58g_kfLoginNameCaseInsensitive = True;
59
60## @}
61
62
63## @name File locations
64## @{
65
66## The TestManager directory.
67g_ksTestManagerDir = os.path.dirname(os.path.abspath(__file__));
68## The Validation Kit directory.
69g_ksValidationKitDir = os.path.dirname(g_ksTestManagerDir);
70## The TestManager htdoc directory.
71g_ksTmHtDocDir = os.path.join(g_ksTestManagerDir, 'htdocs');
72## The TestManager download directory (under htdoc somewhere), for validationkit zips.
73g_ksTmDownloadDir = os.path.join(g_ksTmHtDocDir, 'download');
74## The base URL relative path of the TM download directory (g_ksTmDownloadDir).
75g_ksTmDownloadBaseUrlRel = 'htdocs/downloads';
76## The root of the file area (referred to as TM_FILE_DIR in database docs).
77g_ksFileAreaRootDir = '/var/tmp/testmanager'
78## The root of the file area with the zip files (best put on a big storage server).
79g_ksZipFileAreaRootDir = '/var/tmp/testmanager2'
80## URL prefix for trac log viewer.
81g_ksTracLogUrlPrefix = 'https://linserv.de.oracle.com/vbox/log/'
82## URL prefix for trac log viewer.
83g_ksTracChangsetUrlFmt = 'https://linserv.de.oracle.com/%(sRepository)s/changeset/%(iRevision)s'
84## URL prefix for unprefixed build logs.
85g_ksBuildLogUrlPrefix = ''
86## URL prefix for unprefixed build binaries.
87g_ksBuildBinUrlPrefix = '/builds/'
88## The local path prefix for unprefixed build binaries. (Host file system, not web server.)
89g_ksBuildBinRootDir = '/mnt/builds/'
90## File on the build binary share that can be used to check that it's mounted.
91g_ksBuildBinRootFile = 'builds.txt'
92## @}
93
94
95## @name Scheduling parameters
96## @{
97
98## The time to wait for a gang to gather (in seconds).
99g_kcSecGangGathering = 600;
100## The max time allowed to spend looking for a new task (in seconds).
101g_kcSecMaxNewTask = 60;
102## Minimum time since last task started.
103g_kcSecMinSinceLastTask = 120; # (2 min)
104## Minimum time since last failed task.
105g_kcSecMinSinceLastFailedTask = 180; # (3 min)
106
107## @}
108
109
110
111## @name Test result limits.
112## In general, we will fail the test when reached and stop accepting further results.
113## @{
114
115## The max number of test results per test set.
116g_kcMaxTestResultsPerTS = 4096;
117## The max number of test results (children) per test result.
118g_kcMaxTestResultsPerTR = 512;
119## The max number of test result values per test set.
120g_kcMaxTestValuesPerTS = 4096;
121## The max number of test result values per test result.
122g_kcMaxTestValuesPerTR = 256;
123## The max number of test result message per test result.
124g_kcMaxTestMsgsPerTR = 4;
125## The max test result nesting depth.
126g_kcMaxTestResultDepth = 10;
127
128## The max length of a test result name.
129g_kcchMaxTestResultName = 64;
130## The max length of a test result value name.
131g_kcchMaxTestValueName = 56;
132## The max length of a test result message.
133g_kcchMaxTestMsg = 128;
134
135## The max size of the main log file.
136g_kcMbMaxMainLog = 32;
137## The max size of an uploaded file (individual).
138g_kcMbMaxUploadSingle = 150;
139## The max size of all uploaded file.
140g_kcMbMaxUploadTotal = 200;
141## The max number of files that can be uploaded.
142g_kcMaxUploads = 256;
143## @}
144
145## @name Debug Features
146## @{
147
148## Enables extra DB exception information.
149g_kfDebugDbXcpt = True;
150
151## Where to write the glue debug.
152# None indicates apache error log, string indicates a file.
153#g_ksSrcGlueDebugLogDst = '/tmp/testmanager-srv-glue.log';
154g_ksSrcGlueDebugLogDst = None;
155## Whether to enable CGI trace back in the server glue.
156g_kfSrvGlueCgiTb = False;
157## Enables glue debug output.
158g_kfSrvGlueDebug = False;
159## Timestamp and pid prefix the glue debug output.
160g_kfSrvGlueDebugTS = True;
161## Enables task scheduler debug output to g_ksSrcGlueDebugLogDst.
162g_kfSrvGlueDebugScheduler = False;
163
164## Enables the SQL trace back.
165g_kfWebUiSqlTrace = False;
166## Enables the explain in the SQL trace back.
167g_kfWebUiSqlTraceExplain = False;
168## Whether the postgresql version supports the TIMING option on EXPLAIN (>= 9.2).
169g_kfWebUiSqlTraceExplainTiming = False;
170## Display time spent processing the page.
171g_kfWebUiProcessedIn = True;
172## Enables WebUI debug output.
173g_kfWebUiDebug = False;
174## Enables WebUI SQL debug output print() calls (requires g_kfWebUiDebug).
175g_kfWebUiSqlDebug = False;
176## Enables the debug panel at the bottom of the page.
177g_kfWebUiDebugPanel = True;
178
179## Profile cgi/admin.py.
180g_kfProfileAdmin = False;
181## Profile cgi/index.py.
182g_kfProfileIndex = False;
183
184## When not None,
185g_ksTestBoxDispXpctLog = '/tmp/testmanager-testboxdisp-xcpt.log'
186## @}
187
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette