1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
;;; cedet/semantic-utest-fmt.el --- Parsing / Formatting tests
;;; Copyright (C) 2003-2004, 2007-2019 Free Software Foundation, Inc.
;; Author: Eric M. Ludlam <zappo@gnu.org>
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; Unit tests for the formatting feature.
;;
;; Using test code from the tests source directory, parse the source
;; file. After parsing, read the comments for each signature, and
;; make sure that the semantic-tag-format-* functions in question
;; created the desired output.
(require 'semantic)
(require 'semantic/format)
;;; Code:
(defvar cedet-utest-directory
(let* ((C (file-name-directory (locate-library "cedet")))
(D (expand-file-name "../../test/manual/cedet/" C)))
D)
"Location of test files for this test suite.")
(defvar semantic-fmt-utest-file-list
'("tests/test-fmt.cpp"
;; "tests/test-fmt.el" - add this when elisp is support by dflt in Emacs
)
"List of files to run unit tests in.")
(defvar semantic-fmt-utest-error-log-list nil
"Log errors during testing in this variable.")
(ert-deftest semantic-fmt-utest ()
"Visit all file entries, and run formatting test.
Files to visit are in `semantic-fmt-utest-file-list'."
(save-current-buffer
(semantic-mode 1)
(let ((fl semantic-fmt-utest-file-list)
(fname nil)
)
(dolist (FILE fl)
(save-current-buffer
(setq fname (expand-file-name FILE cedet-utest-directory))
;; Make sure we have the files we think we have.
(should (file-exists-p fname))
;; (error "Cannot find unit test file: %s" fname))
;; Run the tests.
(let ((fb (find-buffer-visiting fname))
(b (semantic-find-file-noselect fname))
(num 0)
(tags nil))
(save-current-buffer
(set-buffer b)
(should (semantic-active-p))
;;(error "Cannot open %s for format tests" fname))
;; This will force a reparse, removing any chance of semanticdb cache
;; using stale data.
(semantic-clear-toplevel-cache)
;; Force the reparse
(setq tags (semantic-fetch-tags))
(setq num (length tags))
(save-excursion
(while tags
(let* ((T (car tags))
(start (semantic-tag-end T))
(end (if (cdr tags)
(semantic-tag-start (car (cdr tags)))
(point-max)))
(TESTS nil)
)
(goto-char start)
;; Scan the space between tags for all test condition matches.
(while (re-search-forward "## \\([a-z-]+\\) \"\\([^\n\"]+\\)\"$" end t)
(push (cons (match-string 1) (match-string 2)) TESTS))
(setq TESTS (nreverse TESTS))
(dolist (TST TESTS)
(let* ( ;; For each test, convert CAR into a semantic-format-tag* fcn
(sym (intern (concat "semantic-format-tag-" (car TST))))
;; Convert the desired result from a string syntax to a string.
(desired (cdr TST))
;; What does the fmt function do?
(actual (funcall sym T))
)
(when (not (string= desired actual))
(should-not (list "Desired" desired
"Actual" actual
"Formatter" (car TST))))
)))
(setq tags (cdr tags)))
))
;; If it wasn't already in memory, whack it.
(when (and b (not fb))
(kill-buffer b)))
))
)))
(provide 'cedet/semantic/fmt-utest)
;;; semantic-fmt-utest.el ends here
|