source: MondoRescue/branches/2.2.9/mondo/test/test-mountlist.c@ 2235

Last change on this file since 2235 was 2235, checked in by Bruno Cornec, 15 years ago

r3132@localhost: bruno | 2009-06-19 16:10:49 +0200
Ads a test infrastruture for mountlist nd truncname

  • Property svn:eol-style set to native
File size: 2.4 KB
Line 
1/*
2 * $Id$
3 *
4 * Test program for mountlist management at restore time
5 * Cn be used on host system with valgrind easier than with mondorestore
6 */
7#include <stdio.h>
8#include "my-stuff.h"
9#include "mr_mem.h"
10#include "../common/mondostructures.h"
11#include "../common/libmondo.h"
12#include "../mondorestore/mondorestore.h"
13#include "../mondorestore/mr-externs.h"
14
15extern void twenty_seconds_til_yikes(void);
16
17/* Reference to global bkpinfo */
18struct s_bkpinfo *bkpinfo;
19
20extern bool g_text_mode;
21extern FILE *g_fprep;
22extern double g_kernel_version;
23extern int g_partition_table_locked_up;
24extern int g_noof_rows;
25
26bool g_ISO_restore_mode = FALSE; /* are we in Iso Mode? */
27bool g_I_have_just_nuked = FALSE;
28char *g_isodir_device;
29char *g_isodir_format;
30char *g_biggielist_txt;
31char *g_filelist_full;
32char *g_filelist_imagedevs;
33char *g_imagedevs_restthese;
34
35char *g_mondo_cfg_file;
36
37char *g_mountlist_fname;
38char *g_mondo_home;
39
40char *g_getfacl;
41char *g_getfattr;
42
43extern char *MONDO_LOGFILE;
44extern int copy_from_src_to_dest(FILE * f_orig, FILE * f_archived, char direction);
45/* We don't have a cleanup function yet */
46void (*mr_cleanup)(void) = NULL;
47
48void main() {
49
50struct mountlist_itself *mountlist = NULL;
51struct raidlist_itself *raidlist;
52char *tmpA = NULL;
53char *tmpB = NULL;
54char *tmpC = NULL;
55bool ret = FALSE;
56
57mr_asprintf(&MONDO_LOGFILE,"/tmp/mrtest-mountlist.log");
58
59/* Globals */
60g_loglevel = 99;
61g_text_mode = FALSE;
62g_main_pid = getpid();
63
64if (!(mountlist = malloc(sizeof(struct mountlist_itself)))) {
65 fatal_error("Cannot malloc mountlist");
66}
67if (!(raidlist = malloc(sizeof(struct raidlist_itself)))) {
68 fatal_error("Cannot malloc raidlist");
69}
70malloc_libmondo_global_strings();
71
72setup_newt_stuff();
73mr_asprintf(&g_mountlist_fname, "/tmp/mountlist.txt");
74log_it("before mountlist");
75load_mountlist(mountlist, g_mountlist_fname);
76log_it("after mountlist");
77resize_mountlist_proportionately_to_suit_new_drives(mountlist);
78log_it("after resize_mountlist_proportionately_to_suit_new_drives");
79load_raidtab_into_raidlist(raidlist, RAIDTAB_FNAME);
80log_it("after load_raidtab_into_raidlist");
81edit_mountlist(g_mountlist_fname, mountlist, raidlist);
82log_it("after edit_mountlist");
83
84mr_asprintf(&tmpA, "%s", " ");
85mr_asprintf(&tmpB, "%s", " ");
86mr_asprintf(&tmpC, "%s", " ");
87ret = evaluate_mountlist(mountlist, tmpA, tmpB, tmpC);
88log_it("after evaluate_mountlist");
89
90mr_free(MONDO_LOGFILE);
91exit(0);
92}
Note: See TracBrowser for help on using the repository browser.