This file is indexed.

/usr/share/common-lisp/source/mcclim/Drei/Tests/cl-automaton/state-and-transition-tests.lisp is in cl-mcclim 0.9.6.dfsg.cvs20100315-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
;;; -*- Mode: Lisp; Package: COMMON-LISP-USER -*-

;;;  (c) copyright 2005 by
;;;           Aleksandar Bakic (a_bakic@yahoo.com)
;;;  (c) copyright 2006 by
;;;           Troels Henriksen (athas@sigkill.dk)

;;; This library is free software; you can redistribute it and/or
;;; modify it under the terms of the GNU Library General Public
;;; License as published by the Free Software Foundation; either
;;; version 2 of the License, or (at your option) any later version.
;;;
;;; This library 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
;;; Library General Public License for more details.
;;;
;;; You should have received a copy of the GNU Library General Public
;;; License along with this library; if not, write to the
;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;;; Boston, MA  02111-1307  USA.

(cl:in-package :drei-tests)

(def-suite state-and-transition-tests :description "The test
suite for CL-AUTOMATON state-and-transition related tests." :in automaton-tests)

(in-suite state-and-transition-tests)

(test clone.transition
  (let* ((t1 (make-instance 'automaton::transition
                            :minc (char-code #\a) :maxc (char-code #\b)
                            :to (make-instance 'automaton::state)))
         (t2 (automaton::clone t1)))
    (is (eqv t1 t2 +equalp-key-situation+))
    (is (eql (hash t1 +equalp-key-situation+)
             (hash t2 +equalp-key-situation+)))))

(test transition<.1
  (let ((t1 (make-instance 'automaton::transition
                           :minc (char-code #\a) :maxc (char-code #\b)
                           :to (make-instance 'automaton::state)))
        (t2 (make-instance 'automaton::transition
                           :minc (char-code #\c) :maxc (char-code #\d)
                           :to (make-instance 'automaton::state)))
        (automaton::*to-first* nil))
    (is-true (automaton::transition< t1 t2))))

(test transition<.2
  (let ((t1 (make-instance 'automaton::transition
                           :minc (char-code #\a) :maxc (char-code #\b)
                           :to (make-instance 'automaton::state)))
        (t2 (make-instance 'automaton::transition
                           :minc (char-code #\c) :maxc (char-code #\d)
                           :to (make-instance 'automaton::state)))
        (automaton::*to-first* t))
    (setf (automaton::num (automaton::to t1)) 1)
    (is-true (automaton::transition< t2 t1)))
  (let ((t1 (make-instance 'automaton::transition
                           :minc (char-code #\a) :maxc (char-code #\b)
                           :to (make-instance 'automaton::state)))
        (t2 (make-instance 'automaton::transition
                           :minc (char-code #\a) :maxc (char-code #\d)
                           :to (make-instance 'automaton::state)))
        (automaton::*to-first* t))
    (is-true (automaton::transition< t2 t1))))

(test transition<.3
  (let ((t1 (make-instance 'automaton::transition
                           :minc (char-code #\a) :maxc (char-code #\c)
                           :to (make-instance 'automaton::state)))
        (t2 (make-instance 'automaton::transition
                           :minc (char-code #\a) :maxc (char-code #\b)
                           :to (make-instance 'automaton::state)))
        (automaton::*to-first* nil))
    (is-true (automaton::transition< t1 t2))))

(test sstep.test-1
  (let* ((s (make-instance 'automaton::state))
	 (tr (make-instance 'automaton::transition
			    :minc (char-code #\a) :maxc (char-code #\b) :to s)))
    (htadd (automaton::transitions s) tr)
    (is (eq (automaton::sstep s #\a) s))))

(test sstep.test-2
  (let* ((s (make-instance 'automaton::state))
	 (tr (make-instance 'automaton::transition
			    :minc (char-code #\a) :maxc (char-code #\b) :to s)))
    (htadd (automaton::transitions s) tr)
    (is-false (automaton::sstep s #\c))))

(test add-epsilon
  (let* ((s1 (make-instance 'automaton::state))
         (s2 (make-instance 'automaton::state))
         (tr (make-instance 'automaton::transition
                            :minc (char-code #\a) :maxc (char-code #\b) :to s2)))
    (htadd (automaton::transitions s2) tr)
    (automaton::add-epsilon s1 s2)
    (is-true (htpresent (automaton::transitions s1) tr))))

(test sorted-transition-vector
  (let* ((t1 (make-instance 'automaton::transition
                            :minc (char-code #\a) :maxc (char-code #\c)
                            :to (make-instance 'automaton::state)))
         (t2 (make-instance 'automaton::transition
                            :minc (char-code #\a) :maxc (char-code #\b)
                            :to (make-instance 'automaton::state)))
         (s (make-instance 'automaton::state)))
    (htadd (automaton::transitions s) t1)
    (htadd (automaton::transitions s) t2)
    (is (equalp (automaton::sorted-transition-vector s nil)
                (vector t1 t2)))))

(test sorted-transition-list
  (let* ((t1 (make-instance 'automaton::transition
                            :minc (char-code #\a) :maxc (char-code #\c)
                            :to (make-instance 'automaton::state)))
         (t2 (make-instance 'automaton::transition
                            :minc (char-code #\a) :maxc (char-code #\b)
                            :to (make-instance 'automaton::state)))
         (s (make-instance 'automaton::state)))
    (htadd (automaton::transitions s) t1)
    (htadd (automaton::transitions s) t2)
    (is (equal (automaton::sorted-transition-list s nil)
               (list t1 t2)))))