aboutsummaryrefslogtreecommitdiffstats
path: root/test/src/coding-tests.el
blob: c318b6f4e50d10b4ba6a5f2ea196ed54da88af7f (plain) (blame)
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
;;; coding-tests.el --- tests for text encoding and decoding -*- lexical-binding: t -*-

;; Copyright (C) 2013-2026 Free Software Foundation, Inc.

;; Author: Eli Zaretskii <eliz@gnu.org>
;; Author: Kenichi Handa <handa@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/>.

;;; Code:

(require 'ert)

;; Optional internal helpers (only defined with ENABLE_UTF_8_CONVERTER_TEST).
(declare-function internal-encode-string-utf-8 "coding.c")
(declare-function internal-decode-string-utf-8 "coding.c")

;; Directory to hold test data files.
(defvar coding-tests-workdir
  (expand-file-name "coding-tests" temporary-file-directory))

;; Remove all generated test files.
(defun coding-tests-remove-files ()
  (delete-directory coding-tests-workdir t))

(ert-deftest ert-test-coding-bogus-coding-systems ()
  (unwind-protect
      (let (test-file)
        (or (file-directory-p coding-tests-workdir)
            (mkdir coding-tests-workdir t))
        (setq test-file (expand-file-name "nonexistent" coding-tests-workdir))
        (if (file-exists-p test-file)
            (delete-file test-file))
        (should-error
         (let ((coding-system-for-read 'bogus))
           (insert-file-contents test-file)))
        ;; See bug #21602.
        (setq test-file (expand-file-name "writing" coding-tests-workdir))
        (should-error
         (let ((coding-system-for-write (intern "\"us-ascii\"")))
           (write-region "some text" nil test-file))))
    (coding-tests-remove-files)))

;; See issue #5251.
(ert-deftest ert-test-unibyte-buffer-dos-eol-decode ()
  (with-temp-buffer
    (set-buffer-multibyte nil)
    (insert (encode-coding-string "あ" 'euc-jp) "\xd" "\n")
    (decode-coding-region (point-min) (point-max) 'euc-jp-dos)
    (should-not (string-search "\^M" (buffer-string)))))

;; Return the contents (specified by CONTENT-TYPE; ascii, latin, or
;; binary) of a test file.
(defun coding-tests-file-contents (content-type)
  (with-suppressed-warnings ((obsolete string-as-unibyte))
    (let* ((ascii "ABCDEFGHIJKLMNOPQRSTUVWXYZ\n")
           (latin (concat ascii "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ\n"))
           (binary (string-to-multibyte
                    (concat (string-as-unibyte latin)
                            (unibyte-string #xC0 #xC1 ?\n)))))
      (cond ((eq content-type 'ascii) ascii)
            ((eq content-type 'latin) latin)
            ((eq content-type 'binary) binary)
            (t
             (error "Invalid file content type: %s" content-type))))))

;; Generate FILE with CONTENTS encoded by CODING-SYSTEM.
;; whose encoding specified by CODING-SYSTEM.
(defun coding-tests-gen-file (file contents coding-system)
  (or (file-directory-p coding-tests-workdir)
      (mkdir coding-tests-workdir t))
  (setq file (expand-file-name file coding-tests-workdir))
  (with-temp-file file
    (set-buffer-file-coding-system coding-system)
    (insert contents))
  file)

;;; The following three functions are filters for contents of a test
;;; file.

;; Convert all LFs to CR LF sequences in the string STR.
(defun coding-tests-lf-to-crlf (str)
  (with-temp-buffer
    (insert str)
    (goto-char (point-min))
    (while (search-forward "\n" nil t)
      (delete-char -1)
      (insert "\r\n"))
    (buffer-string)))

;; Convert all LFs to CRs in the string STR.
(defun coding-tests-lf-to-cr (str)
  (with-temp-buffer
    (insert str)
    (subst-char-in-region (point-min) (point-max) ?\n ?\r)
    (buffer-string)))

;; Convert all LFs to LF LF sequences in the string STR.
(defun coding-tests-lf-to-lflf (str)
  (with-temp-buffer
    (insert str)
    (goto-char (point-min))
    (while (search-forward "\n" nil t)
      (insert "\n"))
    (buffer-string)))

;; Prepend the UTF-8 BOM to STR.
(defun coding-tests-add-bom (str)
  (concat "\xfeff" str))

;; Return the name of test file whose contents specified by
;; CONTENT-TYPE and whose encoding specified by CODING-SYSTEM.
(defun coding-tests-filename (content-type coding-system &optional ext)
  (if ext
      (expand-file-name (format "%s-%s.%s" content-type coding-system ext)
			coding-tests-workdir)
    (expand-file-name (format "%s-%s" content-type coding-system)
		      coding-tests-workdir)))


;;; Check ASCII optimizing decoder

;; Generate a test file whose contents specified by CONTENT-TYPE and
;; whose encoding specified by CODING-SYSTEM.
(defun coding-tests-ao-gen-file (content-type coding-system)
  (let ((file (coding-tests-filename content-type coding-system)))
    (coding-tests-gen-file file
			    (coding-tests-file-contents content-type)
			    coding-system)))

;; Test the decoding of a file whose contents and encoding are
;; specified by CONTENT-TYPE and WRITE-CODING.  The test passes if the
;; file is read by READ-CODING and detected as DETECTED-CODING and the
;; contents is correctly decoded.
;; Optional 5th arg TRANSLATOR is a function to translate the original
;; file contents to match with the expected result of decoding.  For
;; instance, when a file of dos eol-type is read by unix eol-type,
;; `coding-tests-lf-to-crlf' must be specified.

(defun coding-tests (content-type write-coding read-coding detected-coding
				   &optional translator)
  (with-coding-priority '(utf-8-auto)
    (let ((filename (coding-tests-filename content-type write-coding)))
      (with-temp-buffer
        (let ((coding-system-for-read read-coding)
	      (contents (coding-tests-file-contents content-type))
	      (disable-ascii-optimization nil))
	  (if translator
	      (setq contents (funcall translator contents)))
	  (insert-file-contents filename)
	  (if (and (coding-system-equal buffer-file-coding-system detected-coding)
		   (string= (buffer-string) contents))
	      nil
	    (list buffer-file-coding-system
		  (string-to-list (buffer-string))
		  (string-to-list contents))))))))

(ert-deftest ert-test-coding-ascii ()
  (unwind-protect
      (progn
	(dolist (eol-type '(unix dos mac))
	  (coding-tests-ao-gen-file 'ascii eol-type))
	(should-not (coding-tests 'ascii 'unix 'undecided 'unix))
	(should-not (coding-tests 'ascii 'dos 'undecided 'dos))
	(should-not (coding-tests 'ascii 'dos 'dos 'dos))
	(should-not (coding-tests 'ascii 'mac 'undecided 'mac))
	(should-not (coding-tests 'ascii 'mac 'mac 'mac))
	(should-not (coding-tests 'ascii 'dos 'utf-8 'utf-8-dos))
	(should-not (coding-tests 'ascii 'dos 'unix 'unix
				   'coding-tests-lf-to-crlf))
	(should-not (coding-tests 'ascii 'mac 'dos 'dos
				   'coding-tests-lf-to-cr))
	(should-not (coding-tests 'ascii 'dos 'mac 'mac
				   'coding-tests-lf-to-lflf)))
    (coding-tests-remove-files)))

(ert-deftest ert-test-coding-latin ()
  (unwind-protect
      (progn
	(dolist (coding '("utf-8" "utf-8-with-signature"))
	  (dolist (eol-type '("unix" "dos" "mac"))
	    (coding-tests-ao-gen-file 'latin
				       (intern (concat coding "-" eol-type)))))
	(should-not (coding-tests 'latin 'utf-8-unix 'undecided 'utf-8-unix))
	(should-not (coding-tests 'latin 'utf-8-unix 'utf-8-unix 'utf-8-unix))
	(should-not (coding-tests 'latin 'utf-8-dos 'undecided 'utf-8-dos))
	(should-not (coding-tests 'latin 'utf-8-dos 'utf-8-dos 'utf-8-dos))
	(should-not (coding-tests 'latin 'utf-8-mac 'undecided 'utf-8-mac))
	(should-not (coding-tests 'latin 'utf-8-mac 'utf-8-mac 'utf-8-mac))
	(should-not (coding-tests 'latin 'utf-8-dos 'unix 'utf-8-unix
				   'coding-tests-lf-to-crlf))
	(should-not (coding-tests 'latin 'utf-8-mac 'dos 'utf-8-dos
				   'coding-tests-lf-to-cr))
	(should-not (coding-tests 'latin 'utf-8-dos 'mac 'utf-8-mac
				   'coding-tests-lf-to-lflf))
	(should-not (coding-tests 'latin 'utf-8-with-signature-unix 'undecided
				   'utf-8-with-signature-unix))
	(should-not (coding-tests 'latin 'utf-8-with-signature-unix 'utf-8-auto
				   'utf-8-with-signature-unix))
	(should-not (coding-tests 'latin 'utf-8-with-signature-dos 'undecided
				   'utf-8-with-signature-dos))
	(should-not (coding-tests 'latin 'utf-8-with-signature-unix 'utf-8
				   'utf-8-unix 'coding-tests-add-bom))
	(should-not (coding-tests 'latin 'utf-8-with-signature-unix 'utf-8
				   'utf-8-unix 'coding-tests-add-bom)))
    (coding-tests-remove-files)))

(ert-deftest ert-test-coding-binary ()
  (unwind-protect
      (progn
	(dolist (eol-type '("unix" "dos" "mac"))
	  (coding-tests-ao-gen-file 'binary
				     (intern (concat "raw-text" "-" eol-type))))
	(should-not (coding-tests 'binary 'raw-text-unix 'undecided
				   'raw-text-unix))
	(should-not (coding-tests 'binary 'raw-text-dos 'undecided
				   'raw-text-dos))
	(should-not (coding-tests 'binary 'raw-text-mac 'undecided
				   'raw-text-mac))
	(should-not (coding-tests 'binary 'raw-text-dos 'unix
				   'raw-text-unix 'coding-tests-lf-to-crlf))
	(should-not (coding-tests 'binary 'raw-text-mac 'dos
				   'raw-text-dos 'coding-tests-lf-to-cr))
	(should-not (coding-tests 'binary 'raw-text-dos 'mac
				   'raw-text-mac 'coding-tests-lf-to-lflf)))
    (coding-tests-remove-files)))


;;; Check the coding system `prefer-utf-8'.

;; Read FILE.  Check if the encoding was detected as DETECT.  If
;; PREFER is non-nil, prefer that coding system before reading.

(defun coding-tests-prefer-utf-8-read (file detect prefer)
  (with-temp-buffer
    (with-coding-priority (if prefer (list prefer))
      (insert-file-contents file))
    (if (eq buffer-file-coding-system detect)
	nil
      (format "Invalid detection: %s" buffer-file-coding-system))))

;; Read FILE, modify it, and write it.  Check if the coding system
;; used for writing was CODING.  If CODING-TAG is non-nil, insert
;; coding tag with it before writing.  If STR is non-nil, insert it
;; before writing.

(defun coding-tests-prefer-utf-8-write (file coding-tag coding
					      &optional str)
  (with-temp-buffer
    (insert-file-contents file)
    (goto-char (point-min))
    (if coding-tag
	(insert (format ";; -*- coding: %s; -*-\n" coding-tag))
      (insert ";;\n"))
    (if str
	(insert str))
    (write-file (coding-tests-filename 'test 'test "el"))
    (if (coding-system-equal buffer-file-coding-system coding)
	nil
      (format "Incorrect encoding: %s" last-coding-system-used))))

(ert-deftest ert-test-coding-prefer-utf-8 ()
  (unwind-protect
      (let ((ascii (coding-tests-gen-file "ascii.el"
					   (coding-tests-file-contents 'ascii)
					   'unix))
	    (latin (coding-tests-gen-file "utf-8.el"
					   (coding-tests-file-contents 'latin)
					   'utf-8-unix)))
	(should-not (coding-tests-prefer-utf-8-read
		     ascii 'prefer-utf-8-unix nil))
	(should-not (coding-tests-prefer-utf-8-read
		     latin 'utf-8-unix nil))
	(should-not (coding-tests-prefer-utf-8-read
		     latin 'utf-8-unix 'iso-8859-1))
	(should-not (coding-tests-prefer-utf-8-read
		     latin 'utf-8-unix 'sjis))
	(should-not (coding-tests-prefer-utf-8-write
		     ascii nil 'prefer-utf-8-unix))
	(should-not (coding-tests-prefer-utf-8-write
		     ascii 'iso-8859-1 'iso-8859-1-unix))
	(should-not (coding-tests-prefer-utf-8-write
		     ascii nil 'utf-8-unix "À")))
    (coding-tests-remove-files)))


;;; The following is for benchmark testing of the new optimized
;;; decoder, not for regression testing.

(defun generate-ascii-file ()
  (dotimes (_i 100000)
    (insert-char ?a 80)
    (insert "\n")))

(defun generate-rarely-nonascii-file ()
  (dotimes (i 100000)
    (if (/= i 50000)
	(insert-char ?a 80)
      (insert )
      (insert-char ?a 79))
    (insert "\n")))

(defun generate-mostly-nonascii-file ()
  (dotimes (_i 30000)
    (insert-char ?a 80)
    (insert "\n"))
  (dotimes (_i 20000)
    (insert-char  80)
    (insert "\n"))
  (dotimes (_i 10000)
    (insert-char ?あ 80)
    (insert "\n")))


(defvar test-file-list
  '((generate-ascii-file
     ("~/ascii-tag-utf-8-unix.unix" ";; -*- coding: utf-8-unix; -*-" unix)
     ("~/ascii-tag-utf-8.unix" ";; -*- coding: utf-8; -*-" unix)
     ("~/ascii-tag-none.unix" "" unix)
     ("~/ascii-tag-utf-8-dos.dos" ";; -*- coding: utf-8-dos; -*-" dos)
     ("~/ascii-tag-utf-8.dos" ";; -*- coding: utf-8; -*-" dos)
     ("~/ascii-tag-none.dos" "" dos))
    (generate-rarely-nonascii-file
     ("~/utf-8-r-tag-utf-8-unix.unix" ";; -*- coding: utf-8-unix; -*-" utf-8-unix)
     ("~/utf-8-r-tag-utf-8.unix" ";; -*- coding: utf-8; -*-" utf-8-unix)
     ("~/utf-8-r-tag-none.unix" "" utf-8-unix)
     ("~/utf-8-r-tag-utf-8-dos.dos" ";; -*- coding: utf-8-dos; -*-" utf-8-dos)
     ("~/utf-8-r-tag-utf-8.dos" ";; -*- coding: utf-8; -*-" utf-8-dos)
     ("~/utf-8-r-tag-none.dos" "" utf-8-dos))
    (generate-mostly-nonascii-file
     ("~/utf-8-m-tag-utf-8-unix.unix" ";; -*- coding: utf-8-unix; -*-" utf-8-unix)
     ("~/utf-8-m-tag-utf-8.unix" ";; -*- coding: utf-8; -*-" utf-8-unix)
     ("~/utf-8-m-tag-none.unix" "" utf-8-unix)
     ("~/utf-8-m-tag-utf-8-dos.dos" ";; -*- coding: utf-8-dos; -*-" utf-8-dos)
     ("~/utf-8-m-tag-utf-8.dos" ";; -*- coding: utf-8; -*-" utf-8-dos)
     ("~/utf-8-m-tag-none.dos" "" utf-8-dos))))

(defun generate-benchmark-test-file ()
  (interactive)
  (with-temp-buffer
    (message "Generating data...")
    (dolist (files test-file-list)
      (delete-region (point-min) (point-max))
      (funcall (car files))
      (dolist (file (cdr files))
	(message "Writing %s..." (car file))
	(goto-char (point-min))
	(insert (nth 1 file) "\n")
	(let ((coding-system-for-write (nth 2 file)))
	  (write-region (point-min) (point-max) (car file)))
	(delete-region (point-min) (point))))))

(defun benchmark-decoder ()
  (let ((gc-cons-threshold (max gc-cons-threshold 4000000)))
    (insert "Without optimization:\n")
    (dolist (files test-file-list)
      (dolist (file (cdr files))
	(let* ((disable-ascii-optimization t)
	       (result (benchmark-run 10
			 (with-temp-buffer (insert-file-contents (car file))))))
	  (insert (format "%s: %s\n"  (car file) result)))))
    (insert "With optimization:\n")
    (dolist (files test-file-list)
      (dolist (file (cdr files))
	(let* ((disable-ascii-optimization nil)
	       (result (benchmark-run 10
			 (with-temp-buffer (insert-file-contents (car file))))))
	  (insert (format "%s: %s\n" (car file) result)))))))

(ert-deftest coding-nocopy-trivial ()
  "Check that the NOCOPY parameter works for the trivial coding system."
  (let ((s "abc"))
    (should-not (eq (decode-coding-string s nil nil) s))
    (should (eq (decode-coding-string s nil t) s))
    (should-not (eq (encode-coding-string s nil nil) s))
    (should (eq (encode-coding-string s nil t) s))))

(ert-deftest coding-nocopy-ascii ()
  "Check that the NOCOPY parameter works for ASCII-only strings."
  (let* ((uni (apply #'string (number-sequence 0 127)))
         (multi (string-to-multibyte uni)))
    (dolist (s (list uni multi))
      ;; Encodings without EOL conversion.
      (dolist (coding '(us-ascii-unix iso-latin-1-unix utf-8-unix))
        (should-not (eq (decode-coding-string s coding nil) s))
        (should-not (eq (encode-coding-string s coding nil) s))
        (should (eq (decode-coding-string s coding t) s))
        (should (eq (encode-coding-string s coding t) s))
        (should (eq last-coding-system-used coding)))

      ;; With EOL conversion inhibited.
      (let ((inhibit-eol-conversion t))
        (dolist (coding '(us-ascii iso-latin-1 utf-8))
          (should-not (eq (decode-coding-string s coding nil) s))
          (should-not (eq (encode-coding-string s coding nil) s))
          (should (eq (decode-coding-string s coding t) s))
          (should (eq (encode-coding-string s coding t) s))))))

  ;; Check identity decoding with EOL conversion for ASCII except CR.
  (let* ((uni (apply #'string (delq ?\r (number-sequence 0 127))))
         (multi (string-to-multibyte uni)))
    (dolist (s (list uni multi))
      (dolist (coding '(us-ascii-dos iso-latin-1-dos utf-8-dos mac-roman-mac))
        (should-not (eq (decode-coding-string s coding nil) s))
        (should (eq (decode-coding-string s coding t) s)))))

  ;; Check identity encoding with EOL conversion for ASCII except LF.
  (let* ((uni (apply #'string (delq ?\n (number-sequence 0 127))))
         (multi (string-to-multibyte uni)))
    (dolist (s (list uni multi))
      (dolist (coding '(us-ascii-dos iso-latin-1-dos utf-8-dos mac-roman-mac))
        (should-not (eq (encode-coding-string s coding nil) s))
        (should (eq (encode-coding-string s coding t) s))))))

(ert-deftest coding-tests-coding-system-p ()
  (should (coding-system-p nil))
  (should (coding-system-p 'utf-8))
  (should-not (coding-system-p 'coding-tests-no-such-system)))

(ert-deftest coding-tests-check-coding-system ()
  (should (eq (check-coding-system 'utf-8) 'utf-8))
  (should (eq (check-coding-system nil) nil))
  (should-error (check-coding-system 'coding-tests-no-such-system)
                :type 'coding-system-error))

(ert-deftest coding-tests-coding-system-priority-list ()
  (let ((list (coding-system-priority-list)))
    (should (listp list))
    (should (consp list))
    (dolist (cs list)
      (should (coding-system-p cs))))
  (let ((highest (coding-system-priority-list t)))
    (should (symbolp highest))
    (should (coding-system-p highest))))

(ert-deftest coding-tests-coding-system-aliases ()
  (let ((aliases (coding-system-aliases 'utf-8)))
    (should (listp aliases))
    (should (memq 'utf-8 aliases))))

(ert-deftest coding-tests-coding-system-plist ()
  (let ((plist (coding-system-plist 'utf-8)))
    (should (listp plist))
    (should (plist-member plist :mnemonic))))

(ert-deftest coding-tests-coding-system-put ()
  (let* ((cs 'utf-8)
         (mnemonic (plist-get (coding-system-plist cs) :mnemonic)))
    (coding-system-put cs :mnemonic mnemonic)
    (should (eq (plist-get (coding-system-plist cs) :mnemonic) mnemonic))))

(ert-deftest coding-tests-coding-system-eol-type ()
  (let ((eol (coding-system-eol-type 'utf-8-unix)))
    (should (integerp eol))
    (should (memq eol '(0 1 2)))))


(ert-deftest coding-check-coding-systems-region ()
  (should (equal (check-coding-systems-region "aå" nil '(utf-8))
                 nil))
  (should (equal (check-coding-systems-region "aåbγc" nil
                                              '(utf-8 iso-latin-1 us-ascii))
                 '((iso-latin-1 3) (us-ascii 1 3))))
  (should-error (check-coding-systems-region "å" nil '(bad-coding-system))))

(ert-deftest coding-tests--detect-coding-string-null-byte ()
  (let ((inhibit-null-byte-detection nil))
    (should (memq 'no-conversion
                  (detect-coding-string (string ?a ?\0 ?b)))))
  (let ((inhibit-null-byte-detection t))
    (should (memq 'undecided
                  (detect-coding-string (string ?a ?\0 ?b))))))

(ert-deftest coding-tests--detect-coding-string-iso-escape ()
  (let ((s (decode-coding-string
            (unibyte-string #x1b ?$ ?B ?A ?A #x1b ?\( ?B)
            'no-conversion)))
    (let ((inhibit-iso-escape-detection nil))
      (should (memq 'iso-2022-7bit (detect-coding-string s))))
    (let ((inhibit-iso-escape-detection t))
      (should (memq 'undecided (detect-coding-string s))))))

(ert-deftest coding-tests--detect-coding-region ()
  (with-temp-buffer
    (insert "abc")
    (let ((coding (detect-coding-region (point-min) (point-max) t)))
      (should (coding-system-p coding)))))

(ert-deftest coding-tests--find-coding-systems-region-internal ()
  (should (eq (find-coding-systems-region-internal "abc" nil nil) t))
  (let ((result (find-coding-systems-region-internal (string #x03B1)
                                                     nil nil)))
    (should (listp result))
    (should (memq 'utf-8 result))))

(ert-deftest coding-tests--decode-encode-sjis ()
  (should (equal (decode-sjis-char #x82A0) ?あ))
  (should (= (encode-sjis-char ?あ) #x82A0))
  (should-error (decode-sjis-char #x817F)))

(ert-deftest coding-tests--decode-encode-big5 ()
  (should (equal (decode-big5-char ?A) ?A))
  (should (= (encode-big5-char ?A) ?A))
  (should-error (decode-big5-char #xA17F)))

(ert-deftest coding-tests--terminal-coding-system-internal ()
  (let ((orig (terminal-coding-system)))
    (unwind-protect
        (progn
          (set-terminal-coding-system-internal 'utf-8 nil)
          (should (eq (terminal-coding-system) 'utf-8))
          (set-safe-terminal-coding-system-internal 'us-ascii))
      (set-terminal-coding-system-internal (or orig 'undecided) nil))))

(ert-deftest coding-tests--keyboard-coding-system-internal ()
  (let ((orig (keyboard-coding-system)))
    (unwind-protect
        (progn
          (set-keyboard-coding-system-internal 'utf-8 nil)
          (should (eq (keyboard-coding-system) 'utf-8)))
      (set-keyboard-coding-system-internal orig nil))))

(ert-deftest coding-tests--find-operation-coding-system ()
  (let ((file-coding-system-alist '(("foo\\.txt\\'" . utf-8))))
    (should (equal (find-operation-coding-system 'insert-file-contents
                                                 "foo.txt")
                   '(utf-8 . utf-8))))
  (let ((file-coding-system-alist '(("foo\\.txt\\'" . coding-tests--cs-fn))))
    (defun coding-tests--cs-fn (_args) 'utf-8)
    (should (equal (find-operation-coding-system 'insert-file-contents
                                                 "foo.txt")
                   '(utf-8 . utf-8)))))

(ert-deftest coding-tests--set-coding-system-priority ()
  (let ((orig (coding-system-priority-list)))
    (unwind-protect
        (progn
          (set-coding-system-priority 'utf-8)
          (should (eq (coding-system-priority-list t) 'utf-8)))
      (apply #'set-coding-system-priority orig))))

(defvar coding-tests--internal-counter 0)

(ert-deftest coding-tests--define-coding-system-internal ()
  (let* ((name (intern (format "coding-tests--raw-%d"
                               (setq coding-tests--internal-counter
                                     (1+ coding-tests--internal-counter)))))
         (plist (list :docstring "coding-tests raw")))
    (define-coding-system-internal name ?r 'raw-text (list 'ascii)
                                   t nil nil nil nil ?\  t plist 'unix)
    (should (coding-system-p name))
    (should (equal (plist-get (coding-system-plist name) :docstring)
                   "coding-tests raw"))
    (let ((alias (intern (format "coding-tests--raw-alias-%d"
                                 coding-tests--internal-counter))))
      (define-coding-system-alias alias name)
      (should (memq alias (coding-system-aliases name)))
      (should (eq (coding-system-base alias) name)))))

(ert-deftest coding-tests--internal-utf-8-converters ()
  (skip-unless (fboundp 'internal-encode-string-utf-8))
  (let ((enc (internal-encode-string-utf-8 "abc" nil nil nil nil nil 1))
        (dec (internal-decode-string-utf-8 "abc" nil nil nil nil nil 1)))
    (should (stringp enc))
    (should (equal enc "abc"))
    (should (stringp dec))
    (should (equal dec "abc"))))

(provide 'coding-tests)
;;; coding-tests.el ends here