audio.scm 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ;;; GNU Guix --- Functional package management for GNU
  2. ;;; Copyright © 2017 Peter Mikkelsen <petermikkelsen10@gmail.com>
  3. ;;;
  4. ;;; This file is part of GNU Guix.
  5. ;;;
  6. ;;; GNU Guix is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 3 of the License, or (at
  9. ;;; your option) any later version.
  10. ;;;
  11. ;;; GNU Guix is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;;; GNU General Public License for more details.
  15. ;;;
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
  18. (define-module (gnu tests audio)
  19. #:use-module (gnu tests)
  20. #:use-module (gnu system)
  21. #:use-module (gnu system vm)
  22. #:use-module (gnu services)
  23. #:use-module (gnu services audio)
  24. #:use-module (gnu packages mpd)
  25. #:use-module (guix gexp)
  26. #:export (%test-mpd))
  27. (define %mpd-os
  28. (simple-operating-system
  29. (service mpd-service-type
  30. (mpd-configuration
  31. (user "root")))))
  32. (define (run-mpd-test)
  33. "Run tests in %mpd-os, which has mpd running."
  34. (define os
  35. (marionette-operating-system
  36. %mpd-os
  37. #:imported-modules '((gnu services herd))))
  38. (define vm
  39. (virtual-machine os))
  40. (define test
  41. (with-imported-modules '((gnu build marionette))
  42. #~(begin
  43. (use-modules (srfi srfi-64)
  44. (gnu build marionette))
  45. (define marionette
  46. (make-marionette (list #$vm)))
  47. (mkdir #$output)
  48. (chdir #$output)
  49. (test-begin "mpd")
  50. (test-assert "service is running"
  51. (marionette-eval
  52. '(begin
  53. (use-modules (gnu services herd))
  54. (start-service 'mpd))
  55. marionette))
  56. (test-assert "mpc connect"
  57. (marionette-eval
  58. '(zero? (system #$(file-append mpd-mpc "/bin/mpc")))
  59. marionette))
  60. (test-end)
  61. (exit (= (test-runner-fail-count (test-runner-current)) 0)))))
  62. (gexp->derivation "mpd-test" test))
  63. (define %test-mpd
  64. (system-test
  65. (name "mpd")
  66. (description "Test that the mpd can run and be connected to.")
  67. (value (run-mpd-test))))