1 ;; Copyright (C) 1999 Free Software Foundation, Inc.
3 ;; Author: Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
4 ;; Maintainer: Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
8 ;; This file is part of XEmacs.
10 ;; XEmacs is free software; you can redistribute it and/or modify it
11 ;; under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; XEmacs is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ;; General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 ;;; Synched up with: Not in FSF.
29 ;; Test syntax related functions.
30 ;; Right now it tests scan_words using forward-word and backward-word.
31 ;; See test-harness.el for instructions on how to run these tests.
34 ;; W: word constituent character.
35 ;; NW: non word constituent character.
36 ;; -!-: current point.
38 ;; BOB: beginning of buffer.
40 ;; Algorithm of scan_words is simple. It just searches SW and then
41 ;; moves to NW. When with MULE, it also stops at word boundary. Word
42 ;; boundary is tricky and listing all possible cases will be huge.
43 ;; Those test are omitted here as it doesn't affect core
46 (defun test-forward-word (string stop)
47 (goto-char (point-max))
48 (let ((point (point)))
52 (Assert (eq (point) (+ point stop)))))
56 (test-forward-word "W " 1)
57 (test-forward-word "WO " 2)
59 (test-forward-word "W" 1)
60 (test-forward-word "WO" 2)
62 (test-forward-word " " 1)
63 (test-forward-word " !" 2)
65 (test-forward-word " W " 2)
66 (test-forward-word " WO " 3)
67 (test-forward-word " !W " 3)
68 (test-forward-word " !WO " 4)
70 (test-forward-word " W" 2)
71 (test-forward-word " WO" 3)
72 (test-forward-word " !W" 3)
73 (test-forward-word " !WO" 4))
75 (defun test-backward-word (string stop)
76 (goto-char (point-min))
78 (let ((point (point)))
80 (Assert (eq (point) (- point stop)))))
84 (test-backward-word " W" 1)
85 (test-backward-word " WO" 2)
87 (test-backward-word "W" 1)
88 (test-backward-word "WO" 2)
91 (test-backward-word " " 1)
92 (test-backward-word " !" 2)
94 (test-backward-word " W " 2)
95 (test-backward-word " WO " 3)
96 (test-backward-word " W !" 3)
97 (test-backward-word " WO !" 4)
99 (test-backward-word "W " 2)
100 (test-backward-word "WO " 3)
101 (test-backward-word "W !" 3)
102 (test-backward-word "WO !" 4))
104 ;; Works like test-forward-word, except for the following:
105 ;; after <string> is inserted, the syntax-table <apply-syntax>
106 ;; is applied to position <apply-pos>.
107 ;; <apply-pos> can be in the form (start . end), or can be a
108 ;; character position.
109 (defun test-syntax-table (string apply-pos apply-syntax stop)
110 ;; We don't necessarily have syntax-table properties ...
111 (when (boundp 'lookup-syntax-properties) ; backwards compatible kludge
112 ;; ... and they may not be enabled by default if we do.
113 (setq lookup-syntax-properties t)
114 (goto-char (point-max))
115 (unless (consp apply-pos)
116 (setq apply-pos `(,apply-pos . ,(+ 1 apply-pos))))
117 (let ((point (point)))
119 (put-text-property (+ point (car apply-pos)) (+ point (cdr apply-pos))
120 'syntax-table apply-syntax)
123 (Assert (eq (point) (+ point stop))))))
125 ;; test syntax-table extents
127 ;; Apply punctuation to word
128 (test-syntax-table "WO" 1 `(,(syntax-string-to-code ".")) 1)
129 ;; Apply word to punctuation
130 (test-syntax-table "W." 1 `(,(syntax-string-to-code "w")) 2))
132 ;; Test forward-comment at buffer boundaries
133 ;; #### The second Assert fails (once interpreted, once compiled) on 21.4.9
134 ;; with sjt's version of Andy's syntax-text-property-killer patch.
136 (if (not (fboundp 'c-mode))
137 ;; #### This whole thing should go inside a macro Skip-Test
138 (let* ((reason "c-mode unavailable")
139 (count (gethash reason skipped-test-reasons)))
140 ;;(message "%S: %S" reason count)
141 (puthash reason (if (null count) 1 (1+ count))
142 skipped-test-reasons)
143 (Print-Skip "comment and parse-partial-sexp tests" reason))
146 (insert "// comment\n")
148 (Assert (eq (point) (point-min)))
150 (let ((point (point)))
151 (insert "/* comment */")
154 (Assert (eq (point) (point-max)))
156 ;; this last used to crash
157 (parse-partial-sexp point (point-max)))))