author | Aurelien Campeas <aurelien.campeas@logilab.fr> |
Thu, 05 Jun 2014 15:10:04 +0200 | |
changeset 9782 | 95e8fa2c8da8 |
parent 9570 | 14452b344d19 |
child 10001 | 1245357b3b3e |
permissions | -rw-r--r-- |
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7870
diff
changeset
|
1 |
# copyright 2003-2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
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:
4850
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
0 | 18 |
"""Fake objects to ease testing of cubicweb without a fully working environment |
5768
1e73a466aa69
[fti] support for fti ranking: has_text query results sorted by relevance, and provides a way to control weight per entity / entity's attribute
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5467
diff
changeset
|
19 |
""" |
0 | 20 |
|
21 |
__docformat__ = "restructuredtext en" |
|
22 |
||
4848
41f84eea63c9
rename logilab.db into logilab.database
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4835
diff
changeset
|
23 |
from logilab.database import get_db_helper |
0 | 24 |
|
2792
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2773
diff
changeset
|
25 |
from cubicweb.req import RequestSessionBase |
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7870
diff
changeset
|
26 |
from cubicweb.cwvreg import CWRegistryStore |
9070
4a803380f718
PARTIAL: Using the repoapi in test
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8930
diff
changeset
|
27 |
from cubicweb.web.request import ConnectionCubicWebRequestBase |
7224
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
28 |
|
0 | 29 |
from cubicweb.devtools import BASE_URL, BaseApptestConfiguration |
30 |
||
31 |
||
32 |
class FakeConfig(dict, BaseApptestConfiguration): |
|
33 |
translations = {} |
|
5467
57372dbfd114
[https] fix resource urls in https version of a site: should use the https version as well to avoid warnings from the nrowser
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5444
diff
changeset
|
34 |
uiprops = {} |
8276
57d8f3b3e165
[devtools/fake] add some https related properties to FakeRequest
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8216
diff
changeset
|
35 |
https_uiprops = {} |
0 | 36 |
apphome = None |
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7870
diff
changeset
|
37 |
debugmode = False |
0 | 38 |
def __init__(self, appid='data', apphome=None, cubes=()): |
39 |
self.appid = appid |
|
40 |
self.apphome = apphome |
|
41 |
self._cubes = cubes |
|
42 |
self['auth-mode'] = 'cookie' |
|
1482 | 43 |
self['uid'] = None |
0 | 44 |
self['base-url'] = BASE_URL |
8182
d062d3b7da6c
[config] fix rql-cache-size initial values (closes #2162160)
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
7870
diff
changeset
|
45 |
self['rql-cache-size'] = 3000 |
5444
f7fdb5dd82f6
[webconfig] introduce property sheets. Use them to replace external_resources
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5443
diff
changeset
|
46 |
self.datadir_url = BASE_URL + 'data/' |
8276
57d8f3b3e165
[devtools/fake] add some https related properties to FakeRequest
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8216
diff
changeset
|
47 |
self.https_datadir_url = (BASE_URL + 'data/').replace('http://', 'https://') |
1482 | 48 |
|
0 | 49 |
def cubes(self, expand=False): |
50 |
return self._cubes |
|
1482 | 51 |
|
0 | 52 |
def sources(self): |
5768
1e73a466aa69
[fti] support for fti ranking: has_text query results sorted by relevance, and provides a way to control weight per entity / entity's attribute
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5467
diff
changeset
|
53 |
return {'system': {'db-driver': 'sqlite'}} |
0 | 54 |
|
55 |
||
9070
4a803380f718
PARTIAL: Using the repoapi in test
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8930
diff
changeset
|
56 |
class FakeRequest(ConnectionCubicWebRequestBase): |
0 | 57 |
"""test implementation of an cubicweb request object""" |
58 |
||
59 |
def __init__(self, *args, **kwargs): |
|
60 |
if not (args or 'vreg' in kwargs): |
|
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7870
diff
changeset
|
61 |
kwargs['vreg'] = CWRegistryStore(FakeConfig(), initlog=False) |
0 | 62 |
kwargs['https'] = False |
8315
166e6d5d8e17
[fake-request] support `http_method()`
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8314
diff
changeset
|
63 |
self._http_method = kwargs.pop('method', 'GET') |
7434
17ef6f9efaa1
[test] fix tests broken by 7427:5338d895b891
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7232
diff
changeset
|
64 |
self._url = kwargs.pop('url', None) or 'view?rql=Blop&vid=blop' |
0 | 65 |
super(FakeRequest, self).__init__(*args, **kwargs) |
66 |
self._session_data = {} |
|
67 |
||
7855
54283a5b7afc
[web request]Â fix cookie 'expires' formating (closes #1953945)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7436
diff
changeset
|
68 |
def set_cookie(self, name, value, maxage=300, expires=None, secure=False): |
54283a5b7afc
[web request]Â fix cookie 'expires' formating (closes #1953945)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7436
diff
changeset
|
69 |
super(FakeRequest, self).set_cookie(name, value, maxage, expires, secure) |
7224
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
70 |
cookie = self.get_response_header('Set-Cookie') |
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
71 |
self._headers_in.setHeader('Cookie', cookie) |
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
72 |
|
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
73 |
## Implement request abstract API |
8315
166e6d5d8e17
[fake-request] support `http_method()`
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8314
diff
changeset
|
74 |
def http_method(self): |
166e6d5d8e17
[fake-request] support `http_method()`
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8314
diff
changeset
|
75 |
return self._http_method |
166e6d5d8e17
[fake-request] support `http_method()`
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8314
diff
changeset
|
76 |
|
0 | 77 |
def relative_path(self, includeparams=True): |
78 |
"""return the normalized path of the request (ie at least relative |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2471
diff
changeset
|
79 |
to the instance's root, but some other normalization may be needed |
0 | 80 |
so that the returned path may be used to compare to generated urls |
81 |
""" |
|
82 |
if self._url.startswith(BASE_URL): |
|
83 |
url = self._url[len(BASE_URL):] |
|
84 |
else: |
|
85 |
url = self._url |
|
86 |
if includeparams: |
|
87 |
return url |
|
88 |
return url.split('?', 1)[0] |
|
89 |
||
7224
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
90 |
def set_request_header(self, header, value, raw=False): |
9570
14452b344d19
[devtools] add a 'method' argument to RepoAccess.web_request
David Douard <david.douard@logilab.fr>
parents:
9478
diff
changeset
|
91 |
"""set an incoming HTTP header (for test purpose only)""" |
7224
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
92 |
if isinstance(value, basestring): |
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
93 |
value = [value] |
9570
14452b344d19
[devtools] add a 'method' argument to RepoAccess.web_request
David Douard <david.douard@logilab.fr>
parents:
9478
diff
changeset
|
94 |
if raw: |
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8276
diff
changeset
|
95 |
# adding encoded header is important, else page content |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8276
diff
changeset
|
96 |
# will be reconverted back to unicode and apart unefficiency, this |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8276
diff
changeset
|
97 |
# may cause decoding problem (e.g. when downloading a file) |
7224
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
98 |
self._headers_in.setRawHeaders(header, value) |
9570
14452b344d19
[devtools] add a 'method' argument to RepoAccess.web_request
David Douard <david.douard@logilab.fr>
parents:
9478
diff
changeset
|
99 |
else: |
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8276
diff
changeset
|
100 |
self._headers_in.setHeader(header, value) # |
1482 | 101 |
|
7224
e5833657c646
[testlib] make a clear distinction between input / output HTTP headers
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
6851
diff
changeset
|
102 |
def get_response_header(self, header, default=None, raw=False): |
9570
14452b344d19
[devtools] add a 'method' argument to RepoAccess.web_request
David Douard <david.douard@logilab.fr>
parents:
9478
diff
changeset
|
103 |
"""return output header (for test purpose only)""" |
14452b344d19
[devtools] add a 'method' argument to RepoAccess.web_request
David Douard <david.douard@logilab.fr>
parents:
9478
diff
changeset
|
104 |
if raw: |
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8276
diff
changeset
|
105 |
return self.headers_out.getRawHeaders(header, [default])[0] |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8276
diff
changeset
|
106 |
return self.headers_out.getHeader(header, default) |
0 | 107 |
|
6595
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
108 |
def build_url_params(self, **kwargs): |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
109 |
# overriden to get predictable resultts |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
110 |
args = [] |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
111 |
for param, values in sorted(kwargs.iteritems()): |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
112 |
if not isinstance(values, (list, tuple)): |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
113 |
values = (values,) |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
114 |
for value in values: |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
115 |
assert value is not None |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
116 |
args.append(u'%s=%s' % (param, self.url_quote(value))) |
00cd0b273cf5
[test] fix test to follow recent changes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6427
diff
changeset
|
117 |
return '&'.join(args) |
0 | 118 |
|
119 |
class FakeUser(object): |
|
120 |
login = 'toto' |
|
121 |
eid = 0 |
|
122 |
def in_groups(self, groups): |
|
123 |
return True |
|
124 |
||
125 |
||
2792
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2773
diff
changeset
|
126 |
class FakeSession(RequestSessionBase): |
4835
13b0b96d7982
[repo] enhanced security handling: deprecates unsafe_execute, in favor of explicit read/write security control using the `enabled_security` context manager. Also code executed on the repository side is now unsafe by default.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4831
diff
changeset
|
127 |
|
7360
dbff01dd3c3c
[testlib] fake session can be given a vreg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7356
diff
changeset
|
128 |
def __init__(self, repo=None, user=None, vreg=None): |
0 | 129 |
self.repo = repo |
7360
dbff01dd3c3c
[testlib] fake session can be given a vreg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7356
diff
changeset
|
130 |
if vreg is None: |
dbff01dd3c3c
[testlib] fake session can be given a vreg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7356
diff
changeset
|
131 |
vreg = getattr(self.repo, 'vreg', None) |
dbff01dd3c3c
[testlib] fake session can be given a vreg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7356
diff
changeset
|
132 |
if vreg is None: |
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7870
diff
changeset
|
133 |
vreg = CWRegistryStore(FakeConfig(), initlog=False) |
7360
dbff01dd3c3c
[testlib] fake session can be given a vreg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7356
diff
changeset
|
134 |
self.vreg = vreg |
7398
26695dd703d8
[repository api] definitly kill usage of word 'pool' to refer to connections set used by a session
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7360
diff
changeset
|
135 |
self.cnxset = FakeConnectionsSet() |
0 | 136 |
self.user = user or FakeUser() |
137 |
self.is_internal_session = False |
|
2101
08003e0354a7
update transaction data api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
138 |
self.transaction_data = {} |
1482 | 139 |
|
4835
13b0b96d7982
[repo] enhanced security handling: deprecates unsafe_execute, in favor of explicit read/write security control using the `enabled_security` context manager. Also code executed on the repository side is now unsafe by default.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4831
diff
changeset
|
140 |
def execute(self, *args, **kwargs): |
0 | 141 |
pass |
2703
27c04321fc81
[cleanup] delete-trailing-whitespace + removed debug print
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2650
diff
changeset
|
142 |
|
0 | 143 |
def commit(self, *args): |
2101
08003e0354a7
update transaction data api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
144 |
self.transaction_data.clear() |
0 | 145 |
def close(self, *args): |
146 |
pass |
|
147 |
def system_sql(self, sql, args=None): |
|
148 |
pass |
|
149 |
||
150 |
def set_entity_cache(self, entity): |
|
151 |
pass |
|
1482 | 152 |
|
8562
0d2fb4604265
[session] fix arguments default value and promote usage of security_enabled as session method. Closes #2481820
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8316
diff
changeset
|
153 |
def security_enabled(self, read=False, write=False): |
0d2fb4604265
[session] fix arguments default value and promote usage of security_enabled as session method. Closes #2481820
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8316
diff
changeset
|
154 |
class FakeCM(object): |
0d2fb4604265
[session] fix arguments default value and promote usage of security_enabled as session method. Closes #2481820
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8316
diff
changeset
|
155 |
def __enter__(self): pass |
0d2fb4604265
[session] fix arguments default value and promote usage of security_enabled as session method. Closes #2481820
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8316
diff
changeset
|
156 |
def __exit__(self, exctype, exc, traceback): pass |
0d2fb4604265
[session] fix arguments default value and promote usage of security_enabled as session method. Closes #2481820
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8316
diff
changeset
|
157 |
return FakeCM() |
0d2fb4604265
[session] fix arguments default value and promote usage of security_enabled as session method. Closes #2481820
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8316
diff
changeset
|
158 |
|
7356
73d7863d97c1
resurrect code lost by too much patch manipulation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7232
diff
changeset
|
159 |
# for use with enabled_security context manager |
73d7863d97c1
resurrect code lost by too much patch manipulation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7232
diff
changeset
|
160 |
read_security = write_security = True |
73d7863d97c1
resurrect code lost by too much patch manipulation
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7232
diff
changeset
|
161 |
|
0 | 162 |
class FakeRepo(object): |
163 |
querier = None |
|
164 |
def __init__(self, schema, vreg=None, config=None): |
|
165 |
self.extids = {} |
|
166 |
self.eids = {} |
|
167 |
self._count = 0 |
|
168 |
self.schema = schema |
|
169 |
self.config = config or FakeConfig() |
|
8190
2a3c1b787688
[vreg] move base registry implementation to logilab.common. Closes #1916014
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7870
diff
changeset
|
170 |
self.vreg = vreg or CWRegistryStore(self.config, initlog=False) |
3240
8604a15995d1
refactor so that rql rewriter may be used outside the server. Enhance it to be usable for RRQLExpression as well
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2703
diff
changeset
|
171 |
self.vreg.schema = schema |
0 | 172 |
|
173 |
def internal_session(self): |
|
174 |
return FakeSession(self) |
|
1481 | 175 |
|
6851
824d5b6eae7f
[repo] kill no more needed 'recreate' feature
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6595
diff
changeset
|
176 |
def extid2eid(self, source, extid, etype, session, insert=True): |
0 | 177 |
try: |
178 |
return self.extids[extid] |
|
179 |
except KeyError: |
|
180 |
if not insert: |
|
181 |
return None |
|
182 |
self._count += 1 |
|
183 |
eid = self._count |
|
184 |
entity = source.before_entity_insertion(session, extid, etype, eid) |
|
185 |
self.extids[extid] = eid |
|
186 |
self.eids[eid] = extid |
|
187 |
source.after_entity_insertion(session, extid, entity) |
|
188 |
return eid |
|
1482 | 189 |
|
0 | 190 |
|
191 |
class FakeSource(object): |
|
4831
c5aec27c1bf7
[repo] use logilab.db instead of lgc.adbh/lgc.db/lgc.sqlgen/indexer, test new date extranction functions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4459
diff
changeset
|
192 |
dbhelper = get_db_helper('sqlite') |
0 | 193 |
def __init__(self, uri): |
194 |
self.uri = uri |
|
195 |
||
1482 | 196 |
|
7398
26695dd703d8
[repository api] definitly kill usage of word 'pool' to refer to connections set used by a session
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7360
diff
changeset
|
197 |
class FakeConnectionsSet(object): |
0 | 198 |
def source(self, uri): |
199 |
return FakeSource(uri) |