]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/cedet/semantic-utest-ia.el: Update from upstream
authorEric Ludlam <zappo@gnu.org>
Mon, 28 Oct 2019 01:01:54 +0000 (21:01 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 31 Oct 2019 23:05:35 +0000 (19:05 -0400)
Merge content from CEDET on SF to bring in additional test points
and support more types of languages.
(semantic-utest-ia-struct.cpp, semantic-utest-ia-templates.cpp)
(semantic-utest-ia-using.cpp, semantic-utest-ia-nsp.cpp)
(semantic-utest-ia-localvars.cpp, semantic-utest-ia-varnamse.java)
(semantic-utest-ia-wisent.wy, semantic-utest-ia-texi)
(semantic-utest-ia-make, semantic-utest-ia-srecoder): New test points
(semantic-ia-utest-buffer): Use comment-start-skip when looking
for test point tokens.
Capture errors ignoring debugger to enable test for empty results.
Improve output from test diagnostics.
(semantic-ia-utest-buffer-refs): Use comment-start-skip to find
test point tokens.
Author: Eric Ludlam <zappo@gnu.org>

test/lisp/cedet/semantic-utest-ia.el

index f83a89a86830d0c772156e6753ac02552da67a73..61d7ea370e20e1f4efa5af706dec1f78d2feef40 100644 (file)
@@ -27,6 +27,7 @@
 ;; Each file has cursor keys in them of the form:
 ;;   // -#- ("ans1" "ans2" )
 ;; where # is 1, 2, 3, etc, and some sort of answer list.
+;; (Replace // with contents of comment-start for the language being tested.)
 
 ;;; Code:
 (require 'semantic)
     (should (file-exists-p tst))
     (should-not (semantic-ia-utest tst))))
 
-(ert-deftest semantic-utest-ia-friends.cpp ()
-  (let ((tst (expand-file-name "testfriends.cpp" semantic-utest-test-directory)))
+(ert-deftest semantic-utest-ia-struct.cpp ()
+  (let ((tst (expand-file-name "teststruct.cpp" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+;;(ert-deftest semantic-utest-ia-union.cpp ()
+;;  (let ((tst (expand-file-name "testunion.cpp" semantic-utest-test-directory)))
+;;    (should (file-exists-p tst))
+;;    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-templates.cpp ()
+  (let ((tst (expand-file-name "testtemplates.cpp" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+;;(ert-deftest semantic-utest-ia-friends.cpp ()
+;;  (let ((tst (expand-file-name "testfriends.cpp" semantic-utest-test-directory)))
+;;    (should (file-exists-p tst))
+;;    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-using.cpp ()
+  (let ((tst (expand-file-name "testusing.cpp" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-nsp.cpp ()
+  (let ((tst (expand-file-name "testnsp.cpp" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-localvars.cpp ()
+  (let ((tst (expand-file-name "testlocalvars.cpp" semantic-utest-test-directory)))
     (should (file-exists-p tst))
     (should-not (semantic-ia-utest tst))))
 
     (should (file-exists-p tst))
     (should-not (semantic-ia-utest tst))))
 
+(ert-deftest semantic-utest-ia-varnamse.java ()
+  (let ((tst (expand-file-name "testvarnames.java" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+;;(ert-deftest semantic-utest-ia-f90.f90 ()
+;;  (let ((tst (expand-file-name "testf90.f90" semantic-utest-test-directory)))
+;;    (should (file-exists-p tst))
+;;    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-wisent.wy ()
+  (let ((tst (expand-file-name "testwisent.wy" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-texi ()
+  (let ((tst (expand-file-name "test.texi" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-make ()
+  (let ((tst (expand-file-name "test.mk" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
+(ert-deftest semantic-utest-ia-srecoder ()
+  (let ((tst (expand-file-name "test.srt" semantic-utest-test-directory)))
+    (should (file-exists-p tst))
+    (should-not (semantic-ia-utest tst))))
+
 ;;; Core testing utility
 (defun semantic-ia-utest (testfile)
   "Run the semantic ia unit test against stored sources."
 
     ;; Keep looking for test points until we run out.
     (while (save-excursion
-            (setq regex-p (concat "//\\s-*-" (number-to-string idx) "-" )
-                  regex-a (concat "//\\s-*#" (number-to-string idx) "#" ))
+            (setq regex-p (concat "\\(" comment-start-skip "\\)\\s-*-"
+                                  (number-to-string idx) "-" )
+                  regex-a (concat "\\(" comment-start-skip "\\)\\s-*#"
+                                  (number-to-string idx) "#" ))
             (goto-char (point-min))
             (save-match-data
               (when (re-search-forward regex-p nil t)
       (save-excursion
 
        (goto-char p)
+       (skip-chars-backward " ") ;; some languages need a space.
 
        (let* ((ctxt (semantic-analyze-current-context))
+               ;; TODO - fix the NOTFOUND case to be nil and not an error when finding
+               ;; completions, then remove the below debug-on-error setting.
+               (debug-on-error nil)
               (acomp
-               (condition-case nil
+               (condition-case err
                    (semantic-analyze-possible-completions ctxt)
-                 (error nil))))
-         (setq actual (mapcar 'semantic-tag-name acomp)))
+                  ((error user-error) nil))
+                ))
+         (setq actual (mapcar 'semantic-format-tag-name acomp)))
 
        (goto-char a)
 
            (error (setq desired (format "  FAILED TO PARSE: %S"
                                         bss)))))
 
+       (setq actual (sort actual 'string<))
+       (setq desired (sort desired 'string<))
+
        (if (equal actual desired)
-           (setq pass (cons idx pass))
+            (prog1
+               (setq pass (cons idx pass))
+              ;;(message "PASS: %S" actual)
+              )
          (setq fail (cons
                       (list
                        (format "Failed %d.  Desired: %S Actual %S"
       )
 
     (when fail
-      (cons "COMPLETION SUBTEST" fail))
+      (cons "COMPLETION SUBTEST" (reverse fail)))
     ))
 
 (defun semantic-ia-utest-buffer-refs ()
         )
     ;; Keep looking for test points until we run out.
     (while (save-excursion
-            (setq regex-p (concat "//\\s-*\\^" (number-to-string idx) "^" )
+            (setq regex-p (concat "\\(" comment-start-skip
+                                  "\\)\\s-*\\^" (number-to-string idx) "^" )
                   )
             (goto-char (point-min))
             (save-match-data
         )
     ;; Keep looking for test points until we run out.
     (while (save-excursion
-            (setq regex-p (concat "//\\s-*\\%" (number-to-string idx) "%" )
+            (setq regex-p (concat "\\(" comment-start-skip "\\)\\s-*\\%"
+                                  (number-to-string idx) "%" )
                   )
             (goto-char (point-min))
             (save-match-data
             tag)
 
       (setq actual-result (semantic-symref-find-references-by-name
-                          (semantic-tag-name tag) 'target
+                          (semantic-format-tag-name tag) 'target
                           'symref-tool-used))
 
       (if (not actual-result)
@@ -393,13 +469,14 @@ tag that contains point, and return that."
         )
     ;; Keep looking for test points until we run out.
     (while (save-excursion
-            (setq regex-p (concat "//\\s-*@"
+            (setq regex-p (concat "\\(" comment-start-skip "\\)\\s-*@"
                                   (number-to-string idx)
-                                  "@\\s-+\\(\\w+\\)" ))
+                                  "@\\s-+\\w+" ))
             (goto-char (point-min))
             (save-match-data
               (when (re-search-forward regex-p nil t)
-                (goto-char (match-beginning 1))
+                (goto-char (match-end 0))
+                (skip-syntax-backward "w")
                 (setq desired (read (buffer-substring (point) (point-at-eol))))
                 (setq start (match-beginning 0))
                 (goto-char start)