00001 #include "config.h"
00002
00003 #include <iostream>
00004 #include <string>
00005 #include <cassert>
00006
00007 #ifdef HAVE_UNISTD_H
00008 #include <unistd.h>
00009 #endif
00010
00011 #include <errno.h>
00012
00013 #include "asserts.h"
00014 #include "types.h"
00015 #include "error.h"
00016 #include "estring.h"
00017 #include "fs.h"
00018 #include "tstamp.h"
00019 #include "rconfig.h"
00020 #include "test-rconfig-setup.h"
00021
00022 #define ERR_OUT(e) std::cerr << e;
00023
00024
00025 void test(void)
00026 {
00027 char const * argv[256] = { 0 };
00028 int argc = 0;
00029 bool thrown = false;
00030
00031 argv[argc++] = "<program>";
00032 argv[argc++] = "--archive";
00033
00034 config.default_file("./test-rconfig.dir/job.dir/file-14.conf");
00035 config.default_logdir("./test-rconfig.dir/log.dir");
00036 try {
00037 config.init(argc, argv);
00038 }
00039 catch(error e) {
00040 ERR_OUT(e);
00041 thrown = true;
00042 }
00043 catch(...) {
00044 assert(0);
00045 }
00046 assert(!thrown);
00047 assert(config.jobs().size() == 6);
00048 assert(config.jobs()[0].generate_source_path("/var/spool/") == "/var/spool/");
00049 assert(config.jobs()[1].generate_source_path("/var/spool/") == "/var/spool/");
00050 assert(config.jobs()[2].generate_source_path("/var/spool/") == "remote-default:/var/spool/");
00051 assert(config.jobs()[3].generate_source_path("/var/spool/") == "remote-port:/var/spool/");
00052 assert(config.jobs()[4].generate_source_path("/var/spool/") == "rsync://server-default/var/spool/");
00053 assert(config.jobs()[5].generate_source_path("/var/spool/") == "rsync://server-port:1234/var/spool/");
00054 }
00055
00056 int main(int argc, char const * argv[])
00057 {
00058 cleanup();
00059 setup();
00060 try {
00061 test();
00062 }
00063 catch(error e) {
00064 std::cerr << e;
00065 assert(0);
00066 }
00067 catch(...) {
00068 std::cerr << err_unknown;
00069 assert(0);
00070 }
00071 cleanup();
00072 return(0);
00073 }
00074