Show More
@@ -539,18 +539,15 b' vcs.server = localhost:9900' | |||||
539 |
|
539 | |||
540 | ## Web server connectivity protocol, responsible for web based VCS operatations |
|
540 | ## Web server connectivity protocol, responsible for web based VCS operatations | |
541 | ## Available protocols are: |
|
541 | ## Available protocols are: | |
542 | ## `pyro4` - use pyro4 server |
|
|||
543 | ## `http` - use http-rpc backend (default) |
|
542 | ## `http` - use http-rpc backend (default) | |
544 | vcs.server.protocol = http |
|
543 | vcs.server.protocol = http | |
545 |
|
544 | |||
546 | ## Push/Pull operations protocol, available options are: |
|
545 | ## Push/Pull operations protocol, available options are: | |
547 | ## `pyro4` - use pyro4 server |
|
|||
548 | ## `http` - use http-rpc backend (default) |
|
546 | ## `http` - use http-rpc backend (default) | |
549 | ## |
|
547 | ## | |
550 | vcs.scm_app_implementation = http |
|
548 | vcs.scm_app_implementation = http | |
551 |
|
549 | |||
552 | ## Push/Pull operations hooks protocol, available options are: |
|
550 | ## Push/Pull operations hooks protocol, available options are: | |
553 | ## `pyro4` - use pyro4 server |
|
|||
554 | ## `http` - use http-rpc backend (default) |
|
551 | ## `http` - use http-rpc backend (default) | |
555 | vcs.hooks.protocol = http |
|
552 | vcs.hooks.protocol = http | |
556 |
|
553 | |||
@@ -666,7 +663,7 b' formatter = color_formatter_sql' | |||||
666 | ################ |
|
663 | ################ | |
667 |
|
664 | |||
668 | [formatter_generic] |
|
665 | [formatter_generic] | |
669 |
class = rhodecode.lib.logging_formatter. |
|
666 | class = rhodecode.lib.logging_formatter.ExceptionAwareFormatter | |
670 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s |
|
667 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | |
671 | datefmt = %Y-%m-%d %H:%M:%S |
|
668 | datefmt = %Y-%m-%d %H:%M:%S | |
672 |
|
669 |
@@ -508,18 +508,15 b' vcs.server = localhost:9900' | |||||
508 |
|
508 | |||
509 | ## Web server connectivity protocol, responsible for web based VCS operatations |
|
509 | ## Web server connectivity protocol, responsible for web based VCS operatations | |
510 | ## Available protocols are: |
|
510 | ## Available protocols are: | |
511 | ## `pyro4` - use pyro4 server |
|
|||
512 | ## `http` - use http-rpc backend (default) |
|
511 | ## `http` - use http-rpc backend (default) | |
513 | vcs.server.protocol = http |
|
512 | vcs.server.protocol = http | |
514 |
|
513 | |||
515 | ## Push/Pull operations protocol, available options are: |
|
514 | ## Push/Pull operations protocol, available options are: | |
516 | ## `pyro4` - use pyro4 server |
|
|||
517 | ## `http` - use http-rpc backend (default) |
|
515 | ## `http` - use http-rpc backend (default) | |
518 | ## |
|
516 | ## | |
519 | vcs.scm_app_implementation = http |
|
517 | vcs.scm_app_implementation = http | |
520 |
|
518 | |||
521 | ## Push/Pull operations hooks protocol, available options are: |
|
519 | ## Push/Pull operations hooks protocol, available options are: | |
522 | ## `pyro4` - use pyro4 server |
|
|||
523 | ## `http` - use http-rpc backend (default) |
|
520 | ## `http` - use http-rpc backend (default) | |
524 | vcs.hooks.protocol = http |
|
521 | vcs.hooks.protocol = http | |
525 |
|
522 | |||
@@ -635,7 +632,7 b' formatter = generic' | |||||
635 | ################ |
|
632 | ################ | |
636 |
|
633 | |||
637 | [formatter_generic] |
|
634 | [formatter_generic] | |
638 |
class = rhodecode.lib.logging_formatter. |
|
635 | class = rhodecode.lib.logging_formatter.ExceptionAwareFormatter | |
639 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s |
|
636 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | |
640 | datefmt = %Y-%m-%d %H:%M:%S |
|
637 | datefmt = %Y-%m-%d %H:%M:%S | |
641 |
|
638 |
@@ -17,7 +17,6 b' implemented in :mod:`rhodecode.lib.middl' | |||||
17 | .. toctree:: |
|
17 | .. toctree:: | |
18 | :maxdepth: 2 |
|
18 | :maxdepth: 2 | |
19 |
|
19 | |||
20 | http-transition |
|
|||
21 | middleware |
|
20 | middleware | |
22 | vcsserver |
|
21 | vcsserver | |
23 | subversion |
|
22 | subversion |
@@ -47,7 +47,7 b' the ``debug`` level.' | |||||
47 | ### LOGGING CONFIGURATION #### |
|
47 | ### LOGGING CONFIGURATION #### | |
48 | ################################ |
|
48 | ################################ | |
49 | [loggers] |
|
49 | [loggers] | |
50 |
keys = root, routes, rhodecode, sqlalchemy, beaker, |
|
50 | keys = root, routes, rhodecode, sqlalchemy, beaker, templates | |
51 |
|
51 | |||
52 | [handlers] |
|
52 | [handlers] | |
53 | keys = console, console_sql, file, file_rotating |
|
53 | keys = console, console_sql, file, file_rotating | |
@@ -75,12 +75,6 b' the ``debug`` level.' | |||||
75 | qualname = beaker.container |
|
75 | qualname = beaker.container | |
76 | propagate = 1 |
|
76 | propagate = 1 | |
77 |
|
77 | |||
78 | [logger_pyro4] |
|
|||
79 | level = DEBUG |
|
|||
80 | handlers = |
|
|||
81 | qualname = Pyro4 |
|
|||
82 | propagate = 1 |
|
|||
83 |
|
||||
84 | [logger_templates] |
|
78 | [logger_templates] | |
85 | level = INFO |
|
79 | level = INFO | |
86 | handlers = |
|
80 | handlers = |
@@ -232,7 +232,7 b' For a more detailed explanation of the l' | |||||
232 | ### LOGGING CONFIGURATION #### |
|
232 | ### LOGGING CONFIGURATION #### | |
233 | ################################ |
|
233 | ################################ | |
234 | [loggers] |
|
234 | [loggers] | |
235 |
keys = root, vcsserver, |
|
235 | keys = root, vcsserver, beaker | |
236 |
|
236 | |||
237 | [handlers] |
|
237 | [handlers] | |
238 | keys = console |
|
238 | keys = console | |
@@ -259,12 +259,6 b' For a more detailed explanation of the l' | |||||
259 | qualname = beaker |
|
259 | qualname = beaker | |
260 | propagate = 1 |
|
260 | propagate = 1 | |
261 |
|
261 | |||
262 | [logger_pyro4] |
|
|||
263 | level = DEBUG |
|
|||
264 | handlers = |
|
|||
265 | qualname = Pyro4 |
|
|||
266 | propagate = 1 |
|
|||
267 |
|
||||
268 |
|
262 | |||
269 | ############## |
|
263 | ############## | |
270 | ## HANDLERS ## |
|
264 | ## HANDLERS ## |
@@ -197,19 +197,6 b'' | |||||
197 | license = [ pkgs.lib.licenses.bsdOriginal ]; |
|
197 | license = [ pkgs.lib.licenses.bsdOriginal ]; | |
198 | }; |
|
198 | }; | |
199 | }; |
|
199 | }; | |
200 | Pyro4 = super.buildPythonPackage { |
|
|||
201 | name = "Pyro4-4.41"; |
|
|||
202 | buildInputs = with self; []; |
|
|||
203 | doCheck = false; |
|
|||
204 | propagatedBuildInputs = with self; [serpent]; |
|
|||
205 | src = fetchurl { |
|
|||
206 | url = "https://pypi.python.org/packages/56/2b/89b566b4bf3e7f8ba790db2d1223852f8cb454c52cab7693dd41f608ca2a/Pyro4-4.41.tar.gz"; |
|
|||
207 | md5 = "ed69e9bfafa9c06c049a87cb0c4c2b6c"; |
|
|||
208 | }; |
|
|||
209 | meta = { |
|
|||
210 | license = [ pkgs.lib.licenses.mit ]; |
|
|||
211 | }; |
|
|||
212 | }; |
|
|||
213 | Routes = super.buildPythonPackage { |
|
200 | Routes = super.buildPythonPackage { | |
214 | name = "Routes-1.13"; |
|
201 | name = "Routes-1.13"; | |
215 | buildInputs = with self; []; |
|
202 | buildInputs = with self; []; | |
@@ -1501,7 +1488,7 b'' | |||||
1501 | name = "rhodecode-enterprise-ce-4.7.0"; |
|
1488 | name = "rhodecode-enterprise-ce-4.7.0"; | |
1502 | buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock WebTest cov-core coverage cssselect lxml configobj]; |
|
1489 | buildInputs = with self; [pytest py pytest-cov pytest-sugar pytest-runner pytest-catchlog pytest-profiling gprof2dot pytest-timeout mock WebTest cov-core coverage cssselect lxml configobj]; | |
1503 | doCheck = true; |
|
1490 | doCheck = true; | |
1504 |
propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments pygments-markdown-lexer Pylons |
|
1491 | propagatedBuildInputs = with self; [Babel Beaker FormEncode Mako Markdown MarkupSafe MySQL-python Paste PasteDeploy PasteScript Pygments pygments-markdown-lexer Pylons Routes SQLAlchemy Tempita URLObject WebError WebHelpers WebHelpers2 WebOb WebTest Whoosh alembic amqplib anyjson appenlight-client authomatic backport-ipaddress celery channelstream colander decorator deform docutils gevent gunicorn infrae.cache ipython iso8601 kombu msgpack-python packaging psycopg2 py-gfm pycrypto pycurl pyparsing pyramid pyramid-debugtoolbar pyramid-mako pyramid-beaker pysqlite python-dateutil python-ldap python-memcached python-pam recaptcha-client repoze.lru requests simplejson subprocess32 waitress zope.cachedescriptors dogpile.cache dogpile.core psutil py-bcrypt]; | |
1505 | src = ./.; |
|
1492 | src = ./.; | |
1506 | meta = { |
|
1493 | meta = { | |
1507 | license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ]; |
|
1494 | license = [ { fullName = "Affero GNU General Public License v3 or later (AGPLv3+)"; } { fullName = "AGPLv3, and Commercial License"; } ]; | |
@@ -1520,19 +1507,6 b'' | |||||
1520 | license = [ { fullName = "AGPLv3 and Proprietary"; } ]; |
|
1507 | license = [ { fullName = "AGPLv3 and Proprietary"; } ]; | |
1521 | }; |
|
1508 | }; | |
1522 | }; |
|
1509 | }; | |
1523 | serpent = super.buildPythonPackage { |
|
|||
1524 | name = "serpent-1.15"; |
|
|||
1525 | buildInputs = with self; []; |
|
|||
1526 | doCheck = false; |
|
|||
1527 | propagatedBuildInputs = with self; []; |
|
|||
1528 | src = fetchurl { |
|
|||
1529 | url = "https://pypi.python.org/packages/7b/38/b2b27673a882ff2ea5871bb3e3e6b496ebbaafd1612e51990ffb158b9254/serpent-1.15.tar.gz"; |
|
|||
1530 | md5 = "e27b1aad5c218e16442f52abb7c7053a"; |
|
|||
1531 | }; |
|
|||
1532 | meta = { |
|
|||
1533 | license = [ pkgs.lib.licenses.mit ]; |
|
|||
1534 | }; |
|
|||
1535 | }; |
|
|||
1536 | setproctitle = super.buildPythonPackage { |
|
1510 | setproctitle = super.buildPythonPackage { | |
1537 | name = "setproctitle-1.1.8"; |
|
1511 | name = "setproctitle-1.1.8"; | |
1538 | buildInputs = with self; []; |
|
1512 | buildInputs = with self; []; |
@@ -2,7 +2,6 b'' | |||||
2 | testpaths = ./rhodecode |
|
2 | testpaths = ./rhodecode | |
3 | pylons_config = rhodecode/tests/rhodecode.ini |
|
3 | pylons_config = rhodecode/tests/rhodecode.ini | |
4 | vcsserver_protocol = http |
|
4 | vcsserver_protocol = http | |
5 | vcsserver_config_pyro4 = rhodecode/tests/vcsserver_pyro4.ini |
|
|||
6 | vcsserver_config_http = rhodecode/tests/vcsserver_http.ini |
|
5 | vcsserver_config_http = rhodecode/tests/vcsserver_http.ini | |
7 | norecursedirs = tests/scripts |
|
6 | norecursedirs = tests/scripts | |
8 | addopts = -k "not _BaseTest" |
|
7 | addopts = -k "not _BaseTest" |
@@ -123,9 +123,5 b' https://code.rhodecode.com/rhodecode-too' | |||||
123 | ## appenlight |
|
123 | ## appenlight | |
124 | appenlight-client==0.6.14 |
|
124 | appenlight-client==0.6.14 | |
125 |
|
125 | |||
126 | # Pyro/Deprecated TODO(Marcink): remove in 4.7 release. |
|
|||
127 | Pyro4==4.41 |
|
|||
128 | serpent==1.15 |
|
|||
129 |
|
||||
130 | ## test related requirements |
|
126 | ## test related requirements | |
131 | -r requirements_test.txt |
|
127 | -r requirements_test.txt |
@@ -184,7 +184,6 b' def load_pyramid_environment(global_conf' | |||||
184 | protocol=utils.get_vcs_server_protocol(settings), |
|
184 | protocol=utils.get_vcs_server_protocol(settings), | |
185 | log_level=settings['vcs.server.log_level']) |
|
185 | log_level=settings['vcs.server.log_level']) | |
186 |
|
186 | |||
187 | utils.configure_pyro4(settings) |
|
|||
188 | utils.configure_vcs(settings) |
|
187 | utils.configure_vcs(settings) | |
189 | if vcs_server_enabled: |
|
188 | if vcs_server_enabled: | |
190 | connect_vcs(vcs_server_uri, utils.get_vcs_server_protocol(settings)) |
|
189 | connect_vcs(vcs_server_uri, utils.get_vcs_server_protocol(settings)) |
@@ -41,9 +41,6 b'' | |||||
41 | "python2.7-Pylons-1.0.1-patch1": { |
|
41 | "python2.7-Pylons-1.0.1-patch1": { | |
42 | "BSD 4-clause \"Original\" or \"Old\" License": "http://spdx.org/licenses/BSD-4-Clause" |
|
42 | "BSD 4-clause \"Original\" or \"Old\" License": "http://spdx.org/licenses/BSD-4-Clause" | |
43 |
}, |
|
43 | }, | |
44 | "python2.7-Pyro4-4.35": { |
|
|||
45 | "MIT License": "http://spdx.org/licenses/MIT" |
|
|||
46 | }, |
|
|||
47 | "python2.7-Routes-1.13": { |
|
44 | "python2.7-Routes-1.13": { | |
48 | "BSD 4-clause \"Original\" or \"Old\" License": "http://spdx.org/licenses/BSD-4-Clause" |
|
45 | "BSD 4-clause \"Original\" or \"Old\" License": "http://spdx.org/licenses/BSD-4-Clause" | |
49 | }, |
|
46 | }, | |
@@ -215,9 +212,6 b'' | |||||
215 | "python2.7-requests-2.9.1": { |
|
212 | "python2.7-requests-2.9.1": { | |
216 | "Apache License 2.0": "http://spdx.org/licenses/Apache-2.0" |
|
213 | "Apache License 2.0": "http://spdx.org/licenses/Apache-2.0" | |
217 |
}, |
|
214 | }, | |
218 | "python2.7-serpent-1.12": { |
|
|||
219 | "MIT License": "http://spdx.org/licenses/MIT" |
|
|||
220 | }, |
|
|||
221 | "python2.7-setuptools-19.4": { |
|
215 | "python2.7-setuptools-19.4": { | |
222 | "Python Software Foundation License version 2": "http://spdx.org/licenses/Python-2.0", |
|
216 | "Python Software Foundation License version 2": "http://spdx.org/licenses/Python-2.0", | |
223 | "Zope Public License 2.0": "http://spdx.org/licenses/ZPL-2.0" |
|
217 | "Zope Public License 2.0": "http://spdx.org/licenses/ZPL-2.0" |
@@ -20,29 +20,11 b'' | |||||
20 |
|
20 | |||
21 | import os |
|
21 | import os | |
22 | import shlex |
|
22 | import shlex | |
23 | import Pyro4 |
|
|||
24 | import platform |
|
23 | import platform | |
25 |
|
24 | |||
26 | from rhodecode.model import init_model |
|
25 | from rhodecode.model import init_model | |
27 |
|
26 | |||
28 |
|
27 | |||
29 | def configure_pyro4(config): |
|
|||
30 | """ |
|
|||
31 | Configure Pyro4 based on `config`. |
|
|||
32 |
|
||||
33 | This will mainly set the different configuration parameters of the Pyro4 |
|
|||
34 | library based on the settings in our INI files. The Pyro4 documentation |
|
|||
35 | lists more details about the specific settings and their meaning. |
|
|||
36 | """ |
|
|||
37 | Pyro4.config.COMMTIMEOUT = float(config['vcs.connection_timeout']) |
|
|||
38 | Pyro4.config.SERIALIZER = 'pickle' |
|
|||
39 | Pyro4.config.SERIALIZERS_ACCEPTED.add('pickle') |
|
|||
40 |
|
||||
41 | # Note: We need server configuration in the WSGI processes |
|
|||
42 | # because we provide a callback server in certain vcs operations. |
|
|||
43 | Pyro4.config.SERVERTYPE = "multiplex" |
|
|||
44 | Pyro4.config.POLLTIMEOUT = 0.01 |
|
|||
45 |
|
||||
46 |
|
28 | |||
47 | def configure_vcs(config): |
|
29 | def configure_vcs(config): | |
48 | """ |
|
30 | """ |
@@ -226,7 +226,6 b' def vcsconnection(func):' | |||||
226 | for alias in rhodecode.BACKENDS.keys(): |
|
226 | for alias in rhodecode.BACKENDS.keys(): | |
227 | if alias not in backends: |
|
227 | if alias not in backends: | |
228 | del rhodecode.BACKENDS[alias] |
|
228 | del rhodecode.BACKENDS[alias] | |
229 | utils.configure_pyro4(settings) |
|
|||
230 | utils.configure_vcs(settings) |
|
229 | utils.configure_vcs(settings) | |
231 | connect_vcs( |
|
230 | connect_vcs( | |
232 | settings['vcs.server'], |
|
231 | settings['vcs.server'], |
@@ -26,7 +26,6 b' from BaseHTTPServer import BaseHTTPReque' | |||||
26 | from SocketServer import TCPServer |
|
26 | from SocketServer import TCPServer | |
27 | from routes.util import URLGenerator |
|
27 | from routes.util import URLGenerator | |
28 |
|
28 | |||
29 | import Pyro4 |
|
|||
30 | import pylons |
|
29 | import pylons | |
31 | import rhodecode |
|
30 | import rhodecode | |
32 |
|
31 | |||
@@ -73,7 +72,7 b' class HooksHttpHandler(BaseHTTPRequestHa' | |||||
73 |
|
72 | |||
74 | def log_message(self, format, *args): |
|
73 | def log_message(self, format, *args): | |
75 | """ |
|
74 | """ | |
76 | This is an overriden method of BaseHTTPRequestHandler which logs using |
|
75 | This is an overridden method of BaseHTTPRequestHandler which logs using | |
77 | logging library instead of writing directly to stderr. |
|
76 | logging library instead of writing directly to stderr. | |
78 | """ |
|
77 | """ | |
79 |
|
78 | |||
@@ -123,38 +122,6 b' class ThreadedHookCallbackDaemon(object)' | |||||
123 | raise NotImplementedError() |
|
122 | raise NotImplementedError() | |
124 |
|
123 | |||
125 |
|
124 | |||
126 | class Pyro4HooksCallbackDaemon(ThreadedHookCallbackDaemon): |
|
|||
127 | """ |
|
|||
128 | Context manager which will run a callback daemon in a background thread. |
|
|||
129 | """ |
|
|||
130 |
|
||||
131 | hooks_uri = None |
|
|||
132 |
|
||||
133 | def _prepare(self): |
|
|||
134 | log.debug("Preparing callback daemon and registering hook object") |
|
|||
135 | self._daemon = Pyro4.Daemon() |
|
|||
136 | hooks_interface = Hooks() |
|
|||
137 | self.hooks_uri = str(self._daemon.register(hooks_interface)) |
|
|||
138 | log.debug("Hooks uri is: %s", self.hooks_uri) |
|
|||
139 |
|
||||
140 | def _run(self): |
|
|||
141 | log.debug("Running event loop of callback daemon in background thread") |
|
|||
142 | callback_thread = threading.Thread( |
|
|||
143 | target=self._daemon.requestLoop, |
|
|||
144 | kwargs={'loopCondition': lambda: not self._done}) |
|
|||
145 | callback_thread.daemon = True |
|
|||
146 | callback_thread.start() |
|
|||
147 | self._callback_thread = callback_thread |
|
|||
148 |
|
||||
149 | def _stop(self): |
|
|||
150 | log.debug("Waiting for background thread to finish.") |
|
|||
151 | self._done = True |
|
|||
152 | self._callback_thread.join() |
|
|||
153 | self._daemon.close() |
|
|||
154 | self._daemon = None |
|
|||
155 | self._callback_thread = None |
|
|||
156 |
|
||||
157 |
|
||||
158 | class HttpHooksCallbackDaemon(ThreadedHookCallbackDaemon): |
|
125 | class HttpHooksCallbackDaemon(ThreadedHookCallbackDaemon): | |
159 | """ |
|
126 | """ | |
160 | Context manager which will run a callback daemon in a background thread. |
|
127 | Context manager which will run a callback daemon in a background thread. | |
@@ -202,9 +169,7 b' def prepare_callback_daemon(extras, prot' | |||||
202 | callback_daemon = DummyHooksCallbackDaemon() |
|
169 | callback_daemon = DummyHooksCallbackDaemon() | |
203 | extras['hooks_module'] = callback_daemon.hooks_module |
|
170 | extras['hooks_module'] = callback_daemon.hooks_module | |
204 | else: |
|
171 | else: | |
205 |
if protocol == 'p |
|
172 | if protocol == 'http': | |
206 | callback_daemon = Pyro4HooksCallbackDaemon() |
|
|||
207 | elif protocol == 'http': |
|
|||
208 | callback_daemon = HttpHooksCallbackDaemon() |
|
173 | callback_daemon = HttpHooksCallbackDaemon() | |
209 | else: |
|
174 | else: | |
210 | log.error('Unsupported callback daemon protocol "%s"', protocol) |
|
175 | log.error('Unsupported callback daemon protocol "%s"', protocol) | |
@@ -221,27 +186,22 b' class Hooks(object):' | |||||
221 | Exposes the hooks for remote call backs |
|
186 | Exposes the hooks for remote call backs | |
222 | """ |
|
187 | """ | |
223 |
|
188 | |||
224 | @Pyro4.callback |
|
|||
225 | def repo_size(self, extras): |
|
189 | def repo_size(self, extras): | |
226 | log.debug("Called repo_size of Hooks object") |
|
190 | log.debug("Called repo_size of Hooks object") | |
227 | return self._call_hook(hooks_base.repo_size, extras) |
|
191 | return self._call_hook(hooks_base.repo_size, extras) | |
228 |
|
192 | |||
229 | @Pyro4.callback |
|
|||
230 | def pre_pull(self, extras): |
|
193 | def pre_pull(self, extras): | |
231 | log.debug("Called pre_pull of Hooks object") |
|
194 | log.debug("Called pre_pull of Hooks object") | |
232 | return self._call_hook(hooks_base.pre_pull, extras) |
|
195 | return self._call_hook(hooks_base.pre_pull, extras) | |
233 |
|
196 | |||
234 | @Pyro4.callback |
|
|||
235 | def post_pull(self, extras): |
|
197 | def post_pull(self, extras): | |
236 | log.debug("Called post_pull of Hooks object") |
|
198 | log.debug("Called post_pull of Hooks object") | |
237 | return self._call_hook(hooks_base.post_pull, extras) |
|
199 | return self._call_hook(hooks_base.post_pull, extras) | |
238 |
|
200 | |||
239 | @Pyro4.callback |
|
|||
240 | def pre_push(self, extras): |
|
201 | def pre_push(self, extras): | |
241 | log.debug("Called pre_push of Hooks object") |
|
202 | log.debug("Called pre_push of Hooks object") | |
242 | return self._call_hook(hooks_base.pre_push, extras) |
|
203 | return self._call_hook(hooks_base.pre_push, extras) | |
243 |
|
204 | |||
244 | @Pyro4.callback |
|
|||
245 | def post_push(self, extras): |
|
205 | def post_push(self, extras): | |
246 | log.debug("Called post_push of Hooks object") |
|
206 | log.debug("Called post_push of Hooks object") | |
247 | return self._call_hook(hooks_base.post_push, extras) |
|
207 | return self._call_hook(hooks_base.post_push, extras) |
@@ -67,9 +67,9 b' def format_sql(sql):' | |||||
67 | return sql |
|
67 | return sql | |
68 |
|
68 | |||
69 |
|
69 | |||
70 |
class |
|
70 | class ExceptionAwareFormatter(logging.Formatter): | |
71 | """ |
|
71 | """ | |
72 |
Extended logging formatter which prints out |
|
72 | Extended logging formatter which prints out remote tracebacks. | |
73 | """ |
|
73 | """ | |
74 |
|
74 | |||
75 | def formatException(self, ei): |
|
75 | def formatException(self, ei): | |
@@ -86,10 +86,12 b' class Pyro4AwareFormatter(logging.Format' | |||||
86 |
|
86 | |||
87 | try: |
|
87 | try: | |
88 | if ex_type is not None and ex_value is None and ex_tb is None: |
|
88 | if ex_type is not None and ex_value is None and ex_tb is None: | |
89 |
# possible old (3.x) call syntax where caller is only |
|
89 | # possible old (3.x) call syntax where caller is only | |
|
90 | # providing exception object | |||
90 | if type(ex_type) is not type: |
|
91 | if type(ex_type) is not type: | |
91 | raise TypeError( |
|
92 | raise TypeError( | |
92 |
"invalid argument: ex_type should be an exception |
|
93 | "invalid argument: ex_type should be an exception " | |
|
94 | "type, or just supply no arguments at all") | |||
93 | if ex_type is None and ex_tb is None: |
|
95 | if ex_type is None and ex_tb is None: | |
94 | ex_type, ex_value, ex_tb = sys.exc_info() |
|
96 | ex_type, ex_value, ex_tb = sys.exc_info() | |
95 |
|
97 | |||
@@ -105,7 +107,7 b' class Pyro4AwareFormatter(logging.Format' | |||||
105 | return local_tb |
|
107 | return local_tb | |
106 |
|
108 | |||
107 |
|
109 | |||
108 |
class ColorFormatter( |
|
110 | class ColorFormatter(ExceptionAwareFormatter): | |
109 |
|
111 | |||
110 | def format(self, record): |
|
112 | def format(self, record): | |
111 | """ |
|
113 | """ | |
@@ -134,3 +136,6 b' class ColorFormatterSql(logging.Formatte' | |||||
134 |
|
136 | |||
135 | colored_record = ''.join([start, def_record, end]) |
|
137 | colored_record = ''.join([start, def_record, end]) | |
136 | return colored_record |
|
138 | return colored_record | |
|
139 | ||||
|
140 | # marcink: needs to stay with this name for backward .ini compatability | |||
|
141 | Pyro4AwareFormatter = ExceptionAwareFormatter |
@@ -42,7 +42,7 b' from rhodecode.lib.exceptions import (' | |||||
42 | NotAllowedToCreateUserError) |
|
42 | NotAllowedToCreateUserError) | |
43 | from rhodecode.lib.hooks_daemon import prepare_callback_daemon |
|
43 | from rhodecode.lib.hooks_daemon import prepare_callback_daemon | |
44 | from rhodecode.lib.middleware import appenlight |
|
44 | from rhodecode.lib.middleware import appenlight | |
45 |
from rhodecode.lib.middleware.utils import |
|
45 | from rhodecode.lib.middleware.utils import scm_app_http | |
46 | from rhodecode.lib.utils import ( |
|
46 | from rhodecode.lib.utils import ( | |
47 | is_valid_repo, get_rhodecode_realm, get_rhodecode_base_path, SLUG_RE) |
|
47 | is_valid_repo, get_rhodecode_realm, get_rhodecode_base_path, SLUG_RE) | |
48 | from rhodecode.lib.utils2 import safe_str, fix_PATH, str2bool, safe_unicode |
|
48 | from rhodecode.lib.utils2 import safe_str, fix_PATH, str2bool, safe_unicode | |
@@ -177,9 +177,6 b' class SimpleVCS(object):' | |||||
177 | if custom_implementation == 'http': |
|
177 | if custom_implementation == 'http': | |
178 | log.info('Using HTTP implementation of scm app.') |
|
178 | log.info('Using HTTP implementation of scm app.') | |
179 | scm_app_impl = scm_app_http |
|
179 | scm_app_impl = scm_app_http | |
180 | elif custom_implementation == 'pyro4': |
|
|||
181 | log.info('Using Pyro implementation of scm app.') |
|
|||
182 | scm_app_impl = scm_app |
|
|||
183 | else: |
|
180 | else: | |
184 | log.info('Using custom implementation of scm_app: "{}"'.format( |
|
181 | log.info('Using custom implementation of scm_app: "{}"'.format( | |
185 | custom_implementation)) |
|
182 | custom_implementation)) | |
@@ -512,7 +509,7 b' class SimpleVCS(object):' | |||||
512 | raise NotImplementedError() |
|
509 | raise NotImplementedError() | |
513 |
|
510 | |||
514 | def _create_config(self, extras, repo_name): |
|
511 | def _create_config(self, extras, repo_name): | |
515 |
"""Create a |
|
512 | """Create a safe config representation.""" | |
516 | raise NotImplementedError() |
|
513 | raise NotImplementedError() | |
517 |
|
514 | |||
518 | def _prepare_callback_daemon(self, extras): |
|
515 | def _prepare_callback_daemon(self, extras): |
@@ -42,7 +42,7 b' def create_git_wsgi_app(repo_path, repo_' | |||||
42 | """ |
|
42 | """ | |
43 | factory = GIT_REMOTE_WSGI |
|
43 | factory = GIT_REMOTE_WSGI | |
44 | if not factory: |
|
44 | if not factory: | |
45 |
log.error(' |
|
45 | log.error('VCSServer has not been initialized yet') | |
46 |
|
46 | |||
47 | return wsgi_app_caller_client.RemoteAppCaller( |
|
47 | return wsgi_app_caller_client.RemoteAppCaller( | |
48 | factory, repo_path, repo_name, config) |
|
48 | factory, repo_path, repo_name, config) | |
@@ -57,7 +57,7 b' def create_hg_wsgi_app(repo_path, repo_n' | |||||
57 | """ |
|
57 | """ | |
58 | factory = HG_REMOTE_WSGI |
|
58 | factory = HG_REMOTE_WSGI | |
59 | if not factory: |
|
59 | if not factory: | |
60 |
log.error(' |
|
60 | log.error('VCSServer has not been initialized yet') | |
61 |
|
61 | |||
62 | return wsgi_app_caller_client.RemoteAppCaller( |
|
62 | return wsgi_app_caller_client.RemoteAppCaller( | |
63 | factory, repo_path, repo_name, config) |
|
63 | factory, repo_path, repo_name, config) |
@@ -24,8 +24,6 b' Utility to call a WSGI app wrapped in a ' | |||||
24 |
|
24 | |||
25 | import logging |
|
25 | import logging | |
26 |
|
26 | |||
27 | from Pyro4.errors import ConnectionClosedError |
|
|||
28 |
|
||||
29 |
|
27 | |||
30 | log = logging.getLogger(__name__) |
|
28 | log = logging.getLogger(__name__) | |
31 |
|
29 | |||
@@ -83,12 +81,6 b' class RemoteAppCaller(object):' | |||||
83 | input_data = environ['wsgi.input'].read() |
|
81 | input_data = environ['wsgi.input'].read() | |
84 | clean_environ = _get_clean_environ(environ) |
|
82 | clean_environ = _get_clean_environ(environ) | |
85 |
|
83 | |||
86 | try: |
|
|||
87 | data, status, headers = self._remote_wsgi.handle( |
|
|||
88 | clean_environ, input_data, *self._args, **self._kwargs) |
|
|||
89 | except ConnectionClosedError: |
|
|||
90 | log.debug('Remote Pyro Server ConnectionClosedError') |
|
|||
91 | self._remote_wsgi._pyroReconnect(tries=15) |
|
|||
92 |
|
|
84 | data, status, headers = self._remote_wsgi.handle( | |
93 |
|
|
85 | clean_environ, input_data, *self._args, **self._kwargs) | |
94 |
|
86 |
@@ -216,8 +216,6 b' class VCSMiddleware(object):' | |||||
216 | vcs_handler.SCM): |
|
216 | vcs_handler.SCM): | |
217 | return HTTPNotFound()(environ, start_response) |
|
217 | return HTTPNotFound()(environ, start_response) | |
218 |
|
218 | |||
219 | # TODO: johbo: Needed for the Pyro4 backend and Mercurial only. |
|
|||
220 | # Remove once we fully switched to the HTTP backend. |
|
|||
221 | environ['REPO_NAME'] = vcs_handler.url_repo_name |
|
219 | environ['REPO_NAME'] = vcs_handler.url_repo_name | |
222 |
|
220 | |||
223 | # register repo config back to the handler |
|
221 | # register repo config back to the handler |
@@ -40,8 +40,6 b' import time' | |||||
40 | import urlparse |
|
40 | import urlparse | |
41 | from cStringIO import StringIO |
|
41 | from cStringIO import StringIO | |
42 |
|
42 | |||
43 | import Pyro4 |
|
|||
44 | from Pyro4.errors import CommunicationError |
|
|||
45 |
|
43 | |||
46 | from rhodecode.lib.vcs.conf import settings |
|
44 | from rhodecode.lib.vcs.conf import settings | |
47 | from rhodecode.lib.vcs.backends import get_vcs_instance, get_backend |
|
45 | from rhodecode.lib.vcs.backends import get_vcs_instance, get_backend | |
@@ -72,36 +70,6 b' def get_version():' | |||||
72 | return '.'.join((str(each) for each in VERSION[:3])) |
|
70 | return '.'.join((str(each) for each in VERSION[:3])) | |
73 |
|
71 | |||
74 |
|
72 | |||
75 | def connect_pyro4(server_and_port): |
|
|||
76 | from rhodecode.lib.vcs import connection, client |
|
|||
77 | from rhodecode.lib.middleware.utils import scm_app |
|
|||
78 |
|
||||
79 | git_remote = client.RequestScopeProxyFactory( |
|
|||
80 | settings.pyro_remote(settings.PYRO_GIT, server_and_port)) |
|
|||
81 | hg_remote = client.RequestScopeProxyFactory( |
|
|||
82 | settings.pyro_remote(settings.PYRO_HG, server_and_port)) |
|
|||
83 | svn_remote = client.RequestScopeProxyFactory( |
|
|||
84 | settings.pyro_remote(settings.PYRO_SVN, server_and_port)) |
|
|||
85 |
|
||||
86 | connection.Git = client.RepoMaker(proxy_factory=git_remote) |
|
|||
87 | connection.Hg = client.RepoMaker(proxy_factory=hg_remote) |
|
|||
88 | connection.Svn = client.RepoMaker(proxy_factory=svn_remote) |
|
|||
89 |
|
||||
90 | scm_app.GIT_REMOTE_WSGI = Pyro4.Proxy( |
|
|||
91 | settings.pyro_remote( |
|
|||
92 | settings.PYRO_GIT_REMOTE_WSGI, server_and_port)) |
|
|||
93 | scm_app.HG_REMOTE_WSGI = Pyro4.Proxy( |
|
|||
94 | settings.pyro_remote( |
|
|||
95 | settings.PYRO_HG_REMOTE_WSGI, server_and_port)) |
|
|||
96 |
|
||||
97 | @atexit.register |
|
|||
98 | def free_connection_resources(): |
|
|||
99 | connection.Git = None |
|
|||
100 | connection.Hg = None |
|
|||
101 | connection.Svn = None |
|
|||
102 | connection.Service = None |
|
|||
103 |
|
||||
104 |
|
||||
105 | def connect_http(server_and_port): |
|
73 | def connect_http(server_and_port): | |
106 | from rhodecode.lib.vcs import connection, client_http |
|
74 | from rhodecode.lib.vcs import connection, client_http | |
107 | from rhodecode.lib.middleware.utils import scm_app |
|
75 | from rhodecode.lib.middleware.utils import scm_app | |
@@ -135,11 +103,9 b' def connect_vcs(server_and_port, protoco' | |||||
135 | Initializes the connection to the vcs server. |
|
103 | Initializes the connection to the vcs server. | |
136 |
|
104 | |||
137 | :param server_and_port: str, e.g. "localhost:9900" |
|
105 | :param server_and_port: str, e.g. "localhost:9900" | |
138 |
:param protocol: str |
|
106 | :param protocol: str or "http" | |
139 | """ |
|
107 | """ | |
140 |
if protocol == 'p |
|
108 | if protocol == 'http': | |
141 | connect_pyro4(server_and_port) |
|
|||
142 | elif protocol == 'http': |
|
|||
143 | connect_http(server_and_port) |
|
109 | connect_http(server_and_port) | |
144 | else: |
|
110 | else: | |
145 | raise Exception('Invalid vcs server protocol "{}"'.format(protocol)) |
|
111 | raise Exception('Invalid vcs server protocol "{}"'.format(protocol)) | |
@@ -154,31 +120,10 b' def start_vcs_server(server_and_port, pr' | |||||
154 | log.info('Starting VCSServer as a sub process with %s protocol', protocol) |
|
120 | log.info('Starting VCSServer as a sub process with %s protocol', protocol) | |
155 | if protocol == 'http': |
|
121 | if protocol == 'http': | |
156 | return _start_http_vcs_server(server_and_port, log_level) |
|
122 | return _start_http_vcs_server(server_and_port, log_level) | |
157 | elif protocol == 'pyro4': |
|
|||
158 | return _start_pyro4_vcs_server(server_and_port, log_level) |
|
|||
159 | else: |
|
123 | else: | |
160 | raise Exception('Invalid vcs server protocol "{}"'.format(protocol)) |
|
124 | raise Exception('Invalid vcs server protocol "{}"'.format(protocol)) | |
161 |
|
125 | |||
162 |
|
126 | |||
163 | def _start_pyro4_vcs_server(server_and_port, log_level=None): |
|
|||
164 | _try_to_shutdown_running_server(server_and_port, protocol='pyro4') |
|
|||
165 | host, port = server_and_port.rsplit(":", 1) |
|
|||
166 | host = host.strip('[]') |
|
|||
167 | args = [ |
|
|||
168 | 'vcsserver', '--port', port, '--host', host, '--locale', 'en_US.UTF-8', |
|
|||
169 | '--threadpool', '32'] |
|
|||
170 | if log_level: |
|
|||
171 | args += ['--log-level', log_level] |
|
|||
172 | proc = subprocess32.Popen(args) |
|
|||
173 |
|
||||
174 | def cleanup_server_process(): |
|
|||
175 | proc.kill() |
|
|||
176 | atexit.register(cleanup_server_process) |
|
|||
177 |
|
||||
178 | server = create_vcsserver_proxy(server_and_port, protocol='pyro4') |
|
|||
179 | _wait_until_vcs_server_is_reachable(server) |
|
|||
180 |
|
||||
181 |
|
||||
182 | def _start_http_vcs_server(server_and_port, log_level=None): |
|
127 | def _start_http_vcs_server(server_and_port, log_level=None): | |
183 | # TODO: mikhail: shutdown if an http server already runs |
|
128 | # TODO: mikhail: shutdown if an http server already runs | |
184 |
|
129 | |||
@@ -202,7 +147,7 b' def _wait_until_vcs_server_is_reachable(' | |||||
202 | try: |
|
147 | try: | |
203 | server.ping() |
|
148 | server.ping() | |
204 | return |
|
149 | return | |
205 |
except (VCSCommunicationError, |
|
150 | except (VCSCommunicationError, pycurl.error): | |
206 | log.debug('VCSServer not started yet, retry to connect.') |
|
151 | log.debug('VCSServer not started yet, retry to connect.') | |
207 | time.sleep(0.5) |
|
152 | time.sleep(0.5) | |
208 | raise Exception( |
|
153 | raise Exception( | |
@@ -214,7 +159,7 b' def _try_to_shutdown_running_server(serv' | |||||
214 | server = create_vcsserver_proxy(server_and_port, protocol) |
|
159 | server = create_vcsserver_proxy(server_and_port, protocol) | |
215 | try: |
|
160 | try: | |
216 | server.shutdown() |
|
161 | server.shutdown() | |
217 |
except |
|
162 | except pycurl.error: | |
218 | return |
|
163 | return | |
219 |
|
164 | |||
220 | # TODO: Not sure why this is important, but without it the following start |
|
165 | # TODO: Not sure why this is important, but without it the following start | |
@@ -224,20 +169,12 b' def _try_to_shutdown_running_server(serv' | |||||
224 |
|
169 | |||
225 |
|
170 | |||
226 | def create_vcsserver_proxy(server_and_port, protocol): |
|
171 | def create_vcsserver_proxy(server_and_port, protocol): | |
227 |
if protocol == 'p |
|
172 | if protocol == 'http': | |
228 | return _create_vcsserver_proxy_pyro4(server_and_port) |
|
|||
229 | elif protocol == 'http': |
|
|||
230 | return _create_vcsserver_proxy_http(server_and_port) |
|
173 | return _create_vcsserver_proxy_http(server_and_port) | |
231 | else: |
|
174 | else: | |
232 | raise Exception('Invalid vcs server protocol "{}"'.format(protocol)) |
|
175 | raise Exception('Invalid vcs server protocol "{}"'.format(protocol)) | |
233 |
|
176 | |||
234 |
|
177 | |||
235 | def _create_vcsserver_proxy_pyro4(server_and_port): |
|
|||
236 | server = Pyro4.Proxy( |
|
|||
237 | settings.pyro_remote(settings.PYRO_VCSSERVER, server_and_port)) |
|
|||
238 | return server |
|
|||
239 |
|
||||
240 |
|
||||
241 | def _create_vcsserver_proxy_http(server_and_port): |
|
178 | def _create_vcsserver_proxy_http(server_and_port): | |
242 | from rhodecode.lib.vcs import client_http |
|
179 | from rhodecode.lib.vcs import client_http | |
243 |
|
180 |
@@ -20,13 +20,6 b'' | |||||
20 |
|
20 | |||
21 | """ |
|
21 | """ | |
22 | Client for the VCSServer implemented based on HTTP. |
|
22 | Client for the VCSServer implemented based on HTTP. | |
23 |
|
||||
24 |
|
||||
25 | Status |
|
|||
26 | ------ |
|
|||
27 |
|
||||
28 | This client implementation shall eventually replace the Pyro4 based |
|
|||
29 | implementation. |
|
|||
30 | """ |
|
23 | """ | |
31 |
|
24 | |||
32 | import copy |
|
25 | import copy |
@@ -52,27 +52,6 b' ARCHIVE_SPECS = {' | |||||
52 | HOOKS_PROTOCOL = None |
|
52 | HOOKS_PROTOCOL = None | |
53 | HOOKS_DIRECT_CALLS = False |
|
53 | HOOKS_DIRECT_CALLS = False | |
54 |
|
54 | |||
55 | PYRO_PORT = 9900 |
|
|||
56 |
|
||||
57 | PYRO_GIT = 'git_remote' |
|
|||
58 | PYRO_HG = 'hg_remote' |
|
|||
59 | PYRO_SVN = 'svn_remote' |
|
|||
60 | PYRO_VCSSERVER = 'vcs_server' |
|
|||
61 | PYRO_GIT_REMOTE_WSGI = 'git_remote_wsgi' |
|
|||
62 | PYRO_HG_REMOTE_WSGI = 'hg_remote_wsgi' |
|
|||
63 |
|
||||
64 | PYRO_RECONNECT_TRIES = 15 |
|
|||
65 | """ |
|
|||
66 | How many retries to reconnect will be performed if the connection was lost. |
|
|||
67 |
|
||||
68 | Each try takes 2s. Doing 15 means that we will give it up to 30s for a |
|
|||
69 | connection to be re-established. |
|
|||
70 | """ |
|
|||
71 |
|
||||
72 |
|
||||
73 | def pyro_remote(object_id, server_and_port): |
|
|||
74 | return "PYRO:%s@%s" % (object_id, server_and_port) |
|
|||
75 |
|
||||
76 |
|
55 | |||
77 | def available_aliases(): |
|
56 | def available_aliases(): | |
78 | """ |
|
57 | """ |
@@ -30,10 +30,6 b' class VCSCommunicationError(Exception):' | |||||
30 | pass |
|
30 | pass | |
31 |
|
31 | |||
32 |
|
32 | |||
33 | class PyroVCSCommunicationError(VCSCommunicationError): |
|
|||
34 | pass |
|
|||
35 |
|
||||
36 |
|
||||
37 | class HttpVCSCommunicationError(VCSCommunicationError): |
|
33 | class HttpVCSCommunicationError(VCSCommunicationError): | |
38 | pass |
|
34 | pass | |
39 |
|
35 |
@@ -326,8 +326,6 b' class TestShadowRepoExposure(object):' | |||||
326 |
|
326 | |||
327 |
|
327 | |||
328 | @pytest.mark.usefixtures('db') |
|
328 | @pytest.mark.usefixtures('db') | |
329 | @mock.patch.multiple( |
|
|||
330 | 'Pyro4.config', SERVERTYPE='multiplex', POLLTIMEOUT=0.01) |
|
|||
331 | class TestGenerateVcsResponse: |
|
329 | class TestGenerateVcsResponse: | |
332 |
|
330 | |||
333 | def test_ensures_that_start_response_is_called_early_enough(self): |
|
331 | def test_ensures_that_start_response_is_called_early_enough(self): |
@@ -38,12 +38,10 b' def test_vcs_unavailable_returns_vcs_err' | |||||
38 |
|
38 | |||
39 | # Depending on the used VCSServer protocol we have to patch a different |
|
39 | # Depending on the used VCSServer protocol we have to patch a different | |
40 | # RemoteRepo class to raise an exception. For the test it doesn't matter |
|
40 | # RemoteRepo class to raise an exception. For the test it doesn't matter | |
41 |
# if http |
|
41 | # if http is used, it just requires the exception to be raised. | |
42 | vcs_protocol = app_settings['vcs.server.protocol'] |
|
42 | vcs_protocol = app_settings['vcs.server.protocol'] | |
43 | if vcs_protocol == 'http': |
|
43 | if vcs_protocol == 'http': | |
44 | from rhodecode.lib.vcs.client_http import RemoteRepo |
|
44 | from rhodecode.lib.vcs.client_http import RemoteRepo | |
45 | elif vcs_protocol == 'pyro4': |
|
|||
46 | from rhodecode.lib.vcs.client import RemoteRepo |
|
|||
47 | else: |
|
45 | else: | |
48 | pytest.fail('Unknown VCS server protocol: "{}"'.format(vcs_protocol)) |
|
46 | pytest.fail('Unknown VCS server protocol: "{}"'.format(vcs_protocol)) | |
49 |
|
47 |
@@ -18,8 +18,6 b'' | |||||
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | import mock |
|
|||
22 | import Pyro4 |
|
|||
23 | import pytest |
|
21 | import pytest | |
24 |
|
22 | |||
25 | from rhodecode.tests.utils import CustomTestApp |
|
23 | from rhodecode.tests.utils import CustomTestApp | |
@@ -83,48 +81,3 b' def test_create_app_per_request_with_dat' | |||||
83 | app = vcs_http_app(vcsserver_http_echo_app) |
|
81 | app = vcs_http_app(vcsserver_http_echo_app) | |
84 | response = app.post('/', params=data) |
|
82 | response = app.post('/', params=data) | |
85 | assert response.status_code == 200 |
|
83 | assert response.status_code == 200 | |
86 |
|
||||
87 |
|
||||
88 | @pytest.fixture(scope='module') |
|
|||
89 | def vcsserver_pyro_echo_app(request, vcsserver_factory): |
|
|||
90 | """ |
|
|||
91 | A running VCSServer with the EchoApp activated via Pyro4. |
|
|||
92 | """ |
|
|||
93 | vcsserver = vcsserver_factory( |
|
|||
94 | request=request, |
|
|||
95 | use_http=False, |
|
|||
96 | overrides=[{'DEFAULT': {'dev.use_echo_app': 'true'}}]) |
|
|||
97 | return vcsserver |
|
|||
98 |
|
||||
99 |
|
||||
100 | def vcs_pyro4_app(vcsserver_pyro_echo_app): |
|
|||
101 | """ |
|
|||
102 | Pyro4 based Vcs proxy wrapped in WebTest |
|
|||
103 | """ |
|
|||
104 | stub_config = { |
|
|||
105 | 'git_update_server_info': 'stub', |
|
|||
106 | } |
|
|||
107 | server_and_port = vcsserver_pyro_echo_app.server_and_port |
|
|||
108 | GIT_REMOTE_WSGI = Pyro4.Proxy( |
|
|||
109 | settings.pyro_remote( |
|
|||
110 | settings.PYRO_GIT_REMOTE_WSGI, server_and_port)) |
|
|||
111 | with mock.patch('rhodecode.lib.middleware.utils.scm_app.GIT_REMOTE_WSGI', |
|
|||
112 | GIT_REMOTE_WSGI): |
|
|||
113 | pyro4_app = scm_app.create_git_wsgi_app( |
|
|||
114 | 'stub_path', 'stub_name', stub_config) |
|
|||
115 | app = CustomTestApp(pyro4_app) |
|
|||
116 | return app |
|
|||
117 |
|
||||
118 |
|
||||
119 | def test_pyro4_no_data(repeat, pylonsapp, vcsserver_pyro_echo_app): |
|
|||
120 | for x in xrange(repeat / 10): |
|
|||
121 | app = vcs_pyro4_app(vcsserver_pyro_echo_app) |
|
|||
122 | response = app.post('/') |
|
|||
123 | assert response.status_code == 200 |
|
|||
124 |
|
||||
125 |
|
||||
126 | def test_pyro4_with_data(repeat, pylonsapp, vcsserver_pyro_echo_app, data): |
|
|||
127 | for x in xrange(repeat / 10): |
|
|||
128 | app = vcs_pyro4_app(vcsserver_pyro_echo_app) |
|
|||
129 | response = app.post('/', params=data) |
|
|||
130 | assert response.status_code == 200 |
|
@@ -171,71 +171,6 b' class ThreadedHookCallbackDaemon(object)' | |||||
171 | assert daemon_context == daemon |
|
171 | assert daemon_context == daemon | |
172 |
|
172 | |||
173 |
|
173 | |||
174 | class TestPyro4HooksCallbackDaemon(object): |
|
|||
175 | def test_prepare_inits_pyro4_and_registers_hooks(self, caplog): |
|
|||
176 | pyro4_daemon = mock.Mock() |
|
|||
177 |
|
||||
178 | with self._pyro4_patcher(pyro4_daemon), caplog.at_level(logging.DEBUG): |
|
|||
179 | daemon = hooks_daemon.Pyro4HooksCallbackDaemon() |
|
|||
180 |
|
||||
181 | assert daemon._daemon == pyro4_daemon |
|
|||
182 |
|
||||
183 | assert pyro4_daemon.register.call_count == 1 |
|
|||
184 | args, kwargs = pyro4_daemon.register.call_args |
|
|||
185 | assert len(args) == 1 |
|
|||
186 | assert isinstance(args[0], hooks_daemon.Hooks) |
|
|||
187 |
|
||||
188 | assert_message_in_log( |
|
|||
189 | caplog.records, |
|
|||
190 | 'Preparing callback daemon and registering hook object', |
|
|||
191 | levelno=logging.DEBUG, module='hooks_daemon') |
|
|||
192 |
|
||||
193 | def test_run_creates_a_thread(self): |
|
|||
194 | thread = mock.Mock() |
|
|||
195 | pyro4_daemon = mock.Mock() |
|
|||
196 |
|
||||
197 | with self._pyro4_patcher(pyro4_daemon): |
|
|||
198 | daemon = hooks_daemon.Pyro4HooksCallbackDaemon() |
|
|||
199 |
|
||||
200 | with self._thread_patcher(thread) as thread_mock: |
|
|||
201 | daemon._run() |
|
|||
202 |
|
||||
203 | assert thread_mock.call_count == 1 |
|
|||
204 | args, kwargs = thread_mock.call_args |
|
|||
205 | assert args == () |
|
|||
206 | assert kwargs['target'] == pyro4_daemon.requestLoop |
|
|||
207 | assert kwargs['kwargs']['loopCondition']() is True |
|
|||
208 |
|
||||
209 | def test_stop_cleans_up_the_connection(self, caplog): |
|
|||
210 | thread = mock.Mock() |
|
|||
211 | pyro4_daemon = mock.Mock() |
|
|||
212 |
|
||||
213 | with self._pyro4_patcher(pyro4_daemon): |
|
|||
214 | daemon = hooks_daemon.Pyro4HooksCallbackDaemon() |
|
|||
215 |
|
||||
216 | with self._thread_patcher(thread), caplog.at_level(logging.DEBUG): |
|
|||
217 | with daemon: |
|
|||
218 | assert daemon._daemon == pyro4_daemon |
|
|||
219 | assert daemon._callback_thread == thread |
|
|||
220 |
|
||||
221 | assert daemon._daemon is None |
|
|||
222 | assert daemon._callback_thread is None |
|
|||
223 | pyro4_daemon.close.assert_called_with() |
|
|||
224 | thread.join.assert_called_once_with() |
|
|||
225 |
|
||||
226 | assert_message_in_log( |
|
|||
227 | caplog.records, 'Waiting for background thread to finish.', |
|
|||
228 | levelno=logging.DEBUG, module='hooks_daemon') |
|
|||
229 |
|
||||
230 | def _pyro4_patcher(self, daemon): |
|
|||
231 | return mock.patch.object( |
|
|||
232 | hooks_daemon.Pyro4, 'Daemon', return_value=daemon) |
|
|||
233 |
|
||||
234 | def _thread_patcher(self, thread): |
|
|||
235 | return mock.patch.object( |
|
|||
236 | hooks_daemon.threading, 'Thread', return_value=thread) |
|
|||
237 |
|
||||
238 |
|
||||
239 | class TestHttpHooksCallbackDaemon(object): |
|
174 | class TestHttpHooksCallbackDaemon(object): | |
240 | def test_prepare_inits_daemon_variable(self, tcp_server, caplog): |
|
175 | def test_prepare_inits_daemon_variable(self, tcp_server, caplog): | |
241 | with self._tcp_patcher(tcp_server), caplog.at_level(logging.DEBUG): |
|
176 | with self._tcp_patcher(tcp_server), caplog.at_level(logging.DEBUG): | |
@@ -318,7 +253,7 b' class TestHttpHooksCallbackDaemon(object' | |||||
318 |
|
253 | |||
319 |
|
254 | |||
320 | class TestPrepareHooksDaemon(object): |
|
255 | class TestPrepareHooksDaemon(object): | |
321 |
@pytest.mark.parametrize('protocol', ('http', |
|
256 | @pytest.mark.parametrize('protocol', ('http',)) | |
322 | def test_returns_dummy_hooks_callback_daemon_when_using_direct_calls( |
|
257 | def test_returns_dummy_hooks_callback_daemon_when_using_direct_calls( | |
323 | self, protocol): |
|
258 | self, protocol): | |
324 | expected_extras = {'extra1': 'value1'} |
|
259 | expected_extras = {'extra1': 'value1'} | |
@@ -329,8 +264,7 b' class TestPrepareHooksDaemon(object):' | |||||
329 | assert extras == expected_extras |
|
264 | assert extras == expected_extras | |
330 |
|
265 | |||
331 | @pytest.mark.parametrize('protocol, expected_class', ( |
|
266 | @pytest.mark.parametrize('protocol, expected_class', ( | |
332 |
('p |
|
267 | ('http', hooks_daemon.HttpHooksCallbackDaemon), | |
333 | ('http', hooks_daemon.HttpHooksCallbackDaemon) |
|
|||
334 | )) |
|
268 | )) | |
335 | def test_returns_real_hooks_callback_daemon_when_protocol_is_specified( |
|
269 | def test_returns_real_hooks_callback_daemon_when_protocol_is_specified( | |
336 | self, protocol, expected_class): |
|
270 | self, protocol, expected_class): | |
@@ -343,12 +277,9 b' class TestPrepareHooksDaemon(object):' | |||||
343 | assert isinstance(callback, expected_class) |
|
277 | assert isinstance(callback, expected_class) | |
344 | hooks_uri = extras.pop('hooks_uri') |
|
278 | hooks_uri = extras.pop('hooks_uri') | |
345 | assert extras == expected_extras |
|
279 | assert extras == expected_extras | |
346 | if protocol.lower() == 'pyro4': |
|
|||
347 | assert hooks_uri.startswith('PYRO') |
|
|||
348 |
|
280 | |||
349 | @pytest.mark.parametrize('protocol', ( |
|
281 | @pytest.mark.parametrize('protocol', ( | |
350 | 'invalid', |
|
282 | 'invalid', | |
351 | 'Pyro4', |
|
|||
352 | 'Http', |
|
283 | 'Http', | |
353 | 'HTTP', |
|
284 | 'HTTP', | |
354 | )) |
|
285 | )) |
@@ -375,7 +375,6 b' class TestPullRequestModel:' | |||||
375 | class TestIntegrationMerge(object): |
|
375 | class TestIntegrationMerge(object): | |
376 | @pytest.mark.parametrize('extra_config', ( |
|
376 | @pytest.mark.parametrize('extra_config', ( | |
377 | {'vcs.hooks.protocol': 'http', 'vcs.hooks.direct_calls': False}, |
|
377 | {'vcs.hooks.protocol': 'http', 'vcs.hooks.direct_calls': False}, | |
378 | {'vcs.hooks.protocol': 'Pyro4', 'vcs.hooks.direct_calls': False}, |
|
|||
379 | )) |
|
378 | )) | |
380 | def test_merge_triggers_push_hooks( |
|
379 | def test_merge_triggers_push_hooks( | |
381 | self, pr_util, user_admin, capture_rcextensions, merge_extras, |
|
380 | self, pr_util, user_admin, capture_rcextensions, merge_extras, |
@@ -321,27 +321,6 b' def tests_tmp_path(request):' | |||||
321 | return TESTS_TMP_PATH |
|
321 | return TESTS_TMP_PATH | |
322 |
|
322 | |||
323 |
|
323 | |||
324 | @pytest.fixture(scope='session', autouse=True) |
|
|||
325 | def patch_pyro_request_scope_proxy_factory(request): |
|
|||
326 | """ |
|
|||
327 | Patch the pyro proxy factory to always use the same dummy request object |
|
|||
328 | when under test. This will return the same pyro proxy on every call. |
|
|||
329 | """ |
|
|||
330 | dummy_request = pyramid.testing.DummyRequest() |
|
|||
331 |
|
||||
332 | def mocked_call(self, request=None): |
|
|||
333 | return self.getProxy(request=dummy_request) |
|
|||
334 |
|
||||
335 | patcher = mock.patch( |
|
|||
336 | 'rhodecode.lib.vcs.client.RequestScopeProxyFactory.__call__', |
|
|||
337 | new=mocked_call) |
|
|||
338 | patcher.start() |
|
|||
339 |
|
||||
340 | @request.addfinalizer |
|
|||
341 | def undo_patching(): |
|
|||
342 | patcher.stop() |
|
|||
343 |
|
||||
344 |
|
||||
345 | @pytest.fixture |
|
324 | @pytest.fixture | |
346 | def test_repo_group(request): |
|
325 | def test_repo_group(request): | |
347 | """ |
|
326 | """ | |
@@ -1350,7 +1329,7 b' def pytest_runtest_makereport(item, call' | |||||
1350 | """ |
|
1329 | """ | |
1351 | Adding the remote traceback if the exception has this information. |
|
1330 | Adding the remote traceback if the exception has this information. | |
1352 |
|
1331 | |||
1353 |
|
|
1332 | VCSServer attaches this information as the attribute `_vcs_server_traceback` | |
1354 | to the exception instance. |
|
1333 | to the exception instance. | |
1355 | """ |
|
1334 | """ | |
1356 | outcome = yield |
|
1335 | outcome = yield | |
@@ -1411,7 +1390,8 b' def collect_appenlight_stats(request, te' | |||||
1411 | }) |
|
1390 | }) | |
1412 |
|
1391 | |||
1413 | server_and_port = pylonsapp.config['vcs.server'] |
|
1392 | server_and_port = pylonsapp.config['vcs.server'] | |
1414 | server = create_vcsserver_proxy(server_and_port) |
|
1393 | protocol = pylonsapp.config['vcs.server.protocol'] | |
|
1394 | server = create_vcsserver_proxy(server_and_port, protocol) | |||
1415 | with server: |
|
1395 | with server: | |
1416 | vcs_pid = server.get_pid() |
|
1396 | vcs_pid = server.get_pid() | |
1417 | server.run_gc() |
|
1397 | server.run_gc() |
@@ -35,7 +35,6 b' from beaker.session import SessionObject' | |||||
35 | from paste.deploy import loadapp |
|
35 | from paste.deploy import loadapp | |
36 | from pylons.i18n.translation import _get_translator |
|
36 | from pylons.i18n.translation import _get_translator | |
37 | from pylons.util import ContextObj |
|
37 | from pylons.util import ContextObj | |
38 | from Pyro4.errors import CommunicationError |
|
|||
39 | from routes.util import URLGenerator |
|
38 | from routes.util import URLGenerator | |
40 |
|
39 | |||
41 | from rhodecode.lib import vcs |
|
40 | from rhodecode.lib import vcs | |
@@ -71,14 +70,11 b' def pytest_addoption(parser):' | |||||
71 | '--without-vcsserver', dest='with_vcsserver', action='store_false', |
|
70 | '--without-vcsserver', dest='with_vcsserver', action='store_false', | |
72 | help="Do not start the VCSServer in a background process.") |
|
71 | help="Do not start the VCSServer in a background process.") | |
73 | vcsgroup.addoption( |
|
72 | vcsgroup.addoption( | |
74 | '--with-vcsserver', dest='vcsserver_config_pyro4', |
|
|||
75 | help="Start the VCSServer with the specified config file.") |
|
|||
76 | vcsgroup.addoption( |
|
|||
77 | '--with-vcsserver-http', dest='vcsserver_config_http', |
|
73 | '--with-vcsserver-http', dest='vcsserver_config_http', | |
78 | help="Start the HTTP VCSServer with the specified config file.") |
|
74 | help="Start the HTTP VCSServer with the specified config file.") | |
79 | vcsgroup.addoption( |
|
75 | vcsgroup.addoption( | |
80 | '--vcsserver-protocol', dest='vcsserver_protocol', |
|
76 | '--vcsserver-protocol', dest='vcsserver_protocol', | |
81 |
help="Start the VCSServer with HTTP |
|
77 | help="Start the VCSServer with HTTP protocol support.") | |
82 | vcsgroup.addoption( |
|
78 | vcsgroup.addoption( | |
83 | '--vcsserver-config-override', action='store', type=_parse_json, |
|
79 | '--vcsserver-config-override', action='store', type=_parse_json, | |
84 | default=None, dest='vcsserver_config_override', help=( |
|
80 | default=None, dest='vcsserver_config_override', help=( | |
@@ -94,14 +90,11 b' def pytest_addoption(parser):' | |||||
94 | "against an already running server and random ports cause " |
|
90 | "against an already running server and random ports cause " | |
95 | "trouble.")) |
|
91 | "trouble.")) | |
96 | parser.addini( |
|
92 | parser.addini( | |
97 | 'vcsserver_config_pyro4', |
|
|||
98 | "Start the VCSServer with the specified config file.") |
|
|||
99 | parser.addini( |
|
|||
100 | 'vcsserver_config_http', |
|
93 | 'vcsserver_config_http', | |
101 | "Start the HTTP VCSServer with the specified config file.") |
|
94 | "Start the HTTP VCSServer with the specified config file.") | |
102 | parser.addini( |
|
95 | parser.addini( | |
103 | 'vcsserver_protocol', |
|
96 | 'vcsserver_protocol', | |
104 |
"Start the VCSServer with HTTP |
|
97 | "Start the VCSServer with HTTP protocol support.") | |
105 |
|
98 | |||
106 |
|
99 | |||
107 | @pytest.fixture(scope='session') |
|
100 | @pytest.fixture(scope='session') | |
@@ -153,8 +146,7 b' def vcsserver_factory(tmpdir_factory):' | |||||
153 | 'beaker.cache.repo_object.type': 'nocache'}} |
|
146 | 'beaker.cache.repo_object.type': 'nocache'}} | |
154 | overrides.append(platform_override) |
|
147 | overrides.append(platform_override) | |
155 |
|
148 | |||
156 | option_name = ( |
|
149 | option_name = 'vcsserver_config_http' if use_http else '' | |
157 | 'vcsserver_config_http' if use_http else 'vcsserver_config_pyro4') |
|
|||
158 | override_option_name = 'vcsserver_config_override' |
|
150 | override_option_name = 'vcsserver_config_override' | |
159 | config_file = get_config( |
|
151 | config_file = get_config( | |
160 | request.config, option_name=option_name, |
|
152 | request.config, option_name=option_name, | |
@@ -162,8 +154,8 b' def vcsserver_factory(tmpdir_factory):' | |||||
162 | basetemp=tmpdir_factory.getbasetemp().strpath, |
|
154 | basetemp=tmpdir_factory.getbasetemp().strpath, | |
163 | prefix='test_vcs_') |
|
155 | prefix='test_vcs_') | |
164 |
|
156 | |||
165 |
print |
|
157 | print("Using the VCSServer configuration:{}".format(config_file)) | |
166 |
ServerClass = HttpVCSServer if use_http else |
|
158 | ServerClass = HttpVCSServer if use_http else None | |
167 | server = ServerClass(config_file) |
|
159 | server = ServerClass(config_file) | |
168 | server.start() |
|
160 | server.start() | |
169 |
|
161 | |||
@@ -213,39 +205,6 b' class VCSServer(object):' | |||||
213 | self.process.kill() |
|
205 | self.process.kill() | |
214 |
|
206 | |||
215 |
|
207 | |||
216 | class Pyro4VCSServer(VCSServer): |
|
|||
217 | def __init__(self, config_file): |
|
|||
218 | """ |
|
|||
219 | :param config_file: The config file to start the server with |
|
|||
220 | """ |
|
|||
221 |
|
||||
222 | config_data = configobj.ConfigObj(config_file) |
|
|||
223 | self._config = config_data['DEFAULT'] |
|
|||
224 |
|
||||
225 | args = ['vcsserver', '--config', config_file] |
|
|||
226 | self._args = args |
|
|||
227 |
|
||||
228 | def wait_until_ready(self, timeout=30): |
|
|||
229 | remote_server = vcs.create_vcsserver_proxy( |
|
|||
230 | self.server_and_port, 'pyro4') |
|
|||
231 | start = time.time() |
|
|||
232 | with remote_server: |
|
|||
233 | while time.time() - start < timeout: |
|
|||
234 | try: |
|
|||
235 | remote_server.ping() |
|
|||
236 | break |
|
|||
237 | except CommunicationError: |
|
|||
238 | time.sleep(0.2) |
|
|||
239 | else: |
|
|||
240 | pytest.exit( |
|
|||
241 | "Starting the VCSServer failed or took more than {} " |
|
|||
242 | "seconds.".format(timeout)) |
|
|||
243 |
|
||||
244 | @property |
|
|||
245 | def server_and_port(self): |
|
|||
246 | return '{host}:{port}'.format(**self._config) |
|
|||
247 |
|
||||
248 |
|
||||
249 | class HttpVCSServer(VCSServer): |
|
208 | class HttpVCSServer(VCSServer): | |
250 | """ |
|
209 | """ | |
251 | Represents a running VCSServer instance. |
|
210 | Represents a running VCSServer instance. | |
@@ -316,14 +275,6 b' def pylons_config(request, tmpdir_factor' | |||||
316 | 'vcs.hooks.protocol': 'http', |
|
275 | 'vcs.hooks.protocol': 'http', | |
317 | } |
|
276 | } | |
318 | }) |
|
277 | }) | |
319 | else: |
|
|||
320 | overrides.append({ |
|
|||
321 | 'app:main': { |
|
|||
322 | 'vcs.server.protocol': 'pyro4', |
|
|||
323 | 'vcs.scm_app_implementation': 'pyro4', |
|
|||
324 | 'vcs.hooks.protocol': 'pyro4', |
|
|||
325 | } |
|
|||
326 | }) |
|
|||
327 |
|
278 | |||
328 | filename = get_config( |
|
279 | filename = get_config( | |
329 | request.config, option_name=option_name, |
|
280 | request.config, option_name=option_name, | |
@@ -337,7 +288,7 b' def pylons_config(request, tmpdir_factor' | |||||
337 | @pytest.fixture(scope='session') |
|
288 | @pytest.fixture(scope='session') | |
338 | def rcserver_port(request): |
|
289 | def rcserver_port(request): | |
339 | port = get_available_port() |
|
290 | port = get_available_port() | |
340 |
print |
|
291 | print('Using rcserver port {}'.format(port)) | |
341 | return port |
|
292 | return port | |
342 |
|
293 | |||
343 |
|
294 | |||
@@ -346,7 +297,7 b' def vcsserver_port(request):' | |||||
346 | port = request.config.getoption('--vcsserver-port') |
|
297 | port = request.config.getoption('--vcsserver-port') | |
347 | if port is None: |
|
298 | if port is None: | |
348 | port = get_available_port() |
|
299 | port = get_available_port() | |
349 |
print |
|
300 | print('Using vcsserver port {}'.format(port)) | |
350 | return port |
|
301 | return port | |
351 |
|
302 | |||
352 |
|
303 | |||
@@ -383,7 +334,7 b' def available_port(available_port_factor' | |||||
383 |
|
334 | |||
384 | @pytest.fixture(scope='session') |
|
335 | @pytest.fixture(scope='session') | |
385 | def pylonsapp(pylons_config, vcsserver, http_environ_session): |
|
336 | def pylonsapp(pylons_config, vcsserver, http_environ_session): | |
386 |
print |
|
337 | print("Using the RhodeCode configuration:{}".format(pylons_config)) | |
387 | logging.config.fileConfig( |
|
338 | logging.config.fileConfig( | |
388 | pylons_config, disable_existing_loggers=False) |
|
339 | pylons_config, disable_existing_loggers=False) | |
389 | app = _setup_pylons_environment(pylons_config, http_environ_session) |
|
340 | app = _setup_pylons_environment(pylons_config, http_environ_session) |
@@ -575,18 +575,15 b' vcs.server = localhost:9901' | |||||
575 |
|
575 | |||
576 | ## Web server connectivity protocol, responsible for web based VCS operatations |
|
576 | ## Web server connectivity protocol, responsible for web based VCS operatations | |
577 | ## Available protocols are: |
|
577 | ## Available protocols are: | |
578 | ## `pyro4` - using pyro4 server |
|
|||
579 | ## `http` - using http-rpc backend |
|
578 | ## `http` - using http-rpc backend | |
580 | vcs.server.protocol = http |
|
579 | vcs.server.protocol = http | |
581 |
|
580 | |||
582 | ## Push/Pull operations protocol, available options are: |
|
581 | ## Push/Pull operations protocol, available options are: | |
583 | ## `pyro4` - using pyro4 server |
|
|||
584 | ## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended |
|
582 | ## `rhodecode.lib.middleware.utils.scm_app_http` - Http based, recommended | |
585 | ## `vcsserver.scm_app` - internal app (EE only) |
|
583 | ## `vcsserver.scm_app` - internal app (EE only) | |
586 | vcs.scm_app_implementation = http |
|
584 | vcs.scm_app_implementation = http | |
587 |
|
585 | |||
588 | ## Push/Pull operations hooks protocol, available options are: |
|
586 | ## Push/Pull operations hooks protocol, available options are: | |
589 | ## `pyro4` - using pyro4 server |
|
|||
590 | ## `http` - using http-rpc backend |
|
587 | ## `http` - using http-rpc backend | |
591 | vcs.hooks.protocol = http |
|
588 | vcs.hooks.protocol = http | |
592 |
|
589 | |||
@@ -628,7 +625,7 b' svn.proxy.location_root = /' | |||||
628 | ### LOGGING CONFIGURATION #### |
|
625 | ### LOGGING CONFIGURATION #### | |
629 | ################################ |
|
626 | ################################ | |
630 | [loggers] |
|
627 | [loggers] | |
631 |
keys = root, routes, rhodecode, sqlalchemy, beaker, |
|
628 | keys = root, routes, rhodecode, sqlalchemy, beaker, templates | |
632 |
|
629 | |||
633 | [handlers] |
|
630 | [handlers] | |
634 | keys = console, console_sql |
|
631 | keys = console, console_sql | |
@@ -656,12 +653,6 b' handlers =' | |||||
656 | qualname = beaker.container |
|
653 | qualname = beaker.container | |
657 | propagate = 1 |
|
654 | propagate = 1 | |
658 |
|
655 | |||
659 | [logger_pyro4] |
|
|||
660 | level = DEBUG |
|
|||
661 | handlers = |
|
|||
662 | qualname = Pyro4 |
|
|||
663 | propagate = 1 |
|
|||
664 |
|
||||
665 | [logger_templates] |
|
656 | [logger_templates] | |
666 | level = INFO |
|
657 | level = INFO | |
667 | handlers = |
|
658 | handlers = | |
@@ -701,7 +692,7 b' formatter = generic' | |||||
701 | ################ |
|
692 | ################ | |
702 |
|
693 | |||
703 | [formatter_generic] |
|
694 | [formatter_generic] | |
704 |
class = rhodecode.lib.logging_formatter. |
|
695 | class = rhodecode.lib.logging_formatter.ExceptionAwareFormatter | |
705 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s |
|
696 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | |
706 | datefmt = %Y-%m-%d %H:%M:%S |
|
697 | datefmt = %Y-%m-%d %H:%M:%S | |
707 |
|
698 |
@@ -94,7 +94,3 b' def test_connect_passes_in_the_same_sess' | |||||
94 | session_factory.return_value = stub_session |
|
94 | session_factory.return_value = stub_session | |
95 |
|
95 | |||
96 | vcs.connect_http('server_and_port') |
|
96 | vcs.connect_http('server_and_port') | |
97 |
|
||||
98 | assert connection.Hg._session_factory() == stub_session |
|
|||
99 | assert connection.Svn._session_factory() == stub_session |
|
|||
100 | assert connection.Git._session_factory() == stub_session |
|
@@ -123,9 +123,6 b' class TestMercurialRemoteRepoInvalidatio' | |||||
123 | """ |
|
123 | """ | |
124 | from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError |
|
124 | from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError | |
125 |
|
125 | |||
126 | if pylonsapp.config['vcs.server.protocol'] == 'pyro4': |
|
|||
127 | pytest.skip('Test is intended for the HTTP protocol only.') |
|
|||
128 |
|
||||
129 | pull_request = pr_util.create_pull_request() |
|
126 | pull_request = pr_util.create_pull_request() | |
130 | target_vcs = pull_request.target_repo.scm_instance() |
|
127 | target_vcs = pull_request.target_repo.scm_instance() | |
131 | source_vcs = pull_request.source_repo.scm_instance() |
|
128 | source_vcs = pull_request.source_repo.scm_instance() | |
@@ -163,8 +160,6 b' class TestMercurialRemoteRepoInvalidatio' | |||||
163 | Without correct cache invalidation this leads to an error when |
|
160 | Without correct cache invalidation this leads to an error when | |
164 | retrieving the pulled commits afterwards. |
|
161 | retrieving the pulled commits afterwards. | |
165 | """ |
|
162 | """ | |
166 | if pylonsapp.config['vcs.server.protocol'] == 'pyro4': |
|
|||
167 | pytest.skip('Test is intended for the HTTP protocol only.') |
|
|||
168 |
|
163 | |||
169 | pull_request = pr_util.create_pull_request() |
|
164 | pull_request = pr_util.create_pull_request() | |
170 | target_vcs = pull_request.target_repo.scm_instance() |
|
165 | target_vcs = pull_request.target_repo.scm_instance() |
@@ -30,7 +30,7 b' port = 9900' | |||||
30 | ### LOGGING CONFIGURATION #### |
|
30 | ### LOGGING CONFIGURATION #### | |
31 | ################################ |
|
31 | ################################ | |
32 | [loggers] |
|
32 | [loggers] | |
33 |
keys = root, vcsserver, |
|
33 | keys = root, vcsserver, beaker | |
34 |
|
34 | |||
35 | [handlers] |
|
35 | [handlers] | |
36 | keys = console |
|
36 | keys = console | |
@@ -57,12 +57,6 b' handlers =' | |||||
57 | qualname = beaker |
|
57 | qualname = beaker | |
58 | propagate = 1 |
|
58 | propagate = 1 | |
59 |
|
59 | |||
60 | [logger_pyro4] |
|
|||
61 | level = DEBUG |
|
|||
62 | handlers = |
|
|||
63 | qualname = Pyro4 |
|
|||
64 | propagate = 1 |
|
|||
65 |
|
||||
66 |
|
60 | |||
67 | ############## |
|
61 | ############## | |
68 | ## HANDLERS ## |
|
62 | ## HANDLERS ## |
@@ -84,7 +84,6 b' install_requirements = [' | |||||
84 | 'Pygments', |
|
84 | 'Pygments', | |
85 | 'pygments-markdown-lexer', |
|
85 | 'pygments-markdown-lexer', | |
86 | 'Pylons', |
|
86 | 'Pylons', | |
87 | 'Pyro4', |
|
|||
88 | 'Routes', |
|
87 | 'Routes', | |
89 | 'SQLAlchemy', |
|
88 | 'SQLAlchemy', | |
90 | 'Tempita', |
|
89 | 'Tempita', |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
1 | NO CONTENT: file was removed |
|
NO CONTENT: file was removed |
General Comments 0
You need to be logged in to leave comments.
Login now