From 59e18a999efd978c57a818d8e3e96dda106d7388 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Mon, 26 Mar 2012 03:44:01 +0100 Subject: [PATCH] Richer tests --- yasnippet-tests.el | 61 +++++++++++++++++++++++++++++++++++++--------- 1 file changed, 49 insertions(+), 12 deletions(-) diff --git a/yasnippet-tests.el b/yasnippet-tests.el index f1219fa11..a537b7feb 100755 --- a/yasnippet-tests.el +++ b/yasnippet-tests.el @@ -20,7 +20,7 @@ ;;; Commentary: -;; Attempt to test basic snippet mechanics and the loading system +;; Test basic snippet mechanics and the loading system ;;; Code: @@ -29,6 +29,7 @@ (require 'ert-x) + ;;; Snippet mechanics (ert-deftest field-navigation () @@ -126,19 +127,44 @@ TODO: correct this bug!" ("cc-mode" ("def" . "# define")) ("emacs-lisp-mode" ("dolist" . "(dolist)")) ("lisp-interaction-mode" ("sc" . "brother from another mother")))) - (yas/reload-all) + (yas/reload-all 'with-jit) (with-temp-buffer - (lisp-interaction-mode) - (yas/minor-mode 1) - (insert "sc") - (ert-simulate-command '(yas/expand)) - (should (string= (buffer-substring-no-properties (point-min) (point-max)) - "brother from another mother")))))) + (should (= 4 (hash-table-count yas/scheduled-jit-loads))) + (should (= 0 (hash-table-count yas/tables))) + (lisp-interaction-mode) (yas/minor-mode 1) ;; either one will load two tables depending on yas/global-mode (FIXME) + (should (= 2 (hash-table-count yas/scheduled-jit-loads))) + (should (= 2 (hash-table-count yas/tables))) + (should (= 1 (hash-table-count (yas/table-uuidhash (gethash 'lisp-interaction-mode yas/tables))))) + (should (= 2 (hash-table-count (yas/table-uuidhash (gethash 'emacs-lisp-mode yas/tables))))) + (yas/should-expand '(("sc" . "brother from another mother") + ("dolist" . "(dolist)") + ("ert-deftest" . "(ert-deftest name () )"))) + (c-mode) + (yas/should-expand '(("printf" . "printf();") + ("def" . "# define"))) + (yas/should-not-expand '("sc" "dolist" "ert-deftest")))))) +;;; Helpers +;;; +(defun yas/should-expand (keys-and-expansions) + (dolist (key-and-expansion keys-and-expansions) + (yas/exit-all-snippets) + (erase-buffer) + (insert (car key-and-expansion)) + (let ((yas/fallback-behavior nil)) + (ert-simulate-command '(yas/expand))) + (should (string= (buffer-substring-no-properties (point-min) (point-max)) + (cdr key-and-expansion))))) -;;; Helpers -;;; +(defun yas/should-not-expand (keys) + (dolist (key keys) + (yas/exit-all-snippets) + (erase-buffer) + (insert key) + (let ((yas/fallback-behavior nil)) + (ert-simulate-command '(yas/expand))) + (should (string= (buffer-substring-no-properties (point-min) (point-max)) key)))) (defun yas/mock-insert (string) (interactive) @@ -157,7 +183,7 @@ TODO: correct this bug!" (with-current-buffer (find-file file-or-dir-name) (insert content) (save-buffer) - (kill-buffer))) + (kill-buffer (current-buffer)))) (t (message "[yas] oops don't know this content"))))) @@ -181,8 +207,19 @@ TODO: correct this bug!" `(let ((default-directory (make-temp-file "yasnippet-fixture" t))) (setq yas/snippet-dirs ',(mapcar #'car (cadr dirs))) (mapc #'yas/make-file-or-dirs ,dirs) - ,@body)) + ,@body + (when (>= emacs-major-version 23) + (delete-directory default-directory 'recursive)))) + +;;; Older emacsen +;;; +(unless (fboundp 'special-mode) + (define-minor-mode special-mode "Just a placeholder for something isn't in emacs 22")) +;;; btw to test this in emacs22 mac osx: +;;; curl -L -O https://github.com/mirrors/emacs/raw/master/lisp/emacs-lisp/ert.el +;;; curl -L -O https://github.com/mirrors/emacs/raw/master/lisp/emacs-lisp/ert-x.el +;;; /usr/bin/emacs -nw -Q -L . -l yasnippet-tests.el --batch -e ert (provide 'yasnippet-tests) ;;; yasnippet-tests.el ends here -- 2.39.2