diff --git a/tests/test-of-functionality-of-crontabs/Makefile b/tests/test-of-functionality-of-crontabs/Makefile new file mode 100644 index 0000000..2d71943 --- /dev/null +++ b/tests/test-of-functionality-of-crontabs/Makefile @@ -0,0 +1,63 @@ +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Makefile of /CoreOS/crontabs/Sanity/test-of-functionality-of-crontabs +# Description: test of functionality of crontabs +# Author: Petr Sklenar +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Copyright (c) 2011 Red Hat, Inc. All rights reserved. +# +# This copyrighted material is made available to anyone wishing +# to use, modify, copy, or redistribute it subject to the terms +# and conditions of the GNU General Public License version 2. +# +# This program 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 this program; if not, write to the Free +# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +# Boston, MA 02110-1301, USA. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +export TEST=/CoreOS/crontabs/Sanity/test-of-functionality-of-crontabs +export TESTVERSION=1.0 + +BUILT_FILES= + +FILES=$(METADATA) runtest.sh Makefile PURPOSE + +.PHONY: all install download clean + +run: $(FILES) build + ./runtest.sh + +build: $(BUILT_FILES) + chmod a+x runtest.sh + +clean: + rm -f *~ $(BUILT_FILES) + + +include /usr/share/rhts/lib/rhts-make.include + +$(METADATA): Makefile + @echo "Owner: Petr Sklenar " > $(METADATA) + @echo "Name: $(TEST)" >> $(METADATA) + @echo "TestVersion: $(TESTVERSION)" >> $(METADATA) + @echo "Path: $(TEST_DIR)" >> $(METADATA) + @echo "Description: test of functionality of crontabs" >> $(METADATA) + @echo "Type: Sanity" >> $(METADATA) + @echo "TestTime: 30m" >> $(METADATA) + @echo "RunFor: crontabs" >> $(METADATA) + @echo "Requires: crontabs" >> $(METADATA) + @echo "Priority: Normal" >> $(METADATA) + @echo "License: GPLv2" >> $(METADATA) + @echo "Confidential: no" >> $(METADATA) + @echo "Destructive: no" >> $(METADATA) + + rhts-lint $(METADATA) diff --git a/tests/test-of-functionality-of-crontabs/PURPOSE b/tests/test-of-functionality-of-crontabs/PURPOSE new file mode 100644 index 0000000..7e082f0 --- /dev/null +++ b/tests/test-of-functionality-of-crontabs/PURPOSE @@ -0,0 +1,3 @@ +PURPOSE of /CoreOS/crontabs/Sanity/test-of-functionality-of-crontabs +Description: test of functionality of crontabs +Author: Petr Sklenar diff --git a/tests/test-of-functionality-of-crontabs/runtest.sh b/tests/test-of-functionality-of-crontabs/runtest.sh new file mode 100644 index 0000000..98548b2 --- /dev/null +++ b/tests/test-of-functionality-of-crontabs/runtest.sh @@ -0,0 +1,83 @@ +#!/bin/bash +# vim: dict=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# runtest.sh of /CoreOS/crontabs/Sanity/test-of-functionality-of-crontabs +# Description: test of functionality of crontabs +# Author: Petr Sklenar +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +# +# Copyright (c) 2011 Red Hat, Inc. All rights reserved. +# +# This copyrighted material is made available to anyone wishing +# to use, modify, copy, or redistribute it subject to the terms +# and conditions of the GNU General Public License version 2. +# +# This program 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 this program; if not, write to the Free +# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +# Boston, MA 02110-1301, USA. +# +# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +# Include rhts environment +. /usr/bin/rhts-environment.sh +. /usr/lib/beakerlib/beakerlib.sh + +PACKAGE="crontabs" +#how long should we wait: +COUNT=5 +rlJournalStart + rlPhaseStartSetup + rlAssertRpm $PACKAGE + user="petr$RANDOM" + rlRun "rm -rf /tmp/test.createdbypetr /tmp/test.createdbyroot" 0 "Removing tmp directory" + rlRun "useradd $user" + rlFileBackup /etc/crontab + rlPhaseEnd + + rlPhaseStartTest + echo "* * * * * root echo root >> /tmp/test.createdbyroot" >> /etc/crontab + rlAssert0 "added first entry into crontab" $? + echo "* * * * * $user echo petr >> /tmp/test.createdbypetr" >> /etc/crontab + rlAssert0 "added second entry into crontab" $? + #sleep a while + rlRun "sleep ${COUNT}m" 0 "sleeping for 5m to wait for cron to create files" + rlPhaseEnd + + rlPhaseStartTest "check content" + byroot=`grep root /tmp/test.createdbyroot | wc -l` + bypetr=`grep petr /tmp/test.createdbypetr | wc -l` + if [ "$byroot" -ge "${COUNT}" ];then + rlPass "there is $byroot line" + else + rlFail "there is $byroot line" + fi + + if [ "$bypetr" -ge "${COUNT}" ];then + rlPass "there is $bypetr line" + else + rlFail "there is $bypetr line" + fi + rlPhaseEnd + + rlPhaseStartTest "check permissions of created files" + /bin/ls -la /tmp/test.createdbyroot | grep "root root" + rlAssert0 "permissions are root root" $? + /bin/ls -la /tmp/test.createdbypetr | grep "$user $user" + rlAssert0 "permissions are $user $user" $? + rlPhaseEnd + + rlPhaseStartCleanup + rlRun "rm -rf /tmp/test.createdbypetr /tmp/test.createdbyroot" 0 "Removing tmp directory" + rlRun "userdel -r $user" + rlFileRestore + rlPhaseEnd +rlJournalPrintText +rlJournalEnd diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..22f9d4d --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,12 @@ +--- +# This first play always runs on the local staging system +- hosts: localhost + roles: + - role: standard-test-beakerlib + tags: + - classic + tests: + - test-of-functionality-of-crontabs + required_packages: + - crontabs # test-of-functionality-of-crontabs needs crontabs + - findutils # beakerlib needs find command