All of my Clojure projects use both Leiningen and expectations; therefore, my directory structures always look similar to what you see below.
source - /Users/jfields/src/project-name/src/clojure/
tests - /Users/jfields/src/project-name/test/clojure/expectations/
Since my projects follow this convention, I'm able to make several assumptions about where the expectations and where the source will actually live. If you don't use expectations, or you follow a slightly different directory structure, you'll want to hack this a bit to follow your conventions.
If you're in a source file, find (and open) the expectations.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun test-full-path (project-root test-home) | |
(concat | |
(replace-regexp-in-string | |
(concat (expand-file-name project-root) "src/clojure") | |
(concat project-root test-home) | |
(file-name-sans-extension (buffer-file-name))) | |
"_expectations.clj")) | |
(defun find-expectations () | |
(interactive) | |
(let* ((project-root (locate-dominating-file | |
(file-name-directory (buffer-file-name)) "project.clj"))) | |
(if project-root | |
(let* ((full-path-with-clojure (test-full-path project-root | |
"test/clojure/expectations"))) | |
(if (file-exists-p full-path-with-clojure) | |
(set-window-buffer (next-window) (find-file-noselect full-path-with-clojure)) | |
(message (concat "cound not find " full-path-with-clojure)))) | |
(message (concat "no project.clj found at or below " (buffer-file-name)))))) |
If you're in a test file, find (and open) the source.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun src-full-path (project-root file-name) | |
(concat | |
(replace-regexp-in-string | |
(concat (expand-file-name project-root) "test/clojure/expectations") | |
(concat project-root "src/clojure") | |
(file-name-directory file-name)) | |
(replace-regexp-in-string | |
"_expectations" | |
"" | |
(file-name-nondirectory file-name)))) | |
(defun find-src () | |
(interactive) | |
(let* ((project-root (locate-dominating-file | |
(file-name-directory (buffer-file-name)) "project.clj"))) | |
(if project-root | |
(let* ((full-path (src-full-path project-root (buffer-file-name)))) | |
(if (file-exists-p full-path) | |
(set-window-buffer (next-window) (find-file-noselect full-path)) | |
(message (concat "cound not find " full-path)))) | |
(message (concat "no project.clj found at or below " (buffer-file-name)))))) |
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.