(assert (= 113 (count #\? string :start #x80))))))
(delete-file *test-path*)
\f
+;;; ucs-2 tests
+(with-test (:name (:multibyte :ucs2le))
+ (let* ((size 120)
+ (array (map-into (make-array size :element-type '(unsigned-byte 16))
+ (lambda () (random #x10000)))))
+ (with-open-file (s *test-path* :direction :output :if-exists :supersede :element-type '(unsigned-byte 8))
+ (dotimes (i size)
+ (write-byte (ldb (byte 8 0) (aref array i)) s)
+ (write-byte (ldb (byte 8 8) (aref array i)) s)))
+ (with-open-file (s *test-path* :external-format :ucs2le)
+ (let ((string (make-string size)))
+ (read-sequence string s)
+ (dotimes (i size)
+ (assert (= (char-code (char string i)) (aref array i))))))))
+
+(with-test (:name (:multibyte :ucs2be))
+ (let* ((size 120)
+ (array (map-into (make-array size :element-type '(unsigned-byte 16))
+ (lambda () (random #x10000)))))
+ (with-open-file (s *test-path* :direction :output :if-exists :supersede :element-type '(unsigned-byte 8))
+ (dotimes (i size)
+ (write-byte (ldb (byte 8 8) (aref array i)) s)
+ (write-byte (ldb (byte 8 0) (aref array i)) s)))
+ (with-open-file (s *test-path* :external-format :ucs2be)
+ (let ((string (make-string size)))
+ (read-sequence string s)
+ (dotimes (i size)
+ (assert (= (char-code (char string i)) (aref array i))))))))
+
+(with-test (:name (:multibyte :output-replacement :ucs2le))
+ (let* ((size 1200)
+ (string (map-into (make-string size)
+ (lambda () (code-char (random #x10000))))))
+ (setf (char string 0) (code-char #x10001)
+ (char string (1- size)) (code-char #x10002))
+ (with-open-file (s *test-path* :direction :output :if-exists :supersede :external-format '(:ucs2le :replacement #\replacement_character))
+ (write-string string s))
+ (with-open-file (s *test-path* :external-format :ucs2le)
+ (let ((new (make-string size)))
+ (read-sequence new s)
+ (assert (char= (char new 0) #\replacement_character))
+ (assert (char= (char new (1- size)) #\replacement_character))
+ (assert (string= string new :start1 1 :start2 1 :end1 (1- size) :end2 (1- size)))))))
+
+(with-test (:name (:multibyte :output-replacement :ucs2be))
+ (let* ((size 1200)
+ (string (map-into (make-string size)
+ (lambda () (code-char (random #x10000))))))
+ (setf (char string 0) (code-char #x10001)
+ (char string (1- size)) (code-char #x10002))
+ (with-open-file (s *test-path* :direction :output :if-exists :supersede :external-format '(:ucs2be :replacement #\replacement_character))
+ (write-string string s))
+ (with-open-file (s *test-path* :external-format :ucs2be)
+ (let ((new (make-string size)))
+ (read-sequence new s)
+ (assert (char= (char new 0) #\replacement_character))
+ (assert (char= (char new (1- size)) #\replacement_character))
+ (assert (string= string new :start1 1 :start2 1 :end1 (1- size) :end2 (1- size)))))))
+\f
;;;; success