-
Notifications
You must be signed in to change notification settings - Fork 31
/
dtrt-indent-test.el
203 lines (177 loc) · 5.77 KB
/
dtrt-indent-test.el
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
;;; dtrt-indent-test.el --- Tests for dtrt-indent.el
;; Copyright (C) 2003, 2007, 2008 Julian Scheid
;; Author: Julian Scheid <julians37@googlemail.com>
;; Keywords: convenience files languages c
;; This file 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 2, or (at your option)
;; any later version.
;; This file 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 this software; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
;; Floor, Boston, MA 02110-1301 USA
(eval-when-compile (require 'cl-lib))
(require 'dtrt-indent)
;;-----------------------------------------------------------------
;; Tests
(defun dtrt-indent-functional-test (args)
(with-temp-buffer
(make-local-variable 'dtrt-indent-verbosity)
(setq dtrt-indent-verbosity 0)
(insert (cdr (assoc :buffer-contents args)))
(let* ((language-and-variable
(cdr (dtrt-indent--search-hook-mapping
(cdr (assoc :mode args)))))
(result
(dtrt-indent--analyze
(dtrt-indent--calc-histogram
(car language-and-variable))))
(best-guess
(cdr (assoc :best-guess result)))
(rejected
(cdr (assoc :rejected result)))
(confidence
(cdr (assoc :confidence result)))
(best-indent-offset
(nth 0 best-guess))
(indent-offset-variable
(nth 1 language-and-variable))
(change-indent-tabs-mode
(cdr (assoc :change-indent-tabs-mode result)))
(indent-tabs-mode-setting
(cdr (assoc :indent-tabs-mode-setting result)))
(expected-offset
(cdr (assoc :expected-offset args)))
(expected-tab-setting
(cdr (assoc :expected-tab-setting args))))
(cond
((eq expected-tab-setting 'hard)
(cl-assert (eq change-indent-tabs-mode t))
(cl-assert (eq indent-tabs-mode-setting t)))
((eq expected-tab-setting 'soft)
(cl-assert (eq change-indent-tabs-mode t))
(cl-assert (eq indent-tabs-mode-setting nil)))
((eq expected-tab-setting 'undecided)
(cl-assert (eq change-indent-tabs-mode nil))))
(if (not expected-offset)
(cl-assert (not (eq nil rejected)) t)
(cl-assert (eq nil rejected) t)
(cl-assert (eq expected-offset
best-indent-offset) t)))))
(defun dtrt-indent-test-rec-directory-files
(directory filename-pattern function)
(let ((files
(directory-files directory t)))
(mapc (lambda (file)
(when (and (not (file-directory-p file))
(string-match filename-pattern
(file-name-nondirectory file)))
(funcall function file)))
files)))
(defun dtrt-indent-bulk-test (args)
(princ (format "Performing bulk test on %s\n"
(cdr (assoc :directory args))))
(setq dtrt-indent-verbosity 0)
(dtrt-indent-test-rec-directory-files
(cdr (assoc :directory args))
(cdr (assoc :filename-pattern args))
(lambda (file)
(princ
(format
"file %s -> %s\n"
file
(with-temp-buffer
"*dtrt-indent-test-file*"
(insert-file-contents-literally file)
(dtrt-indent-try-adjust)))))))
;; Functional tests
(dtrt-indent-functional-test
'((:buffer-contents . "foo")
(:mode . sh-mode)
(:expected-offset . nil)))
(dtrt-indent-functional-test
'((:buffer-contents . "\
aa
aa
aa")
(:mode . sh-mode)
(:expected-offset . 4)))
(dtrt-indent-functional-test
'((:buffer-contents . "\
aa /*foo
bar
blah*/
aa
aa")
(:mode . c-mode)
(:expected-offset . 3)))
(dtrt-indent-functional-test
'((:buffer-contents . "\
tabbed-line
tabbed-line
tabbed-line
tabbed-line
softspace-line")
(:mode . c-mode)
(:expected-tab-setting . hard)
(:expected-offset . 8)))
(dtrt-indent-functional-test
'((:buffer-contents . "\
tabbed-line
softspace-line
softspace-line
softspace-line
softspace-line")
(:mode . c-mode)
(:expected-tab-setting . soft)
(:expected-offset . 8)))
(dtrt-indent-functional-test
'((:buffer-contents . "\
tabbed-line
tabbed-line
tabbed-line
softspace-line
softspace-line")
(:mode . c-mode)
(:expected-tab-setting . undecided)
(:expected-offset . 8)))
(define-derived-mode derived-c-mode c-mode "Derived-C"
"Derived-C for Test")
(dtrt-indent-functional-test
'((:buffer-contents . "\
tabbed-line
softspace-line
softspace-line
softspace-line
softspace-line")
(:mode . derived-c-mode)
(:expected-tab-setting . soft)
(:expected-offset . 8)))
(dtrt-indent-functional-test
'((:buffer-contents . "")
(:mode . c-mode)
(:expected-tab-setting . undecided)
(:expected-offset . nil)))
(dtrt-indent-functional-test
'((:buffer-contents . "\
(let ((foo 1)
(bar
2))
(message \"%d %d\" foo bar))")
(:mode . emacs-lisp-mode)
(:expected-tab-setting . soft)
(:expected-offset . nil)))
(when nil ;; disabled
(with-output-to-temp-buffer "*dtrt-indent-test-results*"
(dtrt-indent-bulk-test
'((:directory . "\
/Volumes/IOMEGA_HDD/guess-offset-test/phpMyAdmin-2.10.0.2-english/")
(:filename-pattern . ".php$")
(:mode . php-mode)
(:expected-offset . 4)
(:min-confidence . 80)))))
;;; dtrt-indent-tests.el ends here