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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
|
#include "../test.h"
#include "../builders/build.h"
#include "../prng.h"
#include "../../src/alloc.h"
#include "../../src/asfd.h"
#include "../../src/async.h"
#include "../../src/attribs.h"
#include "../../src/base64.h"
#include "../../src/bu.h"
#include "../../src/hexmap.h"
#include "../../src/fsops.h"
#include "../../src/iobuf.h"
#include "../../src/server/backup_phase2.h"
#include "../../src/server/sdirs.h"
#include "../../src/slist.h"
#include "../builders/build_asfd_mock.h"
#include "../builders/build_file.h"
#define BASE "utest_server_backup_phase2"
static struct ioevent_list reads;
static struct ioevent_list writes;
static void do_sdirs_init(struct sdirs *sdirs)
{
fail_unless(!sdirs_init(sdirs,
BASE, // directory
"utestclient", // cname
NULL, // client_lockdir
"a_group", // dedup_group
NULL // manual_delete
));
}
static struct sdirs *setup_sdirs(void)
{
struct sdirs *sdirs;
fail_unless((sdirs=sdirs_alloc())!=NULL);
do_sdirs_init(sdirs);
return sdirs;
}
static struct conf **setup_conf(void)
{
struct conf **confs=NULL;
fail_unless((confs=confs_alloc())!=NULL);
fail_unless(!confs_init(confs));
return confs;
}
static struct async *setup_async(void)
{
struct async *as;
fail_unless((as=async_alloc())!=NULL);
as->init(as, 0 /* estimate */);
return as;
}
static void setup(struct async **as,
struct sdirs **sdirs, struct conf ***confs)
{
if(as) *as=setup_async();
if(sdirs) *sdirs=setup_sdirs();
if(confs) *confs=setup_conf();
fail_unless(!recursive_delete(BASE));
}
static void tear_down(struct async **as,
struct sdirs **sdirs, struct conf ***confs)
{
async_free(as);
sdirs_free(sdirs);
confs_free(confs);
fail_unless(!recursive_delete(BASE));
//printf("%d %d\n", alloc_count, free_count);
alloc_check();
}
START_TEST(test_phase2_unset_as_sdirs_confs)
{
setup(NULL, NULL, NULL);
fail_unless(backup_phase2_server_all(
NULL, // as
NULL, // sdirs
NULL, // incexc
0, // resume
NULL // confs
)==-1);
tear_down(NULL, NULL, NULL);
}
END_TEST
START_TEST(test_phase2_unset_sdirs_confs)
{
struct async *as;
setup(&as, NULL, NULL);
fail_unless(backup_phase2_server_all(
as,
NULL, // sdirs
NULL, // incexc
0, // resume
NULL // confs
)==-1);
tear_down(&as, NULL, NULL);
}
END_TEST
START_TEST(test_phase2_unset_confs)
{
struct async *as;
struct sdirs *sdirs;
setup(&as, &sdirs, NULL);
fail_unless(backup_phase2_server_all(
as,
sdirs,
NULL, // incexc
0, // resume
NULL // confs
)==-1);
tear_down(&as, &sdirs, NULL);
}
END_TEST
START_TEST(test_phase2_unset_sdirs)
{
struct async *as;
struct conf **confs;
setup(&as, NULL, &confs);
fail_unless(backup_phase2_server_all(
as,
NULL, // sdirs
NULL, // incexc
0, // resume
confs
)==-1);
tear_down(&as, NULL, &confs);
}
END_TEST
START_TEST(test_phase2_unset_asfd)
{
struct async *as;
struct sdirs *sdirs;
struct conf **confs;
setup(&as, &sdirs, &confs);
fail_unless(backup_phase2_server_all(
as,
sdirs,
NULL, // incexc
0, // resume
confs
)==-1);
tear_down(&as, &sdirs, &confs);
}
END_TEST
static int async_rw_simple(struct async *as)
{
return as->asfd->read(as->asfd);
}
static struct sd sd1[] = {
{ "0000001 1970-01-01 00:00:00", 1, 1, BU_WORKING },
};
static void setup_writes_from_slist(struct asfd *asfd,
int *w, struct slist *slist, int changed)
{
struct sbuf *s;
if(!slist) return;
for(s=slist->head; s; s=s->next)
{
if(!sbuf_is_filedata(s))
continue;
if(changed && !sbuf_is_encrypted(s))
asfd_assert_write_iobuf(asfd, w, 0, &s->datapth);
asfd_assert_write_iobuf(asfd, w, 0, &s->attr);
asfd_assert_write_iobuf(asfd, w, 0, &s->path);
if(changed && !sbuf_is_encrypted(s))
{
struct iobuf wbuf;
char empty_sig[12]={'r', 's', 0x01, '6',
0, 0x02, 0, 0, 0, 0, 0, 0x10};
iobuf_set(&wbuf, CMD_APPEND,
empty_sig, sizeof(empty_sig));
asfd_assert_write_iobuf(asfd, w, 0, &wbuf);
asfd_assert_write(asfd, w, 0, CMD_END_FILE, "endfile");
}
}
}
static void setup_asfds_happy_path_nothing_from_client(struct asfd *asfd,
struct slist *slist)
{
int r=0, w=0;
setup_writes_from_slist(asfd, &w, slist, 0 /* not changed */);
asfd_assert_write(asfd, &w, 0, CMD_GEN, "backupphase2end");
asfd_mock_read_no_op(asfd, &r, 20);
asfd_mock_read(asfd, &r, 0, CMD_GEN, "okbackupphase2end");
}
static void setup_asfds_happy_path_interrupts_from_client(struct asfd *asfd,
struct slist *slist)
{
int r=0, w=0;
struct sbuf *s;
setup_writes_from_slist(asfd, &w, slist, 0 /* not changed */);
asfd_assert_write(asfd, &w, 0, CMD_GEN, "backupphase2end");
asfd_mock_read_no_op(asfd, &r, 200);
for(s=slist->head; s; s=s->next)
{
if(!sbuf_is_filedata(s))
continue;
asfd_mock_read(asfd, &r, 0, CMD_INTERRUPT, s->path.buf);
}
asfd_mock_read(asfd, &r, 0, CMD_GEN, "okbackupphase2end");
}
static void setup_asfds_happy_path_new_files(struct asfd *asfd,
struct slist *slist)
{
int r=0, w=0;
struct sbuf *s;
setup_writes_from_slist(asfd, &w, slist, 0 /* not changed */);
asfd_assert_write(asfd, &w, 0, CMD_GEN, "backupphase2end");
asfd_mock_read_no_op(asfd, &r, 200);
for(s=slist->head; s; s=s->next)
{
if(!sbuf_is_filedata(s))
continue;
asfd_mock_read_iobuf(asfd, &r, 0, &s->attr);
asfd_mock_read_iobuf(asfd, &r, 0, &s->path);
asfd_mock_read(asfd, &r, 0, CMD_APPEND, "some data");
asfd_mock_read(asfd, &r, 0, CMD_END_FILE,
"0:d41d8cd98f00b204e9800998ecf8427e");
}
asfd_mock_read(asfd, &r, 0, CMD_GEN, "okbackupphase2end");
}
static void run_test(int expected_ret,
int manio_entries,
void setup_asfds_callback(struct asfd *asfd, struct slist *slist))
{
struct asfd *asfd;
struct async *as;
struct sdirs *sdirs;
struct conf **confs;
struct slist *slist=NULL;
prng_init(0);
base64_init();
setup(&as, &sdirs, &confs);
asfd=asfd_mock_setup(&reads, &writes);
as->asfd_add(as, asfd);
as->read_write=async_rw_simple;
asfd->as=as;
build_storage_dirs(sdirs, sd1, ARR_LEN(sd1));
fail_unless(!sdirs_get_real_working_from_symlink(sdirs));
if(manio_entries)
{
slist=build_manifest(sdirs->phase1data,
manio_entries, 1 /*phase*/);
}
setup_asfds_callback(asfd, slist);
fail_unless(backup_phase2_server_all(
as,
sdirs,
NULL, // incexc
0, // resume
confs
)==expected_ret);
if(!expected_ret)
{
// FIX THIS: Should check for the presence and correctness of
// changed and unchanged manios.
}
asfd_free(&asfd);
asfd_mock_teardown(&reads, &writes);
slist_free(&slist);
tear_down(&as, &sdirs, &confs);
}
START_TEST(test_phase2_happy_path_nothing_from_client)
{
run_test(0, 10, setup_asfds_happy_path_nothing_from_client);
}
END_TEST
START_TEST(test_phase2_happy_path_interrupts_from_client)
{
run_test(0, 100, setup_asfds_happy_path_interrupts_from_client);
}
END_TEST
START_TEST(test_phase2_happy_path_new_files)
{
run_test(0, 10, setup_asfds_happy_path_new_files);
}
END_TEST
static struct sd sd2[] = {
{ "0000001 1970-01-01 00:00:00", 1, 1, BU_CURRENT },
{ "0000002 1970-01-01 00:00:00", 2, 2, BU_WORKING },
};
static void setup_asfds_happy_path_changed_files(struct asfd *asfd,
struct slist *slist)
{
int r=0, w=0;
struct sbuf *s;
char empty_delta[4]={'r', 's', 0x02, '6'};
setup_writes_from_slist(asfd, &w, slist, 1 /* changed */);
asfd_assert_write(asfd, &w, 0, CMD_GEN, "backupphase2end");
asfd_mock_read_no_op(asfd, &r, 200);
if(slist) for(s=slist->head; s; s=s->next)
{
struct iobuf rbuf;
if(!sbuf_is_filedata(s))
continue;
asfd_mock_read_iobuf(asfd, &r, 0, &s->datapth);
asfd_mock_read_iobuf(asfd, &r, 0, &s->attr);
asfd_mock_read_iobuf(asfd, &r, 0, &s->path);
if(sbuf_is_encrypted(s))
{
asfd_mock_read(asfd, &r, 0, CMD_APPEND, "some data");
}
else
{
iobuf_set(&rbuf, CMD_APPEND,
empty_delta, sizeof(empty_delta));
asfd_mock_read_iobuf(asfd, &r, 0, &rbuf);
}
asfd_mock_read_iobuf(asfd, &r, 0, &s->endfile);
}
asfd_mock_read(asfd, &r, 0, CMD_GEN, "okbackupphase2end");
}
static void run_test_changed(int expected_ret,
int manio_entries,
void setup_asfds_callback(struct asfd *asfd, struct slist *slist))
{
struct asfd *asfd;
struct async *as;
struct sdirs *sdirs;
struct conf **confs;
struct slist *slist=NULL;
prng_init(0);
base64_init();
setup(&as, &sdirs, &confs);
asfd=asfd_mock_setup(&reads, &writes);
as->asfd_add(as, asfd);
as->read_write=async_rw_simple;
asfd->as=as;
build_storage_dirs(sdirs, sd2, ARR_LEN(sd2));
fail_unless(!sdirs_get_real_working_from_symlink(sdirs));
if(manio_entries)
{
struct sbuf *s;
slist=build_manifest(sdirs->cmanifest,
manio_entries, 0 /*phase*/);
for(s=slist->head; s; s=s->next)
{
char path[256];
if(!sbuf_is_filedata(s))
continue;
snprintf(path, sizeof(path), "%s/%s%s",
sdirs->currentdata, TREE_DIR, s->path.buf);
build_file(path, "");
// Adjust mtimes so that differences are detected.
fail_unless(!lstat(path, &s->statp));
s->winattr=0;
s->compression=0;
attribs_encode(s);
}
build_manifest_phase1_from_slist(sdirs->phase1data, slist);
build_file(sdirs->cincexc, NULL);
}
setup_asfds_callback(asfd, slist);
fail_unless(backup_phase2_server_all(
as,
sdirs,
NULL, // incexc
0, // resume
confs
)==expected_ret);
if(!expected_ret)
{
// FIX THIS: Should check for the presence and correctness of
// changed and unchanged manios.
}
asfd_free(&asfd);
asfd_mock_teardown(&reads, &writes);
slist_free(&slist);
tear_down(&as, &sdirs, &confs);
}
START_TEST(test_phase2_happy_path_no_files)
{
run_test_changed(0, 0, setup_asfds_happy_path_changed_files);
}
END_TEST
START_TEST(test_phase2_happy_path_changed_files)
{
run_test_changed(0, 10, setup_asfds_happy_path_changed_files);
}
END_TEST
Suite *suite_server_backup_phase2(void)
{
Suite *s;
TCase *tc_core;
s=suite_create("server_backup_phase2");
tc_core=tcase_create("Core");
tcase_set_timeout(tc_core, 60);
tcase_add_test(tc_core, test_phase2_unset_as_sdirs_confs);
tcase_add_test(tc_core, test_phase2_unset_sdirs_confs);
tcase_add_test(tc_core, test_phase2_unset_confs);
tcase_add_test(tc_core, test_phase2_unset_sdirs);
tcase_add_test(tc_core, test_phase2_unset_asfd);
tcase_add_test(tc_core, test_phase2_happy_path_nothing_from_client);
tcase_add_test(tc_core, test_phase2_happy_path_interrupts_from_client);
tcase_add_test(tc_core, test_phase2_happy_path_new_files);
tcase_add_test(tc_core, test_phase2_happy_path_no_files);
tcase_add_test(tc_core, test_phase2_happy_path_changed_files);
suite_add_tcase(s, tc_core);
return s;
}
|