ftw.test 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. ;;;; ftw.test --- exercise ice-9/ftw.scm -*- scheme -*-
  2. ;;;;
  3. ;;;; Copyright (C) 2006 Free Software Foundation, Inc.
  4. ;;;;
  5. ;;;; This program is free software; you can redistribute it and/or modify
  6. ;;;; it under the terms of the GNU General Public License as published by
  7. ;;;; the Free Software Foundation; either version 2, or (at your option)
  8. ;;;; any later version.
  9. ;;;;
  10. ;;;; This program is distributed in the hope that it will be useful,
  11. ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ;;;; GNU General Public License for more details.
  14. ;;;;
  15. ;;;; You should have received a copy of the GNU General Public License
  16. ;;;; along with this software; see the file COPYING. If not, write to
  17. ;;;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  18. ;;;; Boston, MA 02110-1301 USA
  19. ;;;;
  20. ;;;; As a special exception, the Free Software Foundation gives permission
  21. ;;;; for additional uses of the text contained in its release of GUILE.
  22. ;;;;
  23. ;;;; The exception is that, if you link the GUILE library with other files
  24. ;;;; to produce an executable, this does not by itself cause the
  25. ;;;; resulting executable to be covered by the GNU General Public License.
  26. ;;;; Your use of that executable is in no way restricted on account of
  27. ;;;; linking the GUILE library code into it.
  28. ;;;;
  29. ;;;; This exception does not however invalidate any other reasons why
  30. ;;;; the executable file might be covered by the GNU General Public License.
  31. ;;;;
  32. ;;;; This exception applies only to the code released by the
  33. ;;;; Free Software Foundation under the name GUILE. If you copy
  34. ;;;; code from other Free Software Foundation releases into a copy of
  35. ;;;; GUILE, as the General Public License permits, the exception does
  36. ;;;; not apply to the code that you add in this way. To avoid misleading
  37. ;;;; anyone as to the status of such modified files, you must delete
  38. ;;;; this exception notice from them.
  39. ;;;;
  40. ;;;; If you write modifications of your own for GUILE, it is your choice
  41. ;;;; whether to permit this exception to apply to your modifications.
  42. ;;;; If you do not wish that, delete this exception notice.
  43. (define-module (test-suite test-ice-9-ftw)
  44. #:use-module (test-suite lib)
  45. #:use-module (ice-9 ftw))
  46. ;; the procedure-source checks here ensure the vector indexes we write match
  47. ;; what ice-9/posix.scm stat:dev and stat:ino do (which in turn match
  48. ;; libguile/filesys.c of course)
  49. (or (equal? (procedure-source stat:dev)
  50. '(lambda (f) (vector-ref f 0)))
  51. (error "oops, unexpected stat:dev definition"))
  52. (define (stat:dev! st dev)
  53. (vector-set! st 0 dev))
  54. (or (equal? (procedure-source stat:ino)
  55. '(lambda (f) (vector-ref f 1)))
  56. (error "oops, unexpected stat:ino definition"))
  57. (define (stat:ino! st ino)
  58. (vector-set! st 1 ino))
  59. ;; similar to what's now in guile 1.8, but only working to fetch, not with set!
  60. (define-macro (@@ mod-name var-name)
  61. (let ((var (module-variable (resolve-module mod-name) var-name)))
  62. (if (not var)
  63. (error "no such variable" (list '@@ mod-name var-name)))
  64. (list variable-ref var)))
  65. ;;
  66. ;; visited?-proc
  67. ;;
  68. (with-test-prefix "visited?-proc"
  69. ;; normally internal-only
  70. (let* ((visited?-proc (@@ (ice-9 ftw) visited?-proc))
  71. (visited? (visited?-proc 97))
  72. (s (stat "/")))
  73. (define (try-visited? dev ino)
  74. (stat:dev! s dev)
  75. (stat:ino! s ino)
  76. (visited? s))
  77. (pass-if "0 0 - 1st" (eq? #f (try-visited? 0 0)))
  78. (pass-if "0 0 - 2nd" (eq? #t (try-visited? 0 0)))
  79. (pass-if "0 0 - 3rd" (eq? #t (try-visited? 0 0)))
  80. (pass-if "0 1" (eq? #f (try-visited? 0 1)))
  81. (pass-if "0 2" (eq? #f (try-visited? 0 2)))
  82. (pass-if "0 3" (eq? #f (try-visited? 0 3)))
  83. (pass-if "5 5" (eq? #f (try-visited? 5 5)))
  84. (pass-if "5 7" (eq? #f (try-visited? 5 7)))
  85. (pass-if "7 5" (eq? #f (try-visited? 7 5)))
  86. (pass-if "7 7" (eq? #f (try-visited? 7 7)))
  87. (pass-if "5 5 - 2nd" (eq? #t (try-visited? 5 5)))
  88. (pass-if "5 7 - 2nd" (eq? #t (try-visited? 5 7)))
  89. (pass-if "7 5 - 2nd" (eq? #t (try-visited? 7 5)))
  90. (pass-if "7 7 - 2nd" (eq? #t (try-visited? 7 7)))))