This source file includes following definitions.
- empty_list
 
- non_null_list
 
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 #include <crm_internal.h>
  11 
  12 #include <crm/common/unittest_internal.h>
  13 #include <crm/pengine/internal.h>
  14 
  15 static void
  16 empty_list(void **state) {
     
  17     assert_null(pe_find_node(NULL, NULL));
  18     assert_null(pe_find_node(NULL, "cluster1"));
  19 }
  20 
  21 static void
  22 non_null_list(void **state) {
     
  23     GList *nodes = NULL;
  24 
  25     pcmk_node_t *a = calloc(1, sizeof(pcmk_node_t));
  26     pcmk_node_t *b = calloc(1, sizeof(pcmk_node_t));
  27 
  28     a->details = calloc(1, sizeof(struct pe_node_shared_s));
  29     a->details->uname = "cluster1";
  30     b->details = calloc(1, sizeof(struct pe_node_shared_s));
  31     b->details->uname = "cluster2";
  32 
  33     nodes = g_list_append(nodes, a);
  34     nodes = g_list_append(nodes, b);
  35 
  36     assert_ptr_equal(a, pe_find_node(nodes, "cluster1"));
  37     assert_null(pe_find_node(nodes, "cluster10"));
  38     assert_null(pe_find_node(nodes, "nodecluster1"));
  39     assert_ptr_equal(b, pe_find_node(nodes, "CLUSTER2"));
  40     assert_null(pe_find_node(nodes, "xyz"));
  41 
  42     free(a->details);
  43     free(a);
  44     free(b->details);
  45     free(b);
  46     g_list_free(nodes);
  47 }
  48 
  49 PCMK__UNIT_TEST(NULL, NULL,
  50                 cmocka_unit_test(empty_list),
  51                 cmocka_unit_test(non_null_list))