1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
* Copyright (c) 2002-2013 Balabit
* Copyright (c) 2013 Viktor Juhasz
* Copyright (c) 2013 Viktor Tusa
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include <criterion/criterion.h>
#include "libtest/persist_lib.h"
#include "lib/run-id.h"
#include "lib/apphook.h"
#include <unistd.h>
PersistState *create_persist_state(gchar *persist_file_name);
TestSuite(test_run_id, .init = app_startup, .fini = app_shutdown);
#define RUN_ID_FIRST 1
PersistState *
create_persist_state(gchar *persist_file_name)
{
return clean_and_create_persist_state_for_test(persist_file_name);
};
PersistState *
restart_persist_state_with_cancel(PersistState *state, gchar *persist_file_name)
{
PersistState *new_state;
persist_state_cancel(state);
persist_state_free(state);
new_state = create_persist_state_for_test(persist_file_name);
return new_state;
};
void
destroy_persist_state(PersistState *state)
{
cancel_and_destroy_persist_state(state);
};
Test(test_run_id, first_run__run_id_is_one)
{
PersistState *state;
state = create_persist_state("test_run_id__first_run__run_id_is_one.persist");
run_id_init(state);
cr_assert_eq(run_id_get(), RUN_ID_FIRST, "Newly initialized run id is not the first id!");
destroy_persist_state(state);
};
Test(test_run_id, second_run__run_id_is_two)
{
PersistState *state;
state = create_persist_state("test_run_id__second_run__run_id_is_two");
run_id_init(state);
state = restart_persist_state(state);
run_id_init(state);
cr_assert_eq(run_id_get(), RUN_ID_FIRST + 1, "Running run_id_init twice is not the second id!");
destroy_persist_state(state);
};
Test(test_run_id, second_run_but_with_non_commit__run_id_is_one)
{
PersistState *state;
state = create_persist_state("test_run_id__second_run_but_with_non_commit__run_id_is_one");
run_id_init(state);
state = restart_persist_state_with_cancel(state, "test_run_id__second_run_but_with_non_commit__run_id_is_one");
run_id_init(state);
cr_assert_eq(run_id_get(), RUN_ID_FIRST, "Not committing persist state still increases run_id");
destroy_persist_state(state);
};
Test(test_run_id, is_same_run__differs_when_not_same_run)
{
PersistState *state;
state = create_persist_state("test_run_id__is_same_run__differs_when_not_same_run");
run_id_init(state);
int prev_run_id = run_id_get();
state = restart_persist_state(state);
run_id_init(state);
cr_assert_not(run_id_is_same_run(prev_run_id), "Run_id_is_same_run returned true when the run differs");
destroy_persist_state(state);
};
Test(test_run_id, macro_has_the_same_value_as_run_id)
{
PersistState *state;
GString *res = g_string_sized_new(0);
state = create_persist_state("test_run_id__macro_has_the_same_value_as_run_id");
run_id_init(state);
run_id_append_formatted_id(res);
cr_assert_str_eq(res->str, "1", "Run id is formatted incorrectly: %s", res->str);
destroy_persist_state(state);
g_string_free(res, TRUE);
};
Test(test_run_id, macro_is_empty_if_run_id_is_not_inited)
{
GString *res = g_string_sized_new(0);
run_id_deinit();
run_id_append_formatted_id(res);
cr_assert_str_eq(res->str, "", "Run id is not empty if it is not inited");
g_string_free(res, TRUE);
};
|