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 35 void test_cil_post_filecon_compare_meta_a_not_b(CuTest *tc); 36 void test_cil_post_filecon_compare_meta_b_not_a(CuTest *tc); 37 void test_cil_post_filecon_compare_meta_a_and_b_strlen_a_greater_b(CuTest *tc); 38 void test_cil_post_filecon_compare_meta_a_and_b_strlen_b_greater_a(CuTest *tc); 39 void test_cil_post_filecon_compare_type_atype_greater_btype(CuTest *tc); 40 void test_cil_post_filecon_compare_type_btype_greater_atype(CuTest *tc); 41 void test_cil_post_filecon_compare_stemlen_a_greater_b(CuTest *tc); 42 void test_cil_post_filecon_compare_stemlen_b_greater_a(CuTest *tc); 43 void test_cil_post_filecon_compare_equal(CuTest *tc); 44 45 void test_cil_post_portcon_compare_atotal_greater_btotal(CuTest *tc); 46 void test_cil_post_portcon_compare_btotal_greater_atotal(CuTest *tc); 47 void test_cil_post_portcon_compare_aportlow_greater_bportlow(CuTest *tc); 48 void test_cil_post_portcon_compare_bportlow_greater_aportlow(CuTest *tc); 49 void test_cil_post_portcon_compare_equal(CuTest *tc); 50 51 void test_cil_post_genfscon_compare_atypestr_greater_btypestr(CuTest *tc); 52 void test_cil_post_genfscon_compare_btypestr_greater_atypestr(CuTest *tc); 53 void test_cil_post_genfscon_compare_apathstr_greater_bpathstr(CuTest *tc); 54 void test_cil_post_genfscon_compare_bpathstr_greater_apathstr(CuTest *tc); 55 void test_cil_post_genfscon_compare_equal(CuTest *tc); 56 57 void test_cil_post_netifcon_compare_a_greater_b(CuTest *tc); 58 void test_cil_post_netifcon_compare_b_greater_a(CuTest *tc); 59 void test_cil_post_netifcon_compare_equal(CuTest *tc); 60 61 void test_cil_post_nodecon_compare_aipv4_bipv6(CuTest *tc); 62 void test_cil_post_nodecon_compare_aipv6_bipv4(CuTest *tc); 63 void test_cil_post_nodecon_compare_aipv4_greaterthan_bipv4(CuTest *tc); 64 void test_cil_post_nodecon_compare_aipv4_lessthan_bipv4(CuTest *tc); 65 void test_cil_post_nodecon_compare_amaskipv4_greaterthan_bmaskipv4(CuTest *tc); 66 void test_cil_post_nodecon_compare_amaskipv4_lessthan_bmaskipv4(CuTest *tc); 67 void test_cil_post_nodecon_compare_aipv6_greaterthan_bipv6(CuTest *tc); 68 void test_cil_post_nodecon_compare_aipv6_lessthan_bipv6(CuTest *tc); 69 void test_cil_post_nodecon_compare_amaskipv6_greaterthan_bmaskipv6(CuTest *tc); 70 void test_cil_post_nodecon_compare_amaskipv6_lessthan_bmaskipv6(CuTest *tc); 71 72 void test_cil_post_fsuse_compare_type_a_greater_b(CuTest *tc); 73 void test_cil_post_fsuse_compare_type_b_greater_a(CuTest *tc); 74 void test_cil_post_fsuse_compare_fsstr_a_greater_b(CuTest *tc); 75 void test_cil_post_fsuse_compare_fsstr_b_greater_a(CuTest *tc); 76 void test_cil_post_fsuse_compare_equal(CuTest *tc); 77 78 #endif 79 80