LCOV - code coverage report
Current view: top level - resolve - test-resolve-tables.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 19 19 100.0 %
Date: 2019-08-23 13:36:53 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 40 46 87.0 %

           Branch data     Line data    Source code
       1                 :            : /* SPDX-License-Identifier: LGPL-2.1+ */
       2                 :            : 
       3                 :            : #include "dns-type.h"
       4                 :            : #include "resolved-dns-dnssec.h"
       5                 :            : #include "resolved-dns-packet.h"
       6                 :            : #include "test-tables.h"
       7                 :            : 
       8                 :          4 : int main(int argc, char **argv) {
       9                 :            :         uint16_t i;
      10                 :            : 
      11                 :          4 :         test_table(dns_protocol, DNS_PROTOCOL);
      12                 :          4 :         test_table(dnssec_result, DNSSEC_RESULT);
      13                 :          4 :         test_table(dnssec_verdict, DNSSEC_VERDICT);
      14                 :            : 
      15                 :          4 :         test_table_sparse(dns_rcode, DNS_RCODE);
      16                 :          4 :         test_table_sparse(dns_type, DNS_TYPE);
      17                 :            : 
      18         [ +  - ]:          4 :         log_info("/* DNS_TYPE */");
      19         [ +  + ]:     131084 :         for (i = 0; i < _DNS_TYPE_MAX; i++) {
      20                 :            :                 const char *s;
      21                 :            : 
      22                 :     131080 :                 s = dns_type_to_string(i);
      23   [ +  +  -  + ]:     131080 :                 assert_se(s == NULL || strlen(s) < _DNS_TYPE_STRING_MAX);
      24                 :            : 
      25         [ +  + ]:     131080 :                 if (s)
      26   [ +  -  +  +  :        308 :                         log_info("%-*s %s%s%s%s%s%s%s%s%s",
          +  +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
                      + ]
      27                 :            :                                  (int) _DNS_TYPE_STRING_MAX - 1, s,
      28                 :            :                                  dns_type_is_pseudo(i) ? "pseudo " : "",
      29                 :            :                                  dns_type_is_valid_query(i) ? "valid_query " : "",
      30                 :            :                                  dns_type_is_valid_rr(i) ? "is_valid_rr " : "",
      31                 :            :                                  dns_type_may_redirect(i) ? "may_redirect " : "",
      32                 :            :                                  dns_type_is_dnssec(i) ? "dnssec " : "",
      33                 :            :                                  dns_type_is_obsolete(i) ? "obsolete " : "",
      34                 :            :                                  dns_type_may_wildcard(i) ? "wildcard " : "",
      35                 :            :                                  dns_type_apex_only(i) ? "apex_only " : "",
      36                 :            :                                  dns_type_needs_authentication(i) ? "needs_authentication" : "");
      37                 :            :         }
      38                 :            : 
      39         [ +  - ]:          4 :         log_info("/* DNS_CLASS */");
      40         [ +  + ]:       1028 :         for (i = 0; i < _DNS_CLASS_MAX; i++) {
      41                 :            :                 const char *s;
      42                 :            : 
      43                 :       1024 :                 s = dns_class_to_string(i);
      44   [ +  +  -  + ]:       1024 :                 assert_se(s == NULL || strlen(s) < _DNS_CLASS_STRING_MAX);
      45                 :            : 
      46         [ +  + ]:       1024 :                 if (s)
      47   [ +  -  +  +  :          8 :                         log_info("%-*s %s%s",
                   +  + ]
      48                 :            :                                  (int) _DNS_CLASS_STRING_MAX - 1, s,
      49                 :            :                                  dns_class_is_pseudo(i) ? "is_pseudo " : "",
      50                 :            :                                  dns_class_is_valid_rr(i) ? "is_valid_rr " : "");
      51                 :            :         }
      52                 :            : 
      53                 :          4 :         return EXIT_SUCCESS;
      54                 :            : }

Generated by: LCOV version 1.14