diff --git a/tests/sepol_check_context/Makefile b/tests/sepol_check_context/Makefile deleted file mode 100644 index 552a9a1..0000000 --- a/tests/sepol_check_context/Makefile +++ /dev/null @@ -1,63 +0,0 @@ -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# Makefile of /CoreOS/libsepol/Sanity/sepol_check_context -# Description: Does sepol_check_context() work as expected? -# Author: Milos Malik -# -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# Copyright (c) 2017 Red Hat, Inc. -# -# 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/libsepol/Sanity/sepol_check_context -export TESTVERSION=1.0 - -BUILT_FILES= - -FILES=$(METADATA) runtest.sh Makefile PURPOSE example.c testpolicy.te - -.PHONY: all install download clean - -run: $(FILES) build - ./runtest.sh - -build: $(BUILT_FILES) - test -x runtest.sh || chmod a+x runtest.sh - -clean: - rm -f *~ $(BUILT_FILES) - -include /usr/share/rhts/lib/rhts-make.include - -$(METADATA): Makefile - @echo "Owner: Milos Malik " > $(METADATA) - @echo "Name: $(TEST)" >> $(METADATA) - @echo "TestVersion: $(TESTVERSION)" >> $(METADATA) - @echo "Path: $(TEST_DIR)" >> $(METADATA) - @echo "Description: Does sepol_check_context() work as expected?" >> $(METADATA) - @echo "Type: Sanity" >> $(METADATA) - @echo "TestTime: 5m" >> $(METADATA) - @echo "RunFor: libsepol" >> $(METADATA) - @echo "Requires: libsepol libsepol-devel gcc policycoreutils selinux-policy-devel" >> $(METADATA) - @echo "Priority: Normal" >> $(METADATA) - @echo "License: GPLv2" >> $(METADATA) - @echo "Confidential: no" >> $(METADATA) - @echo "Destructive: no" >> $(METADATA) - - rhts-lint $(METADATA) - diff --git a/tests/sepol_check_context/PURPOSE b/tests/sepol_check_context/PURPOSE deleted file mode 100644 index 372cc7d..0000000 --- a/tests/sepol_check_context/PURPOSE +++ /dev/null @@ -1,5 +0,0 @@ -PURPOSE of /CoreOS/libsepol/Sanity/sepol_check_context -Author: Milos Malik - -Does sepol_check_context() work as expected? - diff --git a/tests/sepol_check_context/example.c b/tests/sepol_check_context/example.c deleted file mode 100644 index af04f27..0000000 --- a/tests/sepol_check_context/example.c +++ /dev/null @@ -1,35 +0,0 @@ -#include -#include -#include - -int main (int argc, char *argv[]) { - FILE *policyfile; - - if (argc < 3) { - fprintf(stderr, "%s \n", argv[0]); - return 1; - } - - policyfile = fopen(argv[1], "r"); - if (policyfile == NULL) { - perror("fopen"); - return 1; - } - - if (sepol_set_policydb_from_file(policyfile) < 0) { - perror("sepol_set_policydb_from_file"); - return 1; - } - - if (sepol_check_context(argv[2]) < 0) { - perror("sepol_check_context"); - return 1; - } - - if (fclose(policyfile) != 0) { - perror("fclose"); - } - - return 0; -} - diff --git a/tests/sepol_check_context/runtest.sh b/tests/sepol_check_context/runtest.sh deleted file mode 100644 index 6742dd9..0000000 --- a/tests/sepol_check_context/runtest.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/bash -# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# runtest.sh of /CoreOS/libsepol/Sanity/sepol_check_context -# Description: Does sepol_check_context() work as expected? -# Author: Milos Malik -# -# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -# -# Copyright (c) 2017 Red Hat, Inc. -# -# 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 Beaker environment -. /usr/bin/rhts-environment.sh || exit 1 -. /usr/share/beakerlib/beakerlib.sh || exit 1 - -PACKAGE="libsepol" -POLICY_PATH_PREFIX="/etc/selinux" - -rlJournalStart - rlPhaseStartSetup - rlAssertRpm ${PACKAGE} - rlAssertRpm ${PACKAGE}-devel - rlRun "gcc -o example -lsepol example.c" - rlRun "make -f /usr/share/selinux/devel/Makefile" - rlRun "ls -l testpolicy.pp" - rlPhaseEnd - - rlPhaseStartTest - for POLICY_KIND in minimum mls targeted ; do - if [ -d ${POLICY_PATH_PREFIX}/${POLICY_KIND}/policy ] ; then - POLICY_PATH=`find ${POLICY_PATH_PREFIX}/${POLICY_KIND}/policy/ -type f -name policy.?? | head -n 1` - rlRun "semodule -n -s ${POLICY_KIND} -r testpolicy" 0,1 - rlRun "./example ${POLICY_PATH} system_u:object_r:xyz_file_t:s0" 1 - rlRun "semodule -n -s ${POLICY_KIND} -i testpolicy.pp" - rlRun "./example ${POLICY_PATH} system_u:object_r:xyz_file_t:s0" - rlRun "semodule -n -s ${POLICY_KIND} -r testpolicy" 0,1 - fi - done - rlPhaseEnd - - rlPhaseStartCleanup - rlRun "rm -f ./example ./testpolicy.pp" - rlPhaseEnd -rlJournalPrintText -rlJournalEnd - diff --git a/tests/sepol_check_context/testpolicy.te b/tests/sepol_check_context/testpolicy.te deleted file mode 100644 index 91cdee6..0000000 --- a/tests/sepol_check_context/testpolicy.te +++ /dev/null @@ -1,4 +0,0 @@ -policy_module(testpolicy,1.0) - -type xyz_file_t; -