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
|
/*
* Copyright (C) 2017 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "test-utils.h"
#include <fcntl.h>
#include <unistd.h>
#include <glib.h>
// Check that rm_rf_tmp doesn't remove things outside of /tmp
static void test_rm_rf_tmp(void) {
if (access("/nonexistent", F_OK) == 0) {
g_test_message("/nonexistent exists but this test doesn't want it to");
g_test_fail();
return;
}
if (g_test_subprocess()) {
rm_rf_tmp("/nonexistent");
return;
}
g_test_trap_subprocess(NULL, 0, 0);
g_test_trap_assert_failed();
}
static void test_test_argc_argv(void) {
// Check that test_argc_argv() correctly stores data
int argc = 0;
char **argv = NULL;
test_argc_argv(&argc, &argv, NULL);
g_assert_cmpint(argc, ==, 0);
g_assert_nonnull(argv);
g_assert_null(argv[0]);
argc = 0;
argv = NULL;
test_argc_argv(&argc, &argv, "zero", "one", "two", NULL);
g_assert_cmpint(argc, ==, 3);
g_assert_nonnull(argv);
g_assert_cmpstr(argv[0], ==, "zero");
g_assert_cmpstr(argv[1], ==, "one");
g_assert_cmpstr(argv[2], ==, "two");
g_assert_null(argv[3]);
}
static void __attribute__((constructor)) init(void) {
g_test_add_func("/test-utils/rm_rf_tmp", test_rm_rf_tmp);
g_test_add_func("/test-utils/test_argc_argv", test_test_argc_argv);
}
|