1/* 2 * Copyright 2011 Tresys Technology, LLC. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions are met: 6 * 7 * 1. Redistributions of source code must retain the above copyright notice, 8 * this list of conditions and the following disclaimer. 9 * 10 * 2. Redistributions in binary form must reproduce the above copyright notice, 11 * this list of conditions and the following disclaimer in the documentation 12 * and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY TRESYS TECHNOLOGY, LLC ``AS IS'' AND ANY EXPRESS 15 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 17 * EVENT SHALL TRESYS TECHNOLOGY, LLC OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 18 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 19 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 21 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 22 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 23 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * 25 * The views and conclusions contained in the software and documentation are those 26 * of the authors and should not be interpreted as representing official policies, 27 * either expressed or implied, of Tresys Technology, LLC. 28 */ 29 30#ifndef TEST_CIL_POLICY_H_ 31#define TEST_CIL_POLICY_H_ 32 33#include "CuTest.h" 34 35void test_cil_post_filecon_compare_meta_a_not_b(CuTest *tc); 36void test_cil_post_filecon_compare_meta_b_not_a(CuTest *tc); 37void test_cil_post_filecon_compare_meta_a_and_b_strlen_a_greater_b(CuTest *tc); 38void test_cil_post_filecon_compare_meta_a_and_b_strlen_b_greater_a(CuTest *tc); 39void test_cil_post_filecon_compare_type_atype_greater_btype(CuTest *tc); 40void test_cil_post_filecon_compare_type_btype_greater_atype(CuTest *tc); 41void test_cil_post_filecon_compare_stemlen_a_greater_b(CuTest *tc); 42void test_cil_post_filecon_compare_stemlen_b_greater_a(CuTest *tc); 43void test_cil_post_filecon_compare_equal(CuTest *tc); 44 45void test_cil_post_portcon_compare_atotal_greater_btotal(CuTest *tc); 46void test_cil_post_portcon_compare_btotal_greater_atotal(CuTest *tc); 47void test_cil_post_portcon_compare_aportlow_greater_bportlow(CuTest *tc); 48void test_cil_post_portcon_compare_bportlow_greater_aportlow(CuTest *tc); 49void test_cil_post_portcon_compare_equal(CuTest *tc); 50 51void test_cil_post_genfscon_compare_atypestr_greater_btypestr(CuTest *tc); 52void test_cil_post_genfscon_compare_btypestr_greater_atypestr(CuTest *tc); 53void test_cil_post_genfscon_compare_apathstr_greater_bpathstr(CuTest *tc); 54void test_cil_post_genfscon_compare_bpathstr_greater_apathstr(CuTest *tc); 55void test_cil_post_genfscon_compare_equal(CuTest *tc); 56 57void test_cil_post_netifcon_compare_a_greater_b(CuTest *tc); 58void test_cil_post_netifcon_compare_b_greater_a(CuTest *tc); 59void test_cil_post_netifcon_compare_equal(CuTest *tc); 60 61void test_cil_post_nodecon_compare_aipv4_bipv6(CuTest *tc); 62void test_cil_post_nodecon_compare_aipv6_bipv4(CuTest *tc); 63void test_cil_post_nodecon_compare_aipv4_greaterthan_bipv4(CuTest *tc); 64void test_cil_post_nodecon_compare_aipv4_lessthan_bipv4(CuTest *tc); 65void test_cil_post_nodecon_compare_amaskipv4_greaterthan_bmaskipv4(CuTest *tc); 66void test_cil_post_nodecon_compare_amaskipv4_lessthan_bmaskipv4(CuTest *tc); 67void test_cil_post_nodecon_compare_aipv6_greaterthan_bipv6(CuTest *tc); 68void test_cil_post_nodecon_compare_aipv6_lessthan_bipv6(CuTest *tc); 69void test_cil_post_nodecon_compare_amaskipv6_greaterthan_bmaskipv6(CuTest *tc); 70void test_cil_post_nodecon_compare_amaskipv6_lessthan_bmaskipv6(CuTest *tc); 71 72void test_cil_post_fsuse_compare_type_a_greater_b(CuTest *tc); 73void test_cil_post_fsuse_compare_type_b_greater_a(CuTest *tc); 74void test_cil_post_fsuse_compare_fsstr_a_greater_b(CuTest *tc); 75void test_cil_post_fsuse_compare_fsstr_b_greater_a(CuTest *tc); 76void test_cil_post_fsuse_compare_equal(CuTest *tc); 77 78#endif 79 80