|
| 1 | +function mktree(d::Dict) |
| 2 | + lstree = "" |
| 3 | + for (name, data) in d |
| 4 | + if isa(data, String) |
| 5 | + sha1 = readchomp(`echo -n $data` | `git hash-object -w --stdin`) |
| 6 | + lstree *= "100644 blob $sha1\t$name\n" |
| 7 | + elseif isa(data, Dict) |
| 8 | + sha1 = mktree(data) |
| 9 | + lstree *= "040000 tree $sha1\t$name\n" |
| 10 | + elseif is(data, nothing) |
| 11 | + # ignore it |
| 12 | + else |
| 13 | + error("mktree: don't know what to do with $name => $data") |
| 14 | + end |
| 15 | + end |
| 16 | + readchomp(`echo -n $lstree` | `git mktree`) |
| 17 | +end |
| 18 | + |
| 19 | +function verify_tree(d::Dict, tree::String) |
| 20 | + # check that tree matches d |
| 21 | + seen = Set() |
| 22 | + for line in eachline(`git ls-tree $tree`) |
| 23 | + m = match(r"^(\d{6}) (\w+) ([0-9a-f]{40})\t(.*)$", line) |
| 24 | + @test m != nothing |
| 25 | + perm, kind, sha1, name = m.captures |
| 26 | + @test has(d,name) |
| 27 | + data = d[name] |
| 28 | + if isa(data, String) |
| 29 | + @test kind == "blob" |
| 30 | + @test data == readall(`git cat-file blob $sha1`) |
| 31 | + elseif isa(data, Dict) |
| 32 | + @test kind == "tree" |
| 33 | + verify_tree(data, sha1) |
| 34 | + else |
| 35 | + error("verify_tree: don't know what to do with $name => $data") |
| 36 | + end |
| 37 | + add!(seen, name) |
| 38 | + end |
| 39 | + # check that nothing was missing from tree |
| 40 | + for (name, data) in d |
| 41 | + @test is(data,nothing) || contains(seen,name) |
| 42 | + end |
| 43 | +end |
| 44 | + |
| 45 | +function verify_work(d::Dict) |
| 46 | + # check what's in d |
| 47 | + for (name, data) in d |
| 48 | + if is(data, nothing) |
| 49 | + @test !ispath(name) |
| 50 | + continue |
| 51 | + end |
| 52 | + @test ispath(name) |
| 53 | + if isa(data, String) |
| 54 | + @test isfile(name) |
| 55 | + @test readall(name) == data |
| 56 | + elseif isa(data, Dict) |
| 57 | + cd(name) do |
| 58 | + verify_work(data) |
| 59 | + end |
| 60 | + else |
| 61 | + error("verify_work: don't know what to do with $name => $data") |
| 62 | + end |
| 63 | + end |
| 64 | + # check for anything that's not in d |
| 65 | + for line in eachline(`ls -A`) |
| 66 | + name = chomp(line) |
| 67 | + @test name == ".git" || has(d,name) |
| 68 | + end |
| 69 | +end |
| 70 | + |
| 71 | +function git_verify(h::Dict, i::Dict, w::Dict) |
| 72 | + verify_tree(h, "HEAD") |
| 73 | + verify_tree(i, readchomp(`git write-tree`)) |
| 74 | + verify_work(w) |
| 75 | +end |
| 76 | + |
| 77 | +function git_setup(h::Dict, i::Dict, w::Dict, parents::String...) |
| 78 | + # create tree objects |
| 79 | + headt = mktree(h) |
| 80 | + index = mktree(i) |
| 81 | + work = mktree(w) |
| 82 | + |
| 83 | + # clear the repo |
| 84 | + for line in eachline(`ls -A`) |
| 85 | + name = chomp(line) |
| 86 | + name == ".git" || run(`rm -rf $name`) |
| 87 | + end |
| 88 | + |
| 89 | + # create the head commit |
| 90 | + commit_tree = `git commit-tree $headt` |
| 91 | + for parent in parents |
| 92 | + commit_tree = `$commit_tree -p $parent` |
| 93 | + end |
| 94 | + head = readchomp(`echo $headt` | commit_tree) |
| 95 | + run(`git reset -q --soft $head`) |
| 96 | + |
| 97 | + run(`git read-tree $work`) # read work into the index |
| 98 | + run(`git checkout-index -fa`) # check the index out |
| 99 | + run(`git read-tree $index`) # setup the index |
| 100 | + |
| 101 | + # verify that everything is as expected |
| 102 | + git_verify(h, i, w) |
| 103 | +end |
| 104 | +git_setup(h::Dict, i::Dict, w::Dict) = git_setup(h, i, w, readchomp(`git rev-parse HEAD`)) |
0 commit comments