Skip to content

Commit

Permalink
tests: add some basic unlabeled protocol tests
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Moore <pmoore@redhat.com>
  • Loading branch information
pcmoore committed Jul 10, 2015
1 parent d9b688f commit cadca8a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions tests/08-unlbl_default.tests
@@ -0,0 +1,40 @@
#!/bin/bash

#
# NetLabel Tools test script
#

#
# This program is free software: you can redistribute it and/or modify
# it under the terms of version 2 of the GNU General Public License as
# published by the Free Software Foundation.
#
# 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, see <http://www.gnu.org/licenses/>.
#

# add the fallback definition
$GLBL_NETLABELCTL unlbl add default address:1.2.3.4 \
label:system_u:object_r:unlabeled_t:s0
[[ $? -ne 0 ]] && exit 1

# verify the fallback definition
found=0
for i in $($GLBL_NETLABELCTL unlbl list); do
if [[ $i =~ ^interface:DEFAULT ]]; then
[[ $i =~ address:1.2.3.4/32,label:\"system_u:object_r:unlabeled_t:s0\" ]] && \
found=1
fi
done
[[ $found -ne 1 ]] && exit 1

# remove the fallback definition
$GLBL_NETLABELCTL unlbl del default address:1.2.3.4
[[ $? -ne 0 ]] && exit 1

exit 0

0 comments on commit cadca8a

Please sign in to comment.