X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/24c73b930aff562cacf9c068b7f1c9ab6521eab2..779de03e226b161a00c3428ffdadd89ecbc422d0:/company-tests.el diff --git a/company-tests.el b/company-tests.el index 84b35037e..f0d669d11 100644 --- a/company-tests.el +++ b/company-tests.el @@ -1,8 +1,8 @@ -;;; company-tests.el --- company-mode tests +;;; company-tests.el --- company-mode test helpers -*- lexical-binding: t -*- -;; Copyright (C) 2011, 2013 Free Software Foundation, Inc. +;; Copyright (C) 2011, 2013-2014 Free Software Foundation, Inc. -;; Author: Nikolaj Schumacher +;; Author: Dmitry Gutov ;; This file is part of GNU Emacs. @@ -19,58 +19,18 @@ ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs. If not, see . - -;;; Commentary: -;; - -;;; Code: - -(require 'ert) (require 'company) -(require 'company-keywords) - -(ert-deftest company-sorted-keywords () - "Test that keywords in `company-keywords-alist' are in alphabetical order." - (dolist (pair company-keywords-alist) - (when (consp (cdr pair)) - (let ((prev (cadr pair))) - (dolist (next (cddr pair)) - (should (not (equal prev next))) - (should (string< prev next)) - (setq prev next)))))) -(ert-deftest company-good-prefix () - (let ((company-minimum-prefix-length 5) - company--explicit-action) - (should (eq t (company--good-prefix-p "!@#$%"))) - (should (eq nil (company--good-prefix-p "abcd"))) - (should (eq nil (company--good-prefix-p 'stop))) - (should (eq t (company--good-prefix-p '("foo" . 5)))) - (should (eq nil (company--good-prefix-p '("foo" . 4)))))) +(defun company--column (&optional pos) + (car (company--col-row pos))) -(ert-deftest company-multi-backend-with-lambdas () - (let ((company-backend - (list (lambda (command &optional arg &rest ignore) - (case command - (prefix "z") - (candidates '("a" "b")))) - (lambda (command &optional arg &rest ignore) - (case command - (prefix "z") - (candidates '("c" "d"))))))) - (should (equal (company-call-backend 'candidates "z") '("a" "b" "c" "d"))))) +(defun company-call (name &rest args) + (let* ((maybe (intern (format "company-%s" name))) + (command (if (fboundp maybe) maybe name))) + (let ((this-command command)) + (run-hooks 'pre-command-hook)) + (apply command args) + (let ((this-command command)) + (run-hooks 'post-command-hook)))) -(ert-deftest company-begin-backend-failure-doesnt-break-company-backends () - (with-temp-buffer - (insert "a") - (company-mode) - (should-error - (company-begin-backend (lambda (command &rest ignore)))) - (let ((company-backends - (list (lambda (command &optional arg) - (case command - (prefix "a") - (candidates '("a" "ab" "ac"))))))) - (company-complete) - (setq this-command 'company-complete) - (should (eq 3 company-candidates-length))))) +(provide 'company-tests)