~vcs-imports-ii/emms/master

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
;;; emms-tests.el --- Test suite for EMMS core  -*- lexical-binding: t; -*-

;; Copyright (C) 2023 Free Software Foundation, Inc.

;; Author: Petteri Hintsanen <petterih@iki.fi>

;; This file is part of EMMS.

;; EMMS 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, or (at your option)
;; any later version.

;; EMMS 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 EMMS; see the file COPYING. If not, write to the Free
;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
;; MA 02110-1301, USA.

;;; Code:

(require 'emms)
(require 'ert)

(ert-deftest emms-test-le-to-int ()
  (should (= (emms-le-to-int nil) 0))
  (should (= (emms-le-to-int [0]) 0))
  (should (= (emms-le-to-int [127]) 127))
  (should (= (emms-le-to-int [255]) 255))
  (should (= (emms-le-to-int [0 1]) 256))
  (should (= (emms-le-to-int [1 0]) 1))
  (should (= (emms-le-to-int [0 128]) 32768))
  (should (= (emms-le-to-int [1 2 4 8]) 134480385)))

(ert-deftest emms-test-from-twos-complement ()
  (should (= (emms-from-twos-complement 0 8) 0))
  (should (= (emms-from-twos-complement 1 8) 1))
  (should (= (emms-from-twos-complement 127 8) 127))
  (should (= (emms-from-twos-complement 128 8) -128))
  (should (= (emms-from-twos-complement 129 8) -127))
  (should (= (emms-from-twos-complement 254 8) -2))
  (should (= (emms-from-twos-complement 255 8) -1))
  (should (= (emms-from-twos-complement 0 10) 0))
  (should (= (emms-from-twos-complement 511 10) 511))
  (should (= (emms-from-twos-complement 512 10) -512))
  (should (= (emms-from-twos-complement 1023 10) -1)))

(ert-deftest emms-test-extract-bits ()
  (should (= (emms-extract-bits 128 7) 1))
  (should (= (emms-extract-bits 64 6 7) 1))
  (should (= (emms-extract-bits 128 6 7) 2))
  (should (= (emms-extract-bits 192 6 7) 3))
  (should (eq (emms-extract-bits 192 7 6) nil))
  (should (= (emms-extract-bits 128 32) 0))
  (should (= (emms-extract-bits 4294688772 21 31) 2047)))

;;; emms-tests.el ends here