AboutSummaryRefsLogTreeCommitDiffStats
path: root/tests/environment.scm
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2016-05-10 02:22:09 +0200
committerMathieu Lirzin <mthl@gnu.org>2016-12-01 00:15:55 +0100
commite9fde01d27e25847efb5e9bec9f9dfd9fd8478bf (patch)
tree66fa3b40f844bf3c23dc1bbc600029f5074aecad /tests/environment.scm
parent9d173e23bc0bf39c1114f2ac6fc6e5c1e56dd55f (diff)
downloadmcron-e9fde01d27e25847efb5e9bec9f9dfd9fd8478bf.tar.gz
mcron-e9fde01d27e25847efb5e9bec9f9dfd9fd8478bf.tar.bz2
mcron-e9fde01d27e25847efb5e9bec9f9dfd9fd8478bf.zip
environment: modify-environment: Add tests.
* tests/environment.scm: New test. * Makefile.am (TESTS): Add it.
Diffstat (limited to 'tests/environment.scm')
-rw-r--r--tests/environment.scm39
1 files changed, 39 insertions, 0 deletions
diff --git a/tests/environment.scm b/tests/environment.scm
new file mode 100644
index 0000000..1bc34a6
--- /dev/null
+++ b/tests/environment.scm
@@ -0,0 +1,39 @@
+;;;; environment.scm -- tests for (mcron environment) module
+;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
+;;;
+;;; This file is part of GNU Mcron.
+;;;
+;;; GNU Mcron 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 of the License, or
+;;; (at your option) any later version.
+;;;
+;;; GNU Mcron 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 GNU Mcron. If not, see <http://www.gnu.org/licenses/>.
+
+(use-modules (srfi srfi-64)
+ (mcron environment))
+
+(test-begin "environment")
+
+(test-assert "modifiy-environment: basic"
+ (begin
+ (modify-environment '(("FOO" . "bar")) (getpw))
+ (equal? (getenv "FOO") "bar")))
+
+(test-assert "modifiy-environment: user & logname"
+ ;; Check that USER and LOGNAME environment variables can't be changed.
+ (let* ((user-entry (pk (getpw)))
+ (user-name (passwd:name user-entry)))
+ (modify-environment '(("USER" . "alice")) user-entry)
+ (modify-environment '(("LOGNAME" . "bob")) user-entry)
+ (equal? user-name
+ (pk (getenv "USER"))
+ (pk (getenv "LOGNAME")))))
+
+(test-end)