author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Thu, 13 Nov 2014 15:48:33 +0100 | |
changeset 10041 | 504c4eacbfd8 |
parent 7693 | e2f75311d7be |
child 10214 | 88f60d4b9952 |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5165
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
18 |
""" |
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
19 |
|
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
20 |
""" |
0 | 21 |
import os |
7693
e2f75311d7be
[skeleton/pytestconf] provide an acceptable solution for windows, closes #1875488
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
22 |
import sys |
0 | 23 |
|
24 |
from logilab.common.pytest import PyTester |
|
25 |
||
26 |
def getlogin(): |
|
27 |
"""avoid usinng os.getlogin() because of strange tty / stdin problems |
|
28 |
(man 3 getlogin) |
|
29 |
Another solution would be to use $LOGNAME, $USER or $USERNAME |
|
30 |
""" |
|
7693
e2f75311d7be
[skeleton/pytestconf] provide an acceptable solution for windows, closes #1875488
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
31 |
if sys.platform == 'win32': |
e2f75311d7be
[skeleton/pytestconf] provide an acceptable solution for windows, closes #1875488
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
32 |
return os.environ.get('USERNAME') or 'cubicweb' |
e2f75311d7be
[skeleton/pytestconf] provide an acceptable solution for windows, closes #1875488
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
33 |
import pwd |
0 | 34 |
return pwd.getpwuid(os.getuid())[0] |
35 |
||
36 |
||
37 |
def update_parser(parser): |
|
38 |
login = getlogin() |
|
39 |
parser.add_option('-r', '--rebuild-database', dest='rebuild_db', |
|
40 |
default=False, action="store_true", |
|
41 |
help="remove tmpdb and rebuilds the test database") |
|
42 |
parser.add_option('-u', '--dbuser', dest='dbuser', action='store', |
|
43 |
default=login, help="database user") |
|
44 |
parser.add_option('-w', '--dbpassword', dest='dbpassword', action='store', |
|
5165
e5efbcaa3011
fixed skeleton help strings
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
4212
diff
changeset
|
45 |
default=login, help="database user's password") |
0 | 46 |
parser.add_option('-n', '--dbname', dest='dbname', action='store', |
47 |
default=None, help="database name") |
|
48 |
parser.add_option('--euser', dest='euser', action='store', |
|
5165
e5efbcaa3011
fixed skeleton help strings
Alexandre Fayolle <alexandre.fayolle@logilab.fr>
parents:
4212
diff
changeset
|
49 |
default=login, help="euser name") |
0 | 50 |
parser.add_option('--epassword', dest='epassword', action='store', |
51 |
default=login, help="euser's password' name") |
|
52 |
return parser |
|
53 |
||
54 |
||
55 |
class CustomPyTester(PyTester): |
|
56 |
def __init__(self, cvg, options): |
|
57 |
super(CustomPyTester, self).__init__(cvg, options) |
|
58 |
if options.rebuild_db: |
|
59 |
os.unlink('tmpdb') |
|
60 |
os.unlink('tmpdb-template') |