1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-15 17:00:26 +00:00

python.el: Fix local/remote shell environment setup

* lisp/progmodes/python.el (python-shell-with-environment): Fix
remote/local environment setup.

* test/automated/python-tests.el (python-shell-with-environment-1)
(python-shell-with-environment-2): New tests.
This commit is contained in:
Fabián Ezequiel Gallina 2015-07-06 20:08:01 -03:00
parent 60ea900848
commit 287bce9888
2 changed files with 54 additions and 25 deletions

View File

@ -2060,23 +2060,24 @@ execution of body. If `default-directory' points to a remote
machine then modifies `tramp-remote-process-environment' and
`tramp-remote-path' instead."
(declare (indent 0) (debug (body)))
(let ((remote-p (file-remote-p default-directory)))
`(let ((process-environment
(if ,remote-p
process-environment
(python-shell-calculate-process-environment)))
(tramp-remote-process-environment
(if ,remote-p
(python-shell-calculate-process-environment)
tramp-remote-process-environment))
(exec-path
(if ,remote-p
(python-shell-calculate-exec-path)
exec-path))
(tramp-remote-path
(if ,remote-p
(python-shell-calculate-exec-path)
tramp-remote-path)))
(let ((remote-p (make-symbol "remote-p")))
`(let* ((,remote-p (file-remote-p default-directory))
(process-environment
(if ,remote-p
process-environment
(python-shell-calculate-process-environment)))
(tramp-remote-process-environment
(if ,remote-p
(python-shell-calculate-process-environment)
tramp-remote-process-environment))
(exec-path
(if ,remote-p
exec-path
(python-shell-calculate-exec-path)))
(tramp-remote-path
(if ,remote-p
(python-shell-calculate-exec-path)
tramp-remote-path)))
,(macroexp-progn body))))
(defvar python-shell--prompt-calculated-input-regexp nil

View File

@ -27,6 +27,7 @@
;; Dependencies for testing:
(require 'electric)
(require 'hideshow)
(require 'tramp-sh)
(defmacro python-tests-with-temp-buffer (contents &rest body)
@ -2463,17 +2464,12 @@ Using `python-shell-interpreter' and
(ert-deftest python-shell-calculate-process-environment-3 ()
"Test `python-shell-virtualenv-root' modification."
(let* ((original-path (or (getenv "PATH") ""))
(python-shell-virtualenv-root
(let* ((python-shell-virtualenv-root
(directory-file-name user-emacs-directory))
(process-environment
(python-shell-calculate-process-environment)))
(should (not (getenv "PYTHONHOME")))
(should (string= (getenv "VIRTUAL_ENV") python-shell-virtualenv-root))
(should (equal (getenv "PATH")
(format "%s/bin%s%s"
python-shell-virtualenv-root
path-separator original-path)))))
(should (string= (getenv "VIRTUAL_ENV") python-shell-virtualenv-root))))
(ert-deftest python-shell-calculate-process-environment-4 ()
"Test `python-shell-unbuffered' modification."
@ -2503,7 +2499,7 @@ Using `python-shell-interpreter' and
original-exec-path)))))
(ert-deftest python-shell-calculate-exec-path-2 ()
"Test `python-shell-exec-path' modification."
"Test `python-shell-virtualenv-root' modification."
(let* ((original-exec-path exec-path)
(python-shell-virtualenv-root
(directory-file-name (expand-file-name user-emacs-directory)))
@ -2514,6 +2510,38 @@ Using `python-shell-interpreter' and
(format "%s/bin" python-shell-virtualenv-root)
original-exec-path))))))
(ert-deftest python-shell-with-environment-1 ()
"Test with local `default-directory'."
(let* ((original-exec-path exec-path)
(python-shell-virtualenv-root
(directory-file-name (expand-file-name user-emacs-directory))))
(python-shell-with-environment
(should (equal
exec-path
(append (cons
(format "%s/bin" python-shell-virtualenv-root)
original-exec-path))))
(should (not (getenv "PYTHONHOME")))
(should (string= (getenv "VIRTUAL_ENV") python-shell-virtualenv-root)))))
(ert-deftest python-shell-with-environment-2 ()
"Test with remote `default-directory'."
(let* ((default-directory "/ssh::/example/dir/")
(original-exec-path tramp-remote-path)
(original-process-environment tramp-remote-process-environment)
(python-shell-virtualenv-root
(directory-file-name (expand-file-name user-emacs-directory))))
(python-shell-with-environment
(should (equal
tramp-remote-path
(append (cons
(format "%s/bin" python-shell-virtualenv-root)
original-exec-path))))
(let ((process-environment tramp-remote-process-environment))
(should (not (getenv "PYTHONHOME")))
(should (string= (getenv "VIRTUAL_ENV")
python-shell-virtualenv-root))))))
(ert-deftest python-shell-make-comint-1 ()
"Check comint creation for global shell buffer."
(skip-unless (executable-find python-tests-shell-interpreter))