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 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
|
// Copyright (C) 2005 Nathaniel Smith <njs@pobox.com>
//
// This program is made available under the GNU GPL version 2.0 or
// greater. See the accompanying file COPYING for details.
//
// This program is distributed WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE.
#include <map>
#include <set>
#include <string>
#include "basic_io.hh"
#include "cset.hh"
#include "sanity.hh"
#include "safe_map.hh"
using std::set;
using std::map;
using std::pair;
using std::string;
using std::make_pair;
static void
check_normalized(cset const & cs)
{
MM(cs);
// normalize:
//
// add_file foo@id1 + apply_delta id1->id2
// clear_attr foo:bar + set_attr foo:bar=baz
//
// possibly more?
// no file appears in both the "added" list and the "patched" list
{
map<split_path, file_id>::const_iterator a = cs.files_added.begin();
map<split_path, pair<file_id, file_id> >::const_iterator
d = cs.deltas_applied.begin();
while (a != cs.files_added.end() && d != cs.deltas_applied.end())
{
// SPEEDUP?: should this use lower_bound instead of ++? it should
// make this loop iterate about as many times as the shorter list,
// rather the sum of the two lists...
if (a->first < d->first)
++a;
else if (d->first < a->first)
++d;
else
I(false);
}
}
// no file+attr pair appears in both the "set" list and the "cleared" list
{
set<pair<split_path, attr_key> >::const_iterator c = cs.attrs_cleared.begin();
map<pair<split_path, attr_key>, attr_value>::const_iterator
s = cs.attrs_set.begin();
while (c != cs.attrs_cleared.end() && s != cs.attrs_set.end())
{
if (*c < s->first)
++c;
else if (s->first < *c)
++s;
else
I(false);
}
}
}
bool
cset::empty() const
{
return
nodes_deleted.empty()
&& dirs_added.empty()
&& files_added.empty()
&& nodes_renamed.empty()
&& deltas_applied.empty()
&& attrs_cleared.empty()
&& attrs_set.empty();
}
void
cset::clear()
{
nodes_deleted.clear();
dirs_added.clear();
files_added.clear();
nodes_renamed.clear();
deltas_applied.clear();
attrs_cleared.clear();
attrs_set.clear();
}
struct
detach
{
detach(split_path const & src)
: src_path(src),
reattach(false)
{}
detach(split_path const & src,
split_path const & dst)
: src_path(src),
reattach(true),
dst_path(dst)
{}
split_path src_path;
bool reattach;
split_path dst_path;
bool operator<(struct detach const & other) const
{
// We sort detach operations bottom-up by src path
// SPEEDUP?: simply sort by path.size() rather than full lexicographical
// comparison?
return src_path > other.src_path;
}
};
struct
attach
{
attach(node_id n,
split_path const & p)
: node(n), path(p)
{}
node_id node;
split_path path;
bool operator<(struct attach const & other) const
{
// We sort attach operations top-down by path
// SPEEDUP?: simply sort by path.size() rather than full lexicographical
// comparison?
return path < other.path;
}
};
void
cset::apply_to(editable_tree & t) const
{
// SPEEDUP?: use vectors and sort them once, instead of maintaining sorted
// sets?
set<detach> detaches;
set<attach> attaches;
set<node_id> drops;
MM(*this);
check_normalized(*this);
// Decompose all additions into a set of pending attachments to be
// executed top-down. We might as well do this first, to be sure we
// can form the new nodes -- such as in a filesystem -- before we do
// anything else potentially destructive. This should all be
// happening in a temp directory anyways.
// NB: it's very important we do safe_insert's here, because our comparison
// operator for attach and detach does not distinguish all nodes! the nodes
// that it does not distinguish are ones where we're attaching or detaching
// repeatedly from the same place, so they're impossible anyway, but we need
// to error out if someone tries to add them.
for (path_set::const_iterator i = dirs_added.begin();
i != dirs_added.end(); ++i)
safe_insert(attaches, attach(t.create_dir_node(), *i));
for (map<split_path, file_id>::const_iterator i = files_added.begin();
i != files_added.end(); ++i)
safe_insert(attaches, attach(t.create_file_node(i->second), i->first));
// Decompose all path deletion and the first-half of renamings on
// existing paths into the set of pending detaches, to be executed
// bottom-up.
for (path_set::const_iterator i = nodes_deleted.begin();
i != nodes_deleted.end(); ++i)
safe_insert(detaches, detach(*i));
for (map<split_path, split_path>::const_iterator i = nodes_renamed.begin();
i != nodes_renamed.end(); ++i)
safe_insert(detaches, detach(i->first, i->second));
// Execute all the detaches, rescheduling the results of each detach
// for either attaching or dropping.
for (set<detach>::const_iterator i = detaches.begin();
i != detaches.end(); ++i)
{
node_id n = t.detach_node(i->src_path);
if (i->reattach)
safe_insert(attaches, attach(n, i->dst_path));
else
safe_insert(drops, n);
}
// Execute all the attaches.
for (set<attach>::const_iterator i = attaches.begin(); i != attaches.end(); ++i)
t.attach_node(i->node, i->path);
// Execute all the drops.
for (set<node_id>::const_iterator i = drops.begin(); i != drops.end(); ++i)
t.drop_detached_node (*i);
// Execute all the in-place edits
for (map<split_path, pair<file_id, file_id> >::const_iterator i = deltas_applied.begin();
i != deltas_applied.end(); ++i)
t.apply_delta(i->first, i->second.first, i->second.second);
for (set<pair<split_path, attr_key> >::const_iterator i = attrs_cleared.begin();
i != attrs_cleared.end(); ++i)
t.clear_attr(i->first, i->second);
for (map<pair<split_path, attr_key>, attr_value>::const_iterator i = attrs_set.begin();
i != attrs_set.end(); ++i)
t.set_attr(i->first.first, i->first.second, i->second);
t.commit();
}
////////////////////////////////////////////////////////////////////
// I/O routines
////////////////////////////////////////////////////////////////////
namespace
{
namespace syms
{
// cset symbols
symbol const delete_node("delete");
symbol const rename_node("rename");
symbol const content("content");
symbol const add_file("add_file");
symbol const add_dir("add_dir");
symbol const patch("patch");
symbol const from("from");
symbol const to("to");
symbol const clear("clear");
symbol const set("set");
symbol const attr("attr");
symbol const value("value");
}
}
void
print_cset(basic_io::printer & printer,
cset const & cs)
{
for (path_set::const_iterator i = cs.nodes_deleted.begin();
i != cs.nodes_deleted.end(); ++i)
{
basic_io::stanza st;
st.push_file_pair(syms::delete_node, file_path(*i));
printer.print_stanza(st);
}
for (map<split_path, split_path>::const_iterator i = cs.nodes_renamed.begin();
i != cs.nodes_renamed.end(); ++i)
{
basic_io::stanza st;
st.push_file_pair(syms::rename_node, file_path(i->first));
st.push_file_pair(syms::to, file_path(i->second));
printer.print_stanza(st);
}
for (path_set::const_iterator i = cs.dirs_added.begin();
i != cs.dirs_added.end(); ++i)
{
basic_io::stanza st;
st.push_file_pair(syms::add_dir, file_path(*i));
printer.print_stanza(st);
}
for (map<split_path, file_id>::const_iterator i = cs.files_added.begin();
i != cs.files_added.end(); ++i)
{
basic_io::stanza st;
st.push_file_pair(syms::add_file, file_path(i->first));
st.push_hex_pair(syms::content, i->second.inner());
printer.print_stanza(st);
}
for (map<split_path, pair<file_id, file_id> >::const_iterator i = cs.deltas_applied.begin();
i != cs.deltas_applied.end(); ++i)
{
basic_io::stanza st;
st.push_file_pair(syms::patch, file_path(i->first));
st.push_hex_pair(syms::from, i->second.first.inner());
st.push_hex_pair(syms::to, i->second.second.inner());
printer.print_stanza(st);
}
for (set<pair<split_path, attr_key> >::const_iterator i = cs.attrs_cleared.begin();
i != cs.attrs_cleared.end(); ++i)
{
basic_io::stanza st;
st.push_file_pair(syms::clear, file_path(i->first));
st.push_str_pair(syms::attr, i->second());
printer.print_stanza(st);
}
for (map<pair<split_path, attr_key>, attr_value>::const_iterator i = cs.attrs_set.begin();
i != cs.attrs_set.end(); ++i)
{
basic_io::stanza st;
st.push_file_pair(syms::set, file_path(i->first.first));
st.push_str_pair(syms::attr, i->first.second());
st.push_str_pair(syms::value, i->second());
printer.print_stanza(st);
}
}
static inline void
parse_path(basic_io::parser & parser, split_path & sp)
{
string s;
parser.str(s);
file_path_internal(s).split(sp);
}
void
parse_cset(basic_io::parser & parser,
cset & cs)
{
cs.clear();
string t1, t2;
MM(t1);
MM(t2);
split_path p1, p2;
MM(p1);
MM(p2);
split_path prev_path;
MM(prev_path);
pair<split_path, attr_key> prev_pair;
MM(prev_pair.first);
MM(prev_pair.second);
// we make use of the fact that a valid split_path is never empty
prev_path.clear();
while (parser.symp(syms::delete_node))
{
parser.sym();
parse_path(parser, p1);
I(prev_path.empty() || p1 > prev_path);
prev_path = p1;
safe_insert(cs.nodes_deleted, p1);
}
prev_path.clear();
while (parser.symp(syms::rename_node))
{
parser.sym();
parse_path(parser, p1);
I(prev_path.empty() || p1 > prev_path);
prev_path = p1;
parser.esym(syms::to);
parse_path(parser, p2);
safe_insert(cs.nodes_renamed, make_pair(p1, p2));
}
prev_path.clear();
while (parser.symp(syms::add_dir))
{
parser.sym();
parse_path(parser, p1);
I(prev_path.empty() || p1 > prev_path);
prev_path = p1;
safe_insert(cs.dirs_added, p1);
}
prev_path.clear();
while (parser.symp(syms::add_file))
{
parser.sym();
parse_path(parser, p1);
I(prev_path.empty() || p1 > prev_path);
prev_path = p1;
parser.esym(syms::content);
parser.hex(t1);
safe_insert(cs.files_added, make_pair(p1, file_id(t1)));
}
prev_path.clear();
while (parser.symp(syms::patch))
{
parser.sym();
parse_path(parser, p1);
I(prev_path.empty() || p1 > prev_path);
prev_path = p1;
parser.esym(syms::from);
parser.hex(t1);
parser.esym(syms::to);
parser.hex(t2);
safe_insert(cs.deltas_applied,
make_pair(p1, make_pair(file_id(t1), file_id(t2))));
}
prev_pair.first.clear();
while (parser.symp(syms::clear))
{
parser.sym();
parse_path(parser, p1);
parser.esym(syms::attr);
parser.str(t1);
pair<split_path, attr_key> new_pair(p1, t1);
I(prev_pair.first.empty() || new_pair > prev_pair);
prev_pair = new_pair;
safe_insert(cs.attrs_cleared, new_pair);
}
prev_pair.first.clear();
while (parser.symp(syms::set))
{
parser.sym();
parse_path(parser, p1);
parser.esym(syms::attr);
parser.str(t1);
pair<split_path, attr_key> new_pair(p1, t1);
I(prev_pair.first.empty() || new_pair > prev_pair);
prev_pair = new_pair;
parser.esym(syms::value);
parser.str(t2);
safe_insert(cs.attrs_set, make_pair(new_pair, attr_value(t2)));
}
}
void
write_cset(cset const & cs, data & dat)
{
basic_io::printer pr;
print_cset(pr, cs);
dat = data(pr.buf);
}
void
read_cset(data const & dat, cset & cs)
{
MM(dat);
MM(cs);
basic_io::input_source src(dat(), "cset");
basic_io::tokenizer tok(src);
basic_io::parser pars(tok);
parse_cset(pars, cs);
I(src.lookahead == EOF);
}
template <> void
dump(cset const & cs, string & out)
{
data dat;
write_cset(cs, dat);
out = dat();
}
#ifdef BUILD_UNIT_TESTS
#include "unit_tests.hh"
#include "roster.hh"
using std::logic_error;
static void
setup_roster(roster_t & r, file_id const & fid, node_id_source & nis)
{
// sets up r to have a root dir, a dir in it name "foo", and a file under
// that named "bar", and the file has the given id.
// the file has attr "attr_file=value_file", and the dir has
// "attr_dir=value_dir".
r = roster_t();
{
split_path sp;
file_path().split(sp);
r.attach_node(r.create_dir_node(nis), sp);
}
{
split_path sp;
file_path_internal("foo").split(sp);
r.attach_node(r.create_dir_node(nis), sp);
r.set_attr(sp, attr_key("attr_dir"), attr_value("value_dir"));
}
{
split_path sp;
file_path_internal("foo/bar").split(sp);
r.attach_node(r.create_file_node(fid, nis), sp);
r.set_attr(sp, attr_key("attr_file"), attr_value("value_file"));
}
}
UNIT_TEST(cset, cset_written)
{
{
L(FL("TEST: cset reading - operation misordering"));
// bad cset, add_dir should be before add_file
string s("delete \"foo\"\n"
"\n"
"rename \"quux\"\n"
" to \"baz\"\n"
"\n"
"add_file \"bar\"\n"
" content [0000000000000000000000000000000000000000]\n"
"\n"
"add_dir \"pling\"\n");
data d1(s);
cset cs;
BOOST_CHECK_THROW(read_cset(d1, cs), logic_error);
// check that it still fails if there's extra stanzas past the
// mis-ordered entries
data d2(s + "\n"
" set \"bar\"\n"
" attr \"flavoursome\"\n"
"value \"mostly\"\n");
BOOST_CHECK_THROW(read_cset(d2, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in delete"));
// bad cset, bar should be before foo
data dat("delete \"foo\"\n"
"\n"
"delete \"bar\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in rename"));
// bad cset, bar should be before foo
data dat("rename \"foo\"\n"
" to \"foonew\"\n"
"\n"
"rename \"bar\"\n"
" to \"barnew\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in add_dir"));
// bad cset, bar should be before foo
data dat("add_dir \"foo\"\n"
"\n"
"add_dir \"bar\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in add_file"));
// bad cset, bar should be before foo
data dat("add_file \"foo\"\n"
" content [0000000000000000000000000000000000000000]\n"
"\n"
"add_file \"bar\"\n"
" content [0000000000000000000000000000000000000000]\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in add_file"));
// bad cset, bar should be before foo
data dat("add_file \"foo\"\n"
" content [0000000000000000000000000000000000000000]\n"
"\n"
"add_file \"bar\"\n"
" content [0000000000000000000000000000000000000000]\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in patch"));
// bad cset, bar should be before foo
data dat("patch \"foo\"\n"
" from [0000000000000000000000000000000000000000]\n"
" to [1000000000000000000000000000000000000000]\n"
"\n"
"patch \"bar\"\n"
" from [0000000000000000000000000000000000000000]\n"
" to [1000000000000000000000000000000000000000]\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in clear"));
// bad cset, bar should be before foo
data dat("clear \"foo\"\n"
" attr \"flavoursome\"\n"
"\n"
"clear \"bar\"\n"
" attr \"flavoursome\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - misordered files in set"));
// bad cset, bar should be before foo
data dat(" set \"foo\"\n"
" attr \"flavoursome\"\n"
"value \"yes\"\n"
"\n"
" set \"bar\"\n"
" attr \"flavoursome\"\n"
"value \"yes\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - duplicate entries"));
data dat("delete \"foo\"\n"
"\n"
"delete \"foo\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - multiple different attrs"));
// should succeed
data dat( " set \"bar\"\n"
" attr \"flavoursome\"\n"
"value \"mostly\"\n"
"\n"
" set \"bar\"\n"
" attr \"smell\"\n"
"value \"socks\"\n");
cset cs;
BOOST_CHECK_NOT_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - wrong attr ordering in clear"));
// fooish should be before quuxy
data dat( "clear \"bar\"\n"
" attr \"quuxy\"\n"
"\n"
"clear \"bar\"\n"
" attr \"fooish\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - wrong attr ordering in set"));
// fooish should be before quuxy
data dat( " set \"bar\"\n"
" attr \"quuxy\"\n"
"value \"mostly\"\n"
"\n"
" set \"bar\"\n"
" attr \"fooish\"\n"
"value \"seldom\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset reading - duplicate attrs"));
// can't have dups.
data dat( " set \"bar\"\n"
" attr \"flavoursome\"\n"
"value \"mostly\"\n"
"\n"
" set \"bar\"\n"
" attr \"flavoursome\"\n"
"value \"sometimes\"\n");
cset cs;
BOOST_CHECK_THROW(read_cset(dat, cs), logic_error);
}
{
L(FL("TEST: cset writing - normalisation"));
cset cs; MM(cs);
split_path foo, bar, quux, foo_quux, idle, fish, womble, policeman;
file_id f1(string("1234567800000000000000000000000000000000"));
file_id f2(string("9876543212394657263900000000000000000000"));
file_id f3(string("0000000000011111111000000000000000000000"));
file_path_internal("foo").split(foo);
file_path_internal("foo/quux").split(foo_quux);
file_path_internal("bar").split(bar);
file_path_internal("quux").split(quux);
file_path_internal("idle").split(idle);
file_path_internal("fish").split(fish);
file_path_internal("womble").split(womble);
file_path_internal("policeman").split(policeman);
cs.dirs_added.insert(foo_quux);
cs.dirs_added.insert(foo);
cs.files_added.insert(make_pair(bar, f1));
cs.nodes_deleted.insert(quux);
cs.nodes_deleted.insert(idle);
cs.nodes_renamed.insert(make_pair(fish, womble));
cs.deltas_applied.insert(make_pair(womble, make_pair(f2, f3)));
cs.attrs_cleared.insert(make_pair(policeman, attr_key("yodel")));
cs.attrs_set.insert(make_pair(make_pair(policeman,
attr_key("axolotyl")), attr_value("fruitily")));
cs.attrs_set.insert(make_pair(make_pair(policeman,
attr_key("spin")), attr_value("capybara")));
data dat; MM(dat);
write_cset(cs, dat);
data expected("delete \"idle\"\n"
"\n"
"delete \"quux\"\n"
"\n"
"rename \"fish\"\n"
" to \"womble\"\n"
"\n"
"add_dir \"foo\"\n"
"\n"
"add_dir \"foo/quux\"\n"
"\n"
"add_file \"bar\"\n"
" content [1234567800000000000000000000000000000000]\n"
"\n"
"patch \"womble\"\n"
" from [9876543212394657263900000000000000000000]\n"
" to [0000000000011111111000000000000000000000]\n"
"\n"
"clear \"policeman\"\n"
" attr \"yodel\"\n"
"\n"
" set \"policeman\"\n"
" attr \"axolotyl\"\n"
"value \"fruitily\"\n"
"\n"
" set \"policeman\"\n"
" attr \"spin\"\n"
"value \"capybara\"\n"
);
MM(expected);
// I() so that it'll dump on failure
BOOST_CHECK_NOT_THROW(I(expected == dat), logic_error);
}
}
UNIT_TEST(cset, basic_csets)
{
temp_node_id_source nis;
roster_t r;
MM(r);
editable_roster_base tree(r, nis);
file_id f1(string("0000000000000000000000000000000000000001"));
file_id f2(string("0000000000000000000000000000000000000002"));
split_path root, foo, foo_bar, baz, quux;
file_path().split(root);
file_path_internal("foo").split(foo);
file_path_internal("foo/bar").split(foo_bar);
file_path_internal("baz").split(baz);
file_path_internal("quux").split(quux);
// some basic tests that should succeed
{
L(FL("TEST: cset add file"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.files_added.insert(make_pair(baz, f2));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(is_file_t(r.get_node(baz)));
BOOST_CHECK(downcast_to_file_t(r.get_node(baz))->content == f2);
BOOST_CHECK(r.all_nodes().size() == 4);
}
{
L(FL("TEST: cset add dir"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.dirs_added.insert(quux);
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(is_dir_t(r.get_node(quux)));
BOOST_CHECK(r.all_nodes().size() == 4);
}
{
L(FL("TEST: cset delete"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_deleted.insert(foo_bar);
cs.nodes_deleted.insert(foo);
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(r.all_nodes().size() == 1); // only the root left
}
{
L(FL("TEST: cset rename file"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_renamed.insert(make_pair(foo_bar, quux));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(is_file_t(r.get_node(quux)));
BOOST_CHECK(is_dir_t(r.get_node(foo)));
BOOST_CHECK(!r.has_node(foo_bar));
BOOST_CHECK(r.all_nodes().size() == 3);
}
{
L(FL("TEST: cset rename dir"));
split_path quux_bar;
file_path_internal("quux/bar").split(quux_bar);
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_renamed.insert(make_pair(foo, quux));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(is_dir_t(r.get_node(quux)));
BOOST_CHECK(is_file_t(r.get_node(quux_bar)));
BOOST_CHECK(!r.has_node(foo));
BOOST_CHECK(r.all_nodes().size() == 3);
}
{
L(FL("TEST: patch file"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.deltas_applied.insert(make_pair(foo_bar, make_pair(f1, f2)));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(is_dir_t(r.get_node(foo)));
BOOST_CHECK(is_file_t(r.get_node(foo_bar)));
BOOST_CHECK(downcast_to_file_t(r.get_node(foo_bar))->content == f2);
BOOST_CHECK(r.all_nodes().size() == 3);
}
{
L(FL("TEST: set attr"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.attrs_set.insert(make_pair(make_pair(foo_bar, attr_key("ping")),
attr_value("klang")));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
full_attr_map_t attrs = (r.get_node(foo_bar))->attrs;
BOOST_CHECK(attrs[attr_key("ping")] == make_pair(true, attr_value("klang")));
attrs = (r.get_node(foo))->attrs;
BOOST_CHECK(attrs[attr_key("attr_dir")] == make_pair(true, attr_value("value_dir")));
BOOST_CHECK(r.all_nodes().size() == 3);
}
{
L(FL("TEST: clear attr file"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.attrs_set.insert(make_pair(make_pair(foo_bar, attr_key("ping")),
attr_value("klang")));
cs.attrs_cleared.insert(make_pair(foo_bar, attr_key("attr_file")));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK((r.get_node(foo_bar))->attrs[attr_key("attr_file")]
== make_pair(false, attr_value("")));
BOOST_CHECK(r.all_nodes().size() == 3);
}
// some renaming tests
{
L(FL("TEST: renaming at different levels"));
setup_roster(r, f1, nis);
split_path quux_sub, foo_sub, foo_sub_deep, foo_subsub,
foo_subsub_deep, quux_bar, foo_bar,
quux_sub_thing, foo_sub_thing;
file_path_internal("quux/bar").split(quux_bar);
file_path_internal("foo/bar").split(foo_bar);
file_path_internal("quux/sub").split(quux_sub);
file_path_internal("foo/sub").split(foo_sub);
file_path_internal("foo/sub/thing").split(foo_sub_thing);
file_path_internal("quux/sub/thing").split(quux_sub_thing);
file_path_internal("foo/sub/deep").split(foo_sub_deep);
file_path_internal("foo/subsub").split(foo_subsub);
file_path_internal("foo/subsub/deep").split(foo_subsub_deep);
{ // build a tree
cset cs; MM(cs);
cs.dirs_added.insert(quux);
cs.dirs_added.insert(quux_sub);
cs.dirs_added.insert(foo_sub);
cs.files_added.insert(make_pair(foo_sub_deep, f2));
cs.files_added.insert(make_pair(quux_sub_thing, f1));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(r.all_nodes().size() == 8);
}
{ // some renames
cset cs; MM(cs);
cs.nodes_renamed.insert(make_pair(foo, quux));
cs.nodes_renamed.insert(make_pair(quux, foo));
cs.nodes_renamed.insert(make_pair(foo_sub, foo_subsub));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
}
BOOST_CHECK(r.all_nodes().size() == 8);
// /foo/bar -> /quux/bar
BOOST_CHECK(is_file_t(r.get_node(quux_bar)));
BOOST_CHECK(!(r.has_node(foo_bar)));
// /foo/sub/deep -> /foo/subsub/deep
BOOST_CHECK(is_file_t(r.get_node(foo_subsub_deep)));
BOOST_CHECK(!(r.has_node(foo_sub_deep)));
// /quux/sub -> /foo/sub
BOOST_CHECK(is_dir_t(r.get_node(foo_sub)));
BOOST_CHECK(!(r.has_node(quux_sub)));
// /quux/sub/thing -> /foo/sub/thing
BOOST_CHECK(is_file_t(r.get_node(foo_sub_thing)));
}
{
L(FL("delete targets pre-renamed nodes"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_renamed.insert(make_pair(foo_bar, foo));
cs.nodes_deleted.insert(foo);
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK(r.all_nodes().size() == 2);
BOOST_CHECK(is_file_t(r.get_node(foo)));
}
}
UNIT_TEST(cset, invalid_csets)
{
temp_node_id_source nis;
roster_t r;
MM(r);
editable_roster_base tree(r, nis);
file_id f1(string("0000000000000000000000000000000000000001"));
file_id f2(string("0000000000000000000000000000000000000002"));
split_path root, foo, foo_bar, baz, quux;
file_path().split(root);
file_path_internal("foo").split(foo);
file_path_internal("foo/bar").split(foo_bar);
file_path_internal("baz").split(baz);
file_path_internal("quux").split(quux);
{
L(FL("TEST: can't double-delete"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_deleted.insert(foo_bar);
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't double-add file"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.files_added.insert(make_pair(baz, f2));
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't add file on top of dir"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.files_added.insert(make_pair(foo, f2));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't delete+rename"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_deleted.insert(foo_bar);
cs.nodes_renamed.insert(make_pair(foo_bar, baz));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't add+rename"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.dirs_added.insert(baz);
cs.nodes_renamed.insert(make_pair(baz, quux));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't add on top of root dir"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.dirs_added.insert(root);
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't rename on top of root dir"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_renamed.insert(make_pair(foo, root));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't rename 'a' 'a'"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_renamed.insert(make_pair(foo_bar, foo_bar));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't rename 'a' 'b'; rename 'a/foo' 'b/foo'"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
split_path baz_bar;
file_path_internal("baz/bar").split(baz_bar);
cs.nodes_renamed.insert(make_pair(foo, baz));
cs.nodes_renamed.insert(make_pair(foo_bar, baz_bar));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't attr_set + attr_cleared"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.attrs_set.insert(make_pair(make_pair(foo_bar, attr_key("blah")),
attr_value("blahblah")));
cs.attrs_cleared.insert(make_pair(foo_bar, attr_key("blah")));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't no-op attr_set"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.attrs_set.insert(make_pair(make_pair(foo_bar, attr_key("attr_file")),
attr_value("value_file")));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't clear non-existent attr"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.attrs_cleared.insert(make_pair(foo_bar, attr_key("blah")));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't clear non-existent attr that once existed"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.attrs_cleared.insert(make_pair(foo_bar, attr_key("attr_file")));
// exists now, so should be fine
BOOST_CHECK_NOT_THROW(cs.apply_to(tree), logic_error);
// but last time killed it, so can't be killed again
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't have no-op deltas"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.deltas_applied.insert(make_pair(foo_bar,
make_pair(f1, f1)));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't have add+delta"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.files_added.insert(make_pair(baz, f1));
cs.deltas_applied.insert(make_pair(baz,
make_pair(f1, f2)));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't delta a directory"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.deltas_applied.insert(make_pair(foo,
make_pair(f1, f2)));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't delete non-empty directory"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
cs.nodes_deleted.insert(foo);
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: attach node with no root directory present"));
// for this test, make sure original roster has no contents
r = roster_t();
cset cs; MM(cs);
split_path sp;
file_path_internal("blah/blah/blah").split(sp);
cs.dirs_added.insert(sp);
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
{
L(FL("TEST: can't move a directory underneath itself"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
split_path foo_blah;
file_path_internal("foo/blah").split(foo_blah);
cs.nodes_renamed.insert(make_pair(foo, foo_blah));
BOOST_CHECK_THROW(cs.apply_to(tree), logic_error);
}
}
UNIT_TEST(cset, root_dir)
{
temp_node_id_source nis;
roster_t r;
MM(r);
editable_roster_base tree(r, nis);
file_id f1(string("0000000000000000000000000000000000000001"));
split_path root, baz;
file_path().split(root);
file_path_internal("baz").split(baz);
{
L(FL("TEST: can rename root"));
setup_roster(r, f1, nis);
cset cs; MM(cs);
split_path sp1, sp2;
cs.dirs_added.insert(root);
cs.nodes_renamed.insert(make_pair(root, baz));
cs.apply_to(tree);
r.check_sane(true);
}
{
L(FL("TEST: can delete root (but it makes us insane)"));
// for this test, make sure root has no contents
r = roster_t();
r.attach_node(r.create_dir_node(nis), root);
cset cs; MM(cs);
cs.nodes_deleted.insert(root);
cs.apply_to(tree);
BOOST_CHECK_THROW(r.check_sane(true), logic_error);
}
{
L(FL("TEST: can delete and replace root"));
r = roster_t();
r.attach_node(r.create_dir_node(nis), root);
cset cs; MM(cs);
cs.nodes_deleted.insert(root);
cs.dirs_added.insert(root);
cs.apply_to(tree);
r.check_sane(true);
}
}
#endif // BUILD_UNIT_TESTS
// Local Variables:
// mode: C++
// fill-column: 76
// c-file-style: "gnu"
// indent-tabs-mode: nil
// End:
// vim: et:sw=2:sts=2:ts=2:cino=>2s,{s,\:s,+s,t0,g0,^-2,e-2,n-2,p2s,(0,=s:
|