rugged 0.16.0 → 0.17.0b1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +373 -243
- data/Rakefile +22 -0
- data/ext/rugged/extconf.rb +9 -6
- data/ext/rugged/rugged.c +123 -31
- data/ext/rugged/rugged.h +11 -10
- data/ext/rugged/rugged_blob.c +181 -18
- data/ext/rugged/rugged_commit.c +196 -18
- data/ext/rugged/rugged_config.c +94 -5
- data/ext/rugged/rugged_object.c +54 -1
- data/ext/rugged/rugged_reference.c +203 -15
- data/ext/rugged/{remote.c → rugged_remote.c} +35 -10
- data/ext/rugged/rugged_repo.c +323 -81
- data/ext/rugged/rugged_revwalk.c +57 -4
- data/ext/rugged/rugged_signature.c +3 -3
- data/ext/rugged/rugged_tag.c +72 -1
- data/ext/rugged/rugged_tree.c +70 -2
- data/ext/rugged/vendor/libgit2-dist/deps/regex/config.h +7 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regcomp.c +3856 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex.h +582 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex_internal.c +1744 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex_internal.h +810 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regexec.c +4369 -0
- data/ext/rugged/vendor/libgit2-dist/examples/diff.c +238 -0
- data/ext/rugged/vendor/libgit2-dist/examples/general.c +4 -4
- data/ext/rugged/vendor/libgit2-dist/examples/network/fetch.c +101 -85
- data/ext/rugged/vendor/libgit2-dist/examples/network/git2.c +7 -3
- data/ext/rugged/vendor/libgit2-dist/examples/network/index-pack.c +80 -25
- data/ext/rugged/vendor/libgit2-dist/examples/network/ls-remote.c +6 -6
- data/ext/rugged/vendor/libgit2-dist/include/git2/attr.h +224 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/blob.h +59 -5
- data/ext/rugged/vendor/libgit2-dist/include/git2/branch.h +114 -7
- data/ext/rugged/vendor/libgit2-dist/include/git2/commit.h +14 -7
- data/ext/rugged/vendor/libgit2-dist/include/git2/common.h +4 -3
- data/ext/rugged/vendor/libgit2-dist/include/git2/config.h +105 -27
- data/ext/rugged/vendor/libgit2-dist/include/git2/diff.h +409 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/errors.h +47 -82
- data/ext/rugged/vendor/libgit2-dist/include/git2/index.h +25 -10
- data/ext/rugged/vendor/libgit2-dist/include/git2/indexer.h +46 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2/merge.h +35 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/net.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2/notes.h +139 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/object.h +5 -5
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb.h +13 -13
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb_backend.h +8 -8
- data/ext/rugged/vendor/libgit2-dist/include/git2/oid.h +14 -9
- data/ext/rugged/vendor/libgit2-dist/include/git2/reflog.h +5 -5
- data/ext/rugged/vendor/libgit2-dist/include/git2/refs.h +37 -17
- data/ext/rugged/vendor/libgit2-dist/include/git2/refspec.h +17 -9
- data/ext/rugged/vendor/libgit2-dist/include/git2/remote.h +83 -16
- data/ext/rugged/vendor/libgit2-dist/include/git2/repository.h +24 -10
- data/ext/rugged/vendor/libgit2-dist/include/git2/reset.h +44 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/revparse.h +36 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/revwalk.h +74 -6
- data/ext/rugged/vendor/libgit2-dist/include/git2/signature.h +3 -3
- data/ext/rugged/vendor/libgit2-dist/include/git2/status.h +120 -19
- data/ext/rugged/vendor/libgit2-dist/include/git2/submodule.h +103 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/tag.h +28 -10
- data/ext/rugged/vendor/libgit2-dist/include/git2/threads.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2/tree.h +13 -13
- data/ext/rugged/vendor/libgit2-dist/include/git2/types.h +16 -2
- data/ext/rugged/vendor/libgit2-dist/include/git2/version.h +3 -3
- data/ext/rugged/vendor/libgit2-dist/include/git2/windows.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2.h +7 -2
- data/ext/rugged/vendor/libgit2-dist/src/attr.c +677 -0
- data/ext/rugged/vendor/libgit2-dist/src/attr.h +56 -0
- data/ext/rugged/vendor/libgit2-dist/src/attr_file.c +609 -0
- data/ext/rugged/vendor/libgit2-dist/src/attr_file.h +145 -0
- data/ext/rugged/vendor/libgit2-dist/src/blob.c +213 -60
- data/ext/rugged/vendor/libgit2-dist/src/blob.h +2 -1
- data/ext/rugged/vendor/libgit2-dist/src/branch.c +208 -0
- data/ext/rugged/vendor/libgit2-dist/src/branch.h +17 -0
- data/ext/rugged/vendor/libgit2-dist/src/bswap.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/buffer.c +395 -46
- data/ext/rugged/vendor/libgit2-dist/src/buffer.h +112 -9
- data/ext/rugged/vendor/libgit2-dist/src/cache.c +37 -49
- data/ext/rugged/vendor/libgit2-dist/src/cache.h +7 -17
- data/ext/rugged/vendor/libgit2-dist/src/cc-compat.h +18 -16
- data/ext/rugged/vendor/libgit2-dist/src/commit.c +56 -90
- data/ext/rugged/vendor/libgit2-dist/src/commit.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/common.h +12 -5
- data/ext/rugged/vendor/libgit2-dist/src/{win32 → compat}/fnmatch.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/{win32 → compat}/fnmatch.h +3 -3
- data/ext/rugged/vendor/libgit2-dist/src/config.c +247 -158
- data/ext/rugged/vendor/libgit2-dist/src/config.h +10 -1
- data/ext/rugged/vendor/libgit2-dist/src/config_cache.c +94 -0
- data/ext/rugged/vendor/libgit2-dist/src/config_file.c +606 -496
- data/ext/rugged/vendor/libgit2-dist/src/config_file.h +31 -0
- data/ext/rugged/vendor/libgit2-dist/src/crlf.c +228 -0
- data/ext/rugged/vendor/libgit2-dist/src/date.c +876 -0
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.c +15 -9
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.h +2 -2
- data/ext/rugged/vendor/libgit2-dist/src/diff.c +814 -0
- data/ext/rugged/vendor/libgit2-dist/src/diff.h +43 -0
- data/ext/rugged/vendor/libgit2-dist/src/diff_output.c +794 -0
- data/ext/rugged/vendor/libgit2-dist/src/errors.c +89 -74
- data/ext/rugged/vendor/libgit2-dist/src/fetch.c +94 -66
- data/ext/rugged/vendor/libgit2-dist/src/fetch.h +5 -4
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.c +157 -100
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.h +22 -8
- data/ext/rugged/vendor/libgit2-dist/src/fileops.c +330 -206
- data/ext/rugged/vendor/libgit2-dist/src/fileops.h +82 -51
- data/ext/rugged/vendor/libgit2-dist/src/filter.c +165 -0
- data/ext/rugged/vendor/libgit2-dist/src/filter.h +119 -0
- data/ext/rugged/vendor/libgit2-dist/src/global.c +4 -4
- data/ext/rugged/vendor/libgit2-dist/src/global.h +4 -1
- data/ext/rugged/vendor/libgit2-dist/src/hash.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/hash.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/ignore.c +203 -0
- data/ext/rugged/vendor/libgit2-dist/src/ignore.h +38 -0
- data/ext/rugged/vendor/libgit2-dist/src/index.c +220 -169
- data/ext/rugged/vendor/libgit2-dist/src/index.h +5 -1
- data/ext/rugged/vendor/libgit2-dist/src/indexer.c +601 -102
- data/ext/rugged/vendor/libgit2-dist/src/iterator.c +748 -0
- data/ext/rugged/vendor/libgit2-dist/src/iterator.h +151 -0
- data/ext/rugged/vendor/libgit2-dist/src/khash.h +608 -0
- data/ext/rugged/vendor/libgit2-dist/src/map.h +6 -1
- data/ext/rugged/vendor/libgit2-dist/src/message.c +61 -0
- data/ext/rugged/vendor/libgit2-dist/src/message.h +14 -0
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.c +27 -29
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.h +4 -4
- data/ext/rugged/vendor/libgit2-dist/src/netops.c +375 -56
- data/ext/rugged/vendor/libgit2-dist/src/netops.h +12 -9
- data/ext/rugged/vendor/libgit2-dist/src/notes.c +548 -0
- data/ext/rugged/vendor/libgit2-dist/src/notes.h +28 -0
- data/ext/rugged/vendor/libgit2-dist/src/object.c +59 -21
- data/ext/rugged/vendor/libgit2-dist/src/odb.c +212 -175
- data/ext/rugged/vendor/libgit2-dist/src/odb.h +39 -2
- data/ext/rugged/vendor/libgit2-dist/src/odb_loose.c +238 -241
- data/ext/rugged/vendor/libgit2-dist/src/odb_pack.c +94 -106
- data/ext/rugged/vendor/libgit2-dist/src/oid.c +59 -60
- data/ext/rugged/vendor/libgit2-dist/src/oidmap.h +42 -0
- data/ext/rugged/vendor/libgit2-dist/src/pack.c +198 -170
- data/ext/rugged/vendor/libgit2-dist/src/pack.h +16 -9
- data/ext/rugged/vendor/libgit2-dist/src/path.c +496 -106
- data/ext/rugged/vendor/libgit2-dist/src/path.h +214 -20
- data/ext/rugged/vendor/libgit2-dist/src/pkt.c +88 -159
- data/ext/rugged/vendor/libgit2-dist/src/pkt.h +9 -5
- data/ext/rugged/vendor/libgit2-dist/src/pool.c +294 -0
- data/ext/rugged/vendor/libgit2-dist/src/pool.h +125 -0
- data/ext/rugged/vendor/libgit2-dist/src/posix.c +38 -16
- data/ext/rugged/vendor/libgit2-dist/src/posix.h +20 -2
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.c +7 -7
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/protocol.c +21 -13
- data/ext/rugged/vendor/libgit2-dist/src/protocol.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/reflog.c +125 -103
- data/ext/rugged/vendor/libgit2-dist/src/reflog.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/refs.c +713 -640
- data/ext/rugged/vendor/libgit2-dist/src/refs.h +27 -3
- data/ext/rugged/vendor/libgit2-dist/src/refspec.c +51 -17
- data/ext/rugged/vendor/libgit2-dist/src/refspec.h +13 -1
- data/ext/rugged/vendor/libgit2-dist/src/remote.c +307 -119
- data/ext/rugged/vendor/libgit2-dist/src/remote.h +3 -2
- data/ext/rugged/vendor/libgit2-dist/src/repository.c +593 -442
- data/ext/rugged/vendor/libgit2-dist/src/repository.h +80 -2
- data/ext/rugged/vendor/libgit2-dist/src/reset.c +103 -0
- data/ext/rugged/vendor/libgit2-dist/src/revparse.c +753 -0
- data/ext/rugged/vendor/libgit2-dist/src/revwalk.c +434 -158
- data/ext/rugged/vendor/libgit2-dist/src/sha1.c +3 -3
- data/ext/rugged/vendor/libgit2-dist/src/sha1.h +2 -2
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.c +3 -2
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/signature.c +69 -80
- data/ext/rugged/vendor/libgit2-dist/src/signature.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/status.c +184 -638
- data/ext/rugged/vendor/libgit2-dist/src/strmap.h +64 -0
- data/ext/rugged/vendor/libgit2-dist/src/submodule.c +387 -0
- data/ext/rugged/vendor/libgit2-dist/src/tag.c +162 -137
- data/ext/rugged/vendor/libgit2-dist/src/tag.h +2 -1
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.h +8 -8
- data/ext/rugged/vendor/libgit2-dist/src/transport.c +31 -19
- data/ext/rugged/vendor/libgit2-dist/src/transport.h +31 -11
- data/ext/rugged/vendor/libgit2-dist/src/transports/git.c +168 -193
- data/ext/rugged/vendor/libgit2-dist/src/transports/http.c +192 -241
- data/ext/rugged/vendor/libgit2-dist/src/transports/local.c +92 -86
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.c +32 -49
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/tree.c +172 -145
- data/ext/rugged/vendor/libgit2-dist/src/tree.h +16 -2
- data/ext/rugged/vendor/libgit2-dist/src/tsort.c +16 -14
- data/ext/rugged/vendor/libgit2-dist/src/unix/map.c +8 -24
- data/ext/rugged/vendor/libgit2-dist/src/unix/posix.h +9 -3
- data/ext/rugged/vendor/libgit2-dist/src/util.c +94 -38
- data/ext/rugged/vendor/libgit2-dist/src/util.h +119 -13
- data/ext/rugged/vendor/libgit2-dist/src/vector.c +84 -31
- data/ext/rugged/vendor/libgit2-dist/src/vector.h +37 -4
- data/ext/rugged/vendor/libgit2-dist/src/win32/dir.c +81 -41
- data/ext/rugged/vendor/libgit2-dist/src/{dir.h → win32/dir.h} +4 -9
- data/ext/rugged/vendor/libgit2-dist/src/win32/map.c +19 -35
- data/ext/rugged/vendor/libgit2-dist/src/win32/mingw-compat.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/win32/msvc-compat.h +5 -1
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix.h +10 -8
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix_w32.c +262 -118
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.c +12 -9
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.c +30 -26
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.h +2 -1
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xdiff.h +135 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xdiffi.c +572 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xdiffi.h +63 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xemit.c +253 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xemit.h +36 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xhistogram.c +371 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xinclude.h +46 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xmacros.h +54 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xmerge.c +619 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xpatience.c +358 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xprepare.c +483 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xprepare.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xtypes.h +67 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xutils.c +419 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xutils.h +49 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/attr_expect.h +43 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/file.c +226 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/flags.c +108 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/lookup.c +262 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/repo.c +273 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/buf/basic.c +5 -5
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_helpers.c +181 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_libgit2.h +55 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/commit.c +44 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/parse.c +350 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/signature.c +65 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/write.c +140 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/add.c +3 -3
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/multivar.c +151 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/new.c +5 -5
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/read.c +44 -32
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/stress.c +61 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/write.c +20 -5
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/buffer.c +613 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/dirent.c +39 -26
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/env.c +115 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/errors.c +60 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/filebuf.c +4 -18
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/hex.c +22 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/oid.c +6 -6
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/path.c +420 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/pool.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/rmdir.c +68 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/string.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strmap.c +102 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/strtol.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/vector.c +191 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/date/date.c +15 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/blob.c +254 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.c +104 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.h +47 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/index.c +92 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/iterator.c +572 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/patch.c +99 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/tree.c +210 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/workdir.c +543 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/read_tree.c +46 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/index/rename.c +2 -12
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/tests.c +246 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/createremotethenload.c +33 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotelocal.c +137 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotes.c +183 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notes.c +133 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notesref.c +57 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/filter.c +125 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/fromchunks.c +87 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/write.c +69 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/commit/commitstagedfile.c +126 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/lookup.c +63 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/message.c +171 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/chars.c +3 -14
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/compare.c +4 -4
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/convert.c +10 -10
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/data.h +0 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/fromstr.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/hash.c +21 -17
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/short.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/size.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/type2string.c +14 -14
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/write.c +455 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/peel.c +56 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/read.c +130 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/write.c +192 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/tree/frompath.c +22 -16
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/read.c +75 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/write.c +84 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/loose.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/loose_data.h +0 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/mixed.c +24 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/pack_data.h +0 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/packed.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/sorting.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/create.c +113 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/delete.c +91 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/listall.c +78 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/move.c +72 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/crashes.c +17 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/create.c +149 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/delete.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/list.c +53 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/listall.c +36 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/lookup.c +42 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/normalize.c +200 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/overwrite.c +136 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/pack.c +67 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/read.c +194 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/reflog.c +123 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/rename.c +339 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/revparse.c +174 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/unicode.c +42 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/discover.c +142 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/repo/getters.c +19 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/init.c +235 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/open.c +282 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/setters.c +80 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/mixed.c +47 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.c +10 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.h +6 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/soft.c +102 -0
- data/ext/rugged/vendor/libgit2-dist/{tests/t05-revwalk.c → tests-clar/revwalk/basic.c} +85 -44
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/mergebase.c +148 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/ignore.c +133 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/status/single.c +2 -11
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_data.h +202 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.c +49 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.h +33 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/submodules.c +112 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/worktree.c +649 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/threads/basic.c +20 -0
- data/ext/rugged/vendor/libgit2-dist.tar.gz +0 -0
- data/lib/rugged/commit.rb +35 -0
- data/lib/rugged/object.rb +7 -0
- data/lib/rugged/reference.rb +9 -0
- data/lib/rugged/repository.rb +99 -3
- data/lib/rugged/tag.rb +22 -0
- data/lib/rugged/tree.rb +8 -0
- data/lib/rugged/version.rb +1 -1
- data/lib/rugged.rb +4 -1
- data/test/blob_test.rb +2 -2
- data/test/commit_test.rb +27 -13
- data/test/config_test.rb +44 -0
- data/test/coverage/HEAD.json +1 -1
- data/test/fixtures/testrepo.git/config +2 -0
- data/test/fixtures/testrepo.git/objects/7f/043268ea43ce18e3540acaabf9e090c91965b0 +0 -0
- data/test/lib_test.rb +7 -0
- data/test/object_test.rb +3 -3
- data/test/reference_test.rb +46 -8
- data/test/remote_test.rb +8 -2
- data/test/repo_pack_test.rb +3 -3
- data/test/repo_test.rb +79 -11
- data/test/tag_test.rb +9 -2
- data/test/test_helper.rb +21 -0
- data/test/tree_test.rb +18 -6
- metadata +205 -81
- data/ext/rugged/vendor/libgit2-dist/include/git2/zlib.h +0 -40
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.c +0 -243
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.h +0 -80
- data/ext/rugged/vendor/libgit2-dist/tests/t00-core.c +0 -628
- data/ext/rugged/vendor/libgit2-dist/tests/t01-data.h +0 -322
- data/ext/rugged/vendor/libgit2-dist/tests/t01-rawobj.c +0 -638
- data/ext/rugged/vendor/libgit2-dist/tests/t03-data.h +0 -344
- data/ext/rugged/vendor/libgit2-dist/tests/t03-objwrite.c +0 -255
- data/ext/rugged/vendor/libgit2-dist/tests/t04-commit.c +0 -788
- data/ext/rugged/vendor/libgit2-dist/tests/t06-index.c +0 -219
- data/ext/rugged/vendor/libgit2-dist/tests/t07-hashtable.c +0 -192
- data/ext/rugged/vendor/libgit2-dist/tests/t08-tag.c +0 -357
- data/ext/rugged/vendor/libgit2-dist/tests/t09-tree.c +0 -221
- data/ext/rugged/vendor/libgit2-dist/tests/t10-refs.c +0 -1294
- data/ext/rugged/vendor/libgit2-dist/tests/t12-repo.c +0 -174
- data/ext/rugged/vendor/libgit2-dist/tests/t13-threads.c +0 -41
- data/ext/rugged/vendor/libgit2-dist/tests/t17-bufs.c +0 -61
- data/ext/rugged/vendor/libgit2-dist/tests/t18-status.c +0 -448
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.c +0 -310
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.h +0 -83
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.c +0 -198
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.h +0 -54
- data/ext/rugged/vendor/libgit2-dist/tests/test_main.c +0 -89
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay.h +0 -187
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_libgit2.h +0 -28
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_main.c +0 -1073
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/stress.c +0 -39
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/path.c +0 -139
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/rmdir.c +0 -50
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/vector.c +0 -66
- data/ext/rugged/vendor/libgit2-dist/tests-clay/network/remotes.c +0 -50
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/init.c +0 -104
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/open.c +0 -54
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/status_data.h +0 -48
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/worktree.c +0 -124
- data/lib/rugged/objects.rb +0 -45
- data/test/fixtures/testrepo.git/refs/heads/new_name +0 -1
@@ -1,628 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* This file is free software; you can redistribute it and/or modify
|
3
|
-
* it under the terms of the GNU General Public License, version 2,
|
4
|
-
* as published by the Free Software Foundation.
|
5
|
-
*
|
6
|
-
* In addition to the permissions in the GNU General Public License,
|
7
|
-
* the authors give you unlimited permission to link the compiled
|
8
|
-
* version of this file into combinations with other programs,
|
9
|
-
* and to distribute those combinations without any restriction
|
10
|
-
* coming from the use of this file. (The General Public License
|
11
|
-
* restrictions do apply in other respects; for example, they cover
|
12
|
-
* modification of the file, and distribution when not linked into
|
13
|
-
* a combined executable.)
|
14
|
-
*
|
15
|
-
* This file is distributed in the hope that it will be useful, but
|
16
|
-
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
18
|
-
* General Public License for more details.
|
19
|
-
*
|
20
|
-
* You should have received a copy of the GNU General Public License
|
21
|
-
* along with this program; see the file COPYING. If not, write to
|
22
|
-
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
23
|
-
* Boston, MA 02110-1301, USA.
|
24
|
-
*/
|
25
|
-
#include "test_lib.h"
|
26
|
-
|
27
|
-
#include "vector.h"
|
28
|
-
#include "fileops.h"
|
29
|
-
#include "filebuf.h"
|
30
|
-
|
31
|
-
BEGIN_TEST(string0, "compare prefixes")
|
32
|
-
must_be_true(git__prefixcmp("", "") == 0);
|
33
|
-
must_be_true(git__prefixcmp("a", "") == 0);
|
34
|
-
must_be_true(git__prefixcmp("", "a") < 0);
|
35
|
-
must_be_true(git__prefixcmp("a", "b") < 0);
|
36
|
-
must_be_true(git__prefixcmp("b", "a") > 0);
|
37
|
-
must_be_true(git__prefixcmp("ab", "a") == 0);
|
38
|
-
must_be_true(git__prefixcmp("ab", "ac") < 0);
|
39
|
-
must_be_true(git__prefixcmp("ab", "aa") > 0);
|
40
|
-
END_TEST
|
41
|
-
|
42
|
-
BEGIN_TEST(string1, "compare suffixes")
|
43
|
-
must_be_true(git__suffixcmp("", "") == 0);
|
44
|
-
must_be_true(git__suffixcmp("a", "") == 0);
|
45
|
-
must_be_true(git__suffixcmp("", "a") < 0);
|
46
|
-
must_be_true(git__suffixcmp("a", "b") < 0);
|
47
|
-
must_be_true(git__suffixcmp("b", "a") > 0);
|
48
|
-
must_be_true(git__suffixcmp("ba", "a") == 0);
|
49
|
-
must_be_true(git__suffixcmp("zaa", "ac") < 0);
|
50
|
-
must_be_true(git__suffixcmp("zaz", "ac") > 0);
|
51
|
-
END_TEST
|
52
|
-
|
53
|
-
|
54
|
-
BEGIN_TEST(vector0, "initial size of 1 would cause writing past array bounds")
|
55
|
-
git_vector x;
|
56
|
-
int i;
|
57
|
-
git_vector_init(&x, 1, NULL);
|
58
|
-
for (i = 0; i < 10; ++i) {
|
59
|
-
git_vector_insert(&x, (void*) 0xabc);
|
60
|
-
}
|
61
|
-
git_vector_free(&x);
|
62
|
-
END_TEST
|
63
|
-
|
64
|
-
BEGIN_TEST(vector1, "don't read past array bounds on remove()")
|
65
|
-
git_vector x;
|
66
|
-
// make initial capacity exact for our insertions.
|
67
|
-
git_vector_init(&x, 3, NULL);
|
68
|
-
git_vector_insert(&x, (void*) 0xabc);
|
69
|
-
git_vector_insert(&x, (void*) 0xdef);
|
70
|
-
git_vector_insert(&x, (void*) 0x123);
|
71
|
-
|
72
|
-
git_vector_remove(&x, 0); // used to read past array bounds.
|
73
|
-
git_vector_free(&x);
|
74
|
-
END_TEST
|
75
|
-
|
76
|
-
static int test_cmp(const void *a, const void *b)
|
77
|
-
{
|
78
|
-
return *(const int *)a - *(const int *)b;
|
79
|
-
}
|
80
|
-
|
81
|
-
BEGIN_TEST(vector2, "remove duplicates")
|
82
|
-
git_vector x;
|
83
|
-
int *ptrs[2];
|
84
|
-
|
85
|
-
ptrs[0] = git__malloc(sizeof(int));
|
86
|
-
ptrs[1] = git__malloc(sizeof(int));
|
87
|
-
|
88
|
-
*ptrs[0] = 2;
|
89
|
-
*ptrs[1] = 1;
|
90
|
-
|
91
|
-
must_pass(git_vector_init(&x, 5, test_cmp));
|
92
|
-
must_pass(git_vector_insert(&x, ptrs[0]));
|
93
|
-
must_pass(git_vector_insert(&x, ptrs[1]));
|
94
|
-
must_pass(git_vector_insert(&x, ptrs[1]));
|
95
|
-
must_pass(git_vector_insert(&x, ptrs[0]));
|
96
|
-
must_pass(git_vector_insert(&x, ptrs[1]));
|
97
|
-
must_be_true(x.length == 5);
|
98
|
-
git_vector_uniq(&x);
|
99
|
-
must_be_true(x.length == 2);
|
100
|
-
git_vector_free(&x);
|
101
|
-
|
102
|
-
git__free(ptrs[0]);
|
103
|
-
git__free(ptrs[1]);
|
104
|
-
END_TEST
|
105
|
-
|
106
|
-
|
107
|
-
BEGIN_TEST(path0, "get the dirname of a path")
|
108
|
-
char dir[64], *dir2;
|
109
|
-
|
110
|
-
#define DIRNAME_TEST(A, B) { \
|
111
|
-
must_be_true(git_path_dirname_r(dir, sizeof(dir), A) >= 0); \
|
112
|
-
must_be_true(strcmp(dir, B) == 0); \
|
113
|
-
must_be_true((dir2 = git_path_dirname(A)) != NULL); \
|
114
|
-
must_be_true(strcmp(dir2, B) == 0); \
|
115
|
-
git__free(dir2); \
|
116
|
-
}
|
117
|
-
|
118
|
-
DIRNAME_TEST(NULL, ".");
|
119
|
-
DIRNAME_TEST("", ".");
|
120
|
-
DIRNAME_TEST("a", ".");
|
121
|
-
DIRNAME_TEST("/", "/");
|
122
|
-
DIRNAME_TEST("/usr", "/");
|
123
|
-
DIRNAME_TEST("/usr/", "/");
|
124
|
-
DIRNAME_TEST("/usr/lib", "/usr");
|
125
|
-
DIRNAME_TEST("/usr/lib/", "/usr");
|
126
|
-
DIRNAME_TEST("/usr/lib//", "/usr");
|
127
|
-
DIRNAME_TEST("usr/lib", "usr");
|
128
|
-
DIRNAME_TEST("usr/lib/", "usr");
|
129
|
-
DIRNAME_TEST("usr/lib//", "usr");
|
130
|
-
DIRNAME_TEST(".git/", ".");
|
131
|
-
|
132
|
-
#undef DIRNAME_TEST
|
133
|
-
|
134
|
-
END_TEST
|
135
|
-
|
136
|
-
BEGIN_TEST(path1, "get the base name of a path")
|
137
|
-
char base[64], *base2;
|
138
|
-
|
139
|
-
#define BASENAME_TEST(A, B) { \
|
140
|
-
must_be_true(git_path_basename_r(base, sizeof(base), A) >= 0); \
|
141
|
-
must_be_true(strcmp(base, B) == 0); \
|
142
|
-
must_be_true((base2 = git_path_basename(A)) != NULL); \
|
143
|
-
must_be_true(strcmp(base2, B) == 0); \
|
144
|
-
git__free(base2); \
|
145
|
-
}
|
146
|
-
|
147
|
-
BASENAME_TEST(NULL, ".");
|
148
|
-
BASENAME_TEST("", ".");
|
149
|
-
BASENAME_TEST("a", "a");
|
150
|
-
BASENAME_TEST("/", "/");
|
151
|
-
BASENAME_TEST("/usr", "usr");
|
152
|
-
BASENAME_TEST("/usr/", "usr");
|
153
|
-
BASENAME_TEST("/usr/lib", "lib");
|
154
|
-
BASENAME_TEST("/usr/lib//", "lib");
|
155
|
-
BASENAME_TEST("usr/lib", "lib");
|
156
|
-
|
157
|
-
#undef BASENAME_TEST
|
158
|
-
|
159
|
-
END_TEST
|
160
|
-
|
161
|
-
BEGIN_TEST(path2, "get the latest component in a path")
|
162
|
-
const char *dir;
|
163
|
-
|
164
|
-
#define TOPDIR_TEST(A, B) { \
|
165
|
-
must_be_true((dir = git_path_topdir(A)) != NULL); \
|
166
|
-
must_be_true(strcmp(dir, B) == 0); \
|
167
|
-
}
|
168
|
-
|
169
|
-
TOPDIR_TEST(".git/", ".git/");
|
170
|
-
TOPDIR_TEST("/.git/", ".git/");
|
171
|
-
TOPDIR_TEST("usr/local/.git/", ".git/");
|
172
|
-
TOPDIR_TEST("./.git/", ".git/");
|
173
|
-
TOPDIR_TEST("/usr/.git/", ".git/");
|
174
|
-
TOPDIR_TEST("/", "/");
|
175
|
-
TOPDIR_TEST("a/", "a/");
|
176
|
-
|
177
|
-
must_be_true(git_path_topdir("/usr/.git") == NULL);
|
178
|
-
must_be_true(git_path_topdir(".") == NULL);
|
179
|
-
must_be_true(git_path_topdir("") == NULL);
|
180
|
-
must_be_true(git_path_topdir("a") == NULL);
|
181
|
-
|
182
|
-
#undef TOPDIR_TEST
|
183
|
-
END_TEST
|
184
|
-
|
185
|
-
static int ensure_joinpath(const char *path_a, const char *path_b, const char *expected_path)
|
186
|
-
{
|
187
|
-
char joined_path[GIT_PATH_MAX];
|
188
|
-
git_path_join(joined_path, path_a, path_b);
|
189
|
-
return strcmp(joined_path, expected_path) == 0 ? GIT_SUCCESS : GIT_ERROR;
|
190
|
-
}
|
191
|
-
|
192
|
-
BEGIN_TEST(path5, "properly join path components")
|
193
|
-
must_pass(ensure_joinpath("", "", ""));
|
194
|
-
must_pass(ensure_joinpath("", "a", "a"));
|
195
|
-
must_pass(ensure_joinpath("", "/a", "/a"));
|
196
|
-
must_pass(ensure_joinpath("a", "", "a/"));
|
197
|
-
must_pass(ensure_joinpath("a", "/", "a/"));
|
198
|
-
must_pass(ensure_joinpath("a", "b", "a/b"));
|
199
|
-
must_pass(ensure_joinpath("/", "a", "/a"));
|
200
|
-
must_pass(ensure_joinpath("/", "", "/"));
|
201
|
-
must_pass(ensure_joinpath("/a", "/b", "/a/b"));
|
202
|
-
must_pass(ensure_joinpath("/a", "/b/", "/a/b/"));
|
203
|
-
must_pass(ensure_joinpath("/a/", "b/", "/a/b/"));
|
204
|
-
must_pass(ensure_joinpath("/a/", "/b/", "/a/b/"));
|
205
|
-
END_TEST
|
206
|
-
|
207
|
-
static int ensure_joinpath_n(const char *path_a, const char *path_b, const char *path_c, const char *path_d, const char *expected_path)
|
208
|
-
{
|
209
|
-
char joined_path[GIT_PATH_MAX];
|
210
|
-
git_path_join_n(joined_path, 4, path_a, path_b, path_c, path_d);
|
211
|
-
return strcmp(joined_path, expected_path) == 0 ? GIT_SUCCESS : GIT_ERROR;
|
212
|
-
}
|
213
|
-
|
214
|
-
BEGIN_TEST(path6, "properly join path components for more than one path")
|
215
|
-
must_pass(ensure_joinpath_n("", "", "", "", ""));
|
216
|
-
must_pass(ensure_joinpath_n("", "a", "", "", "a/"));
|
217
|
-
must_pass(ensure_joinpath_n("a", "", "", "", "a/"));
|
218
|
-
must_pass(ensure_joinpath_n("", "", "", "a", "a"));
|
219
|
-
must_pass(ensure_joinpath_n("a", "b", "", "/c/d/", "a/b/c/d/"));
|
220
|
-
must_pass(ensure_joinpath_n("a", "b", "", "/c/d", "a/b/c/d"));
|
221
|
-
END_TEST
|
222
|
-
|
223
|
-
typedef struct name_data {
|
224
|
-
int count; /* return count */
|
225
|
-
char *name; /* filename */
|
226
|
-
} name_data;
|
227
|
-
|
228
|
-
typedef struct walk_data {
|
229
|
-
char *sub; /* sub-directory name */
|
230
|
-
name_data *names; /* name state data */
|
231
|
-
} walk_data;
|
232
|
-
|
233
|
-
|
234
|
-
static char path_buffer[GIT_PATH_MAX];
|
235
|
-
static char *top_dir = "dir-walk";
|
236
|
-
static walk_data *state_loc;
|
237
|
-
|
238
|
-
static int error(const char *fmt, ...)
|
239
|
-
{
|
240
|
-
va_list ap;
|
241
|
-
|
242
|
-
va_start(ap, fmt);
|
243
|
-
vfprintf(stderr, fmt, ap);
|
244
|
-
va_end(ap);
|
245
|
-
fprintf(stderr, "\n");
|
246
|
-
return -1;
|
247
|
-
}
|
248
|
-
|
249
|
-
static int setup(walk_data *d)
|
250
|
-
{
|
251
|
-
name_data *n;
|
252
|
-
|
253
|
-
if (p_mkdir(top_dir, 0777) < 0)
|
254
|
-
return error("can't mkdir(\"%s\")", top_dir);
|
255
|
-
|
256
|
-
if (p_chdir(top_dir) < 0)
|
257
|
-
return error("can't chdir(\"%s\")", top_dir);
|
258
|
-
|
259
|
-
if (strcmp(d->sub, ".") != 0)
|
260
|
-
if (p_mkdir(d->sub, 0777) < 0)
|
261
|
-
return error("can't mkdir(\"%s\")", d->sub);
|
262
|
-
|
263
|
-
strcpy(path_buffer, d->sub);
|
264
|
-
state_loc = d;
|
265
|
-
|
266
|
-
for (n = d->names; n->name; n++) {
|
267
|
-
git_file fd = p_creat(n->name, 0666);
|
268
|
-
if (fd < 0)
|
269
|
-
return GIT_ERROR;
|
270
|
-
p_close(fd);
|
271
|
-
n->count = 0;
|
272
|
-
}
|
273
|
-
|
274
|
-
return 0;
|
275
|
-
}
|
276
|
-
|
277
|
-
static int knockdown(walk_data *d)
|
278
|
-
{
|
279
|
-
name_data *n;
|
280
|
-
|
281
|
-
for (n = d->names; n->name; n++) {
|
282
|
-
if (p_unlink(n->name) < 0)
|
283
|
-
return error("can't unlink(\"%s\")", n->name);
|
284
|
-
}
|
285
|
-
|
286
|
-
if (strcmp(d->sub, ".") != 0)
|
287
|
-
if (p_rmdir(d->sub) < 0)
|
288
|
-
return error("can't rmdir(\"%s\")", d->sub);
|
289
|
-
|
290
|
-
if (p_chdir("..") < 0)
|
291
|
-
return error("can't chdir(\"..\")");
|
292
|
-
|
293
|
-
if (p_rmdir(top_dir) < 0)
|
294
|
-
return error("can't rmdir(\"%s\")", top_dir);
|
295
|
-
|
296
|
-
return 0;
|
297
|
-
}
|
298
|
-
|
299
|
-
static int check_counts(walk_data *d)
|
300
|
-
{
|
301
|
-
int ret = 0;
|
302
|
-
name_data *n;
|
303
|
-
|
304
|
-
for (n = d->names; n->name; n++) {
|
305
|
-
if (n->count != 1)
|
306
|
-
ret = error("count (%d, %s)", n->count, n->name);
|
307
|
-
}
|
308
|
-
return ret;
|
309
|
-
}
|
310
|
-
|
311
|
-
static int one_entry(void *state, char *path)
|
312
|
-
{
|
313
|
-
walk_data *d = (walk_data *) state;
|
314
|
-
name_data *n;
|
315
|
-
|
316
|
-
if (state != state_loc)
|
317
|
-
return GIT_ERROR;
|
318
|
-
|
319
|
-
if (path != path_buffer)
|
320
|
-
return GIT_ERROR;
|
321
|
-
|
322
|
-
for (n = d->names; n->name; n++) {
|
323
|
-
if (!strcmp(n->name, path)) {
|
324
|
-
n->count++;
|
325
|
-
return 0;
|
326
|
-
}
|
327
|
-
}
|
328
|
-
|
329
|
-
return GIT_ERROR;
|
330
|
-
}
|
331
|
-
|
332
|
-
|
333
|
-
static name_data dot_names[] = {
|
334
|
-
{ 0, "./a" },
|
335
|
-
{ 0, "./asdf" },
|
336
|
-
{ 0, "./pack-foo.pack" },
|
337
|
-
{ 0, NULL }
|
338
|
-
};
|
339
|
-
static walk_data dot = {
|
340
|
-
".",
|
341
|
-
dot_names
|
342
|
-
};
|
343
|
-
|
344
|
-
BEGIN_TEST(dirent0, "make sure that the '.' folder is not traversed")
|
345
|
-
|
346
|
-
must_pass(setup(&dot));
|
347
|
-
|
348
|
-
must_pass(git_futils_direach(path_buffer,
|
349
|
-
sizeof(path_buffer),
|
350
|
-
one_entry,
|
351
|
-
&dot));
|
352
|
-
|
353
|
-
must_pass(check_counts(&dot));
|
354
|
-
|
355
|
-
must_pass(knockdown(&dot));
|
356
|
-
END_TEST
|
357
|
-
|
358
|
-
static name_data sub_names[] = {
|
359
|
-
{ 0, "sub/a" },
|
360
|
-
{ 0, "sub/asdf" },
|
361
|
-
{ 0, "sub/pack-foo.pack" },
|
362
|
-
{ 0, NULL }
|
363
|
-
};
|
364
|
-
static walk_data sub = {
|
365
|
-
"sub",
|
366
|
-
sub_names
|
367
|
-
};
|
368
|
-
|
369
|
-
BEGIN_TEST(dirent1, "traverse a subfolder")
|
370
|
-
|
371
|
-
must_pass(setup(&sub));
|
372
|
-
|
373
|
-
must_pass(git_futils_direach(path_buffer,
|
374
|
-
sizeof(path_buffer),
|
375
|
-
one_entry,
|
376
|
-
&sub));
|
377
|
-
|
378
|
-
must_pass(check_counts(&sub));
|
379
|
-
|
380
|
-
must_pass(knockdown(&sub));
|
381
|
-
END_TEST
|
382
|
-
|
383
|
-
static walk_data sub_slash = {
|
384
|
-
"sub/",
|
385
|
-
sub_names
|
386
|
-
};
|
387
|
-
|
388
|
-
BEGIN_TEST(dirent2, "traverse a slash-terminated subfolder")
|
389
|
-
|
390
|
-
must_pass(setup(&sub_slash));
|
391
|
-
|
392
|
-
must_pass(git_futils_direach(path_buffer,
|
393
|
-
sizeof(path_buffer),
|
394
|
-
one_entry,
|
395
|
-
&sub_slash));
|
396
|
-
|
397
|
-
must_pass(check_counts(&sub_slash));
|
398
|
-
|
399
|
-
must_pass(knockdown(&sub_slash));
|
400
|
-
END_TEST
|
401
|
-
|
402
|
-
static name_data empty_names[] = {
|
403
|
-
{ 0, NULL }
|
404
|
-
};
|
405
|
-
static walk_data empty = {
|
406
|
-
"empty",
|
407
|
-
empty_names
|
408
|
-
};
|
409
|
-
|
410
|
-
static int dont_call_me(void *GIT_UNUSED(state), char *GIT_UNUSED(path))
|
411
|
-
{
|
412
|
-
GIT_UNUSED_ARG(state)
|
413
|
-
GIT_UNUSED_ARG(path)
|
414
|
-
return GIT_ERROR;
|
415
|
-
}
|
416
|
-
|
417
|
-
BEGIN_TEST(dirent3, "make sure that empty folders are not traversed")
|
418
|
-
|
419
|
-
must_pass(setup(&empty));
|
420
|
-
|
421
|
-
must_pass(git_futils_direach(path_buffer,
|
422
|
-
sizeof(path_buffer),
|
423
|
-
one_entry,
|
424
|
-
&empty));
|
425
|
-
|
426
|
-
must_pass(check_counts(&empty));
|
427
|
-
|
428
|
-
/* make sure callback not called */
|
429
|
-
must_pass(git_futils_direach(path_buffer,
|
430
|
-
sizeof(path_buffer),
|
431
|
-
dont_call_me,
|
432
|
-
&empty));
|
433
|
-
|
434
|
-
must_pass(knockdown(&empty));
|
435
|
-
END_TEST
|
436
|
-
|
437
|
-
static name_data odd_names[] = {
|
438
|
-
{ 0, "odd/.a" },
|
439
|
-
{ 0, "odd/..c" },
|
440
|
-
/* the following don't work on cygwin/win32 */
|
441
|
-
/* { 0, "odd/.b." }, */
|
442
|
-
/* { 0, "odd/..d.." }, */
|
443
|
-
{ 0, NULL }
|
444
|
-
};
|
445
|
-
static walk_data odd = {
|
446
|
-
"odd",
|
447
|
-
odd_names
|
448
|
-
};
|
449
|
-
|
450
|
-
BEGIN_TEST(dirent4, "make sure that strange looking filenames ('..c') are traversed")
|
451
|
-
|
452
|
-
must_pass(setup(&odd));
|
453
|
-
|
454
|
-
must_pass(git_futils_direach(path_buffer,
|
455
|
-
sizeof(path_buffer),
|
456
|
-
one_entry,
|
457
|
-
&odd));
|
458
|
-
|
459
|
-
must_pass(check_counts(&odd));
|
460
|
-
|
461
|
-
must_pass(knockdown(&odd));
|
462
|
-
END_TEST
|
463
|
-
|
464
|
-
BEGIN_TEST(filebuf0, "make sure git_filebuf_open doesn't delete an existing lock")
|
465
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
466
|
-
int fd;
|
467
|
-
char test[] = "test", testlock[] = "test.lock";
|
468
|
-
|
469
|
-
fd = p_creat(testlock, 0744);
|
470
|
-
must_pass(fd);
|
471
|
-
must_pass(p_close(fd));
|
472
|
-
must_fail(git_filebuf_open(&file, test, 0));
|
473
|
-
must_pass(git_futils_exists(testlock));
|
474
|
-
must_pass(p_unlink(testlock));
|
475
|
-
END_TEST
|
476
|
-
|
477
|
-
BEGIN_TEST(filebuf1, "make sure GIT_FILEBUF_APPEND works as expected")
|
478
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
479
|
-
int fd;
|
480
|
-
char test[] = "test";
|
481
|
-
|
482
|
-
fd = p_creat(test, 0666);
|
483
|
-
must_pass(fd);
|
484
|
-
must_pass(p_write(fd, "libgit2 rocks\n", 14));
|
485
|
-
must_pass(p_close(fd));
|
486
|
-
|
487
|
-
must_pass(git_filebuf_open(&file, test, GIT_FILEBUF_APPEND));
|
488
|
-
must_pass(git_filebuf_printf(&file, "%s\n", "libgit2 rocks"));
|
489
|
-
must_pass(git_filebuf_commit(&file, 0666));
|
490
|
-
|
491
|
-
must_pass(p_unlink(test));
|
492
|
-
END_TEST
|
493
|
-
|
494
|
-
BEGIN_TEST(filebuf2, "make sure git_filebuf_write writes large buffer correctly")
|
495
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
496
|
-
char test[] = "test";
|
497
|
-
unsigned char buf[4096 * 4]; /* 2 * WRITE_BUFFER_SIZE */
|
498
|
-
|
499
|
-
memset(buf, 0xfe, sizeof(buf));
|
500
|
-
must_pass(git_filebuf_open(&file, test, 0));
|
501
|
-
must_pass(git_filebuf_write(&file, buf, sizeof(buf)));
|
502
|
-
must_pass(git_filebuf_commit(&file, 0666));
|
503
|
-
|
504
|
-
must_pass(p_unlink(test));
|
505
|
-
END_TEST
|
506
|
-
|
507
|
-
static char *empty_tmp_dir = "test_gitfo_rmdir_recurs_test";
|
508
|
-
|
509
|
-
static int setup_empty_tmp_dir(void)
|
510
|
-
{
|
511
|
-
char path[GIT_PATH_MAX];
|
512
|
-
|
513
|
-
if (p_mkdir(empty_tmp_dir, 0777))
|
514
|
-
return -1;
|
515
|
-
|
516
|
-
git_path_join(path, empty_tmp_dir, "/one");
|
517
|
-
if (p_mkdir(path, 0777))
|
518
|
-
return -1;
|
519
|
-
|
520
|
-
git_path_join(path, empty_tmp_dir, "/one/two_one");
|
521
|
-
if (p_mkdir(path, 0777))
|
522
|
-
return -1;
|
523
|
-
|
524
|
-
git_path_join(path, empty_tmp_dir, "/one/two_two");
|
525
|
-
if (p_mkdir(path, 0777))
|
526
|
-
return -1;
|
527
|
-
|
528
|
-
git_path_join(path, empty_tmp_dir, "/one/two_two/three");
|
529
|
-
if (p_mkdir(path, 0777))
|
530
|
-
return -1;
|
531
|
-
|
532
|
-
git_path_join(path, empty_tmp_dir, "/two");
|
533
|
-
if (p_mkdir(path, 0777))
|
534
|
-
return -1;
|
535
|
-
|
536
|
-
return 0;
|
537
|
-
}
|
538
|
-
|
539
|
-
BEGIN_TEST(rmdir0, "make sure empty dir can be deleted recusively")
|
540
|
-
must_pass(setup_empty_tmp_dir());
|
541
|
-
must_pass(git_futils_rmdir_r(empty_tmp_dir, 0));
|
542
|
-
END_TEST
|
543
|
-
|
544
|
-
BEGIN_TEST(rmdir1, "make sure non-empty dir cannot be deleted recusively")
|
545
|
-
char file[GIT_PATH_MAX];
|
546
|
-
int fd;
|
547
|
-
|
548
|
-
must_pass(setup_empty_tmp_dir());
|
549
|
-
git_path_join(file, empty_tmp_dir, "/two/file.txt");
|
550
|
-
fd = p_creat(file, 0777);
|
551
|
-
must_pass(fd);
|
552
|
-
must_pass(p_close(fd));
|
553
|
-
must_fail(git_futils_rmdir_r(empty_tmp_dir, 0));
|
554
|
-
must_pass(p_unlink(file));
|
555
|
-
must_pass(git_futils_rmdir_r(empty_tmp_dir, 0));
|
556
|
-
END_TEST
|
557
|
-
|
558
|
-
BEGIN_TEST(strtol0, "parsing out 32 integers from a string")
|
559
|
-
int32_t i;
|
560
|
-
|
561
|
-
must_pass(git__strtol32(&i, "123", NULL, 10));
|
562
|
-
must_be_true(i == 123);
|
563
|
-
|
564
|
-
must_pass(git__strtol32(&i, " +123 ", NULL, 10));
|
565
|
-
must_be_true(i == 123);
|
566
|
-
|
567
|
-
must_pass(git__strtol32(&i, " +2147483647 ", NULL, 10));
|
568
|
-
must_be_true(i == 2147483647);
|
569
|
-
|
570
|
-
must_pass(git__strtol32(&i, " -2147483648 ", NULL, 10));
|
571
|
-
must_be_true(i == -2147483648LL);
|
572
|
-
|
573
|
-
must_fail(git__strtol32(&i, " 2147483657 ", NULL, 10));
|
574
|
-
must_fail(git__strtol32(&i, " -2147483657 ", NULL, 10));
|
575
|
-
END_TEST
|
576
|
-
|
577
|
-
BEGIN_TEST(strtol1, "parsing out 64 integers from a string")
|
578
|
-
int64_t i;
|
579
|
-
|
580
|
-
must_pass(git__strtol64(&i, "123", NULL, 10));
|
581
|
-
must_be_true(i == 123);
|
582
|
-
|
583
|
-
must_pass(git__strtol64(&i, " +123 ", NULL, 10));
|
584
|
-
must_be_true(i == 123);
|
585
|
-
|
586
|
-
must_pass(git__strtol64(&i, " +2147483647 ", NULL, 10));
|
587
|
-
must_be_true(i == 2147483647);
|
588
|
-
|
589
|
-
must_pass(git__strtol64(&i, " -2147483648 ", NULL, 10));
|
590
|
-
must_be_true(i == -2147483648LL);
|
591
|
-
|
592
|
-
must_pass(git__strtol64(&i, " 2147483657 ", NULL, 10));
|
593
|
-
must_be_true(i == 2147483657LL);
|
594
|
-
|
595
|
-
must_pass(git__strtol64(&i, " -2147483657 ", NULL, 10));
|
596
|
-
must_be_true(i == -2147483657LL);
|
597
|
-
END_TEST
|
598
|
-
|
599
|
-
BEGIN_SUITE(core)
|
600
|
-
ADD_TEST(string0);
|
601
|
-
ADD_TEST(string1);
|
602
|
-
|
603
|
-
ADD_TEST(vector0);
|
604
|
-
ADD_TEST(vector1);
|
605
|
-
ADD_TEST(vector2);
|
606
|
-
|
607
|
-
ADD_TEST(path0);
|
608
|
-
ADD_TEST(path1);
|
609
|
-
ADD_TEST(path2);
|
610
|
-
ADD_TEST(path5);
|
611
|
-
ADD_TEST(path6);
|
612
|
-
|
613
|
-
ADD_TEST(dirent0);
|
614
|
-
ADD_TEST(dirent1);
|
615
|
-
ADD_TEST(dirent2);
|
616
|
-
ADD_TEST(dirent3);
|
617
|
-
ADD_TEST(dirent4);
|
618
|
-
|
619
|
-
ADD_TEST(filebuf0);
|
620
|
-
ADD_TEST(filebuf1);
|
621
|
-
ADD_TEST(filebuf2);
|
622
|
-
|
623
|
-
ADD_TEST(rmdir0);
|
624
|
-
ADD_TEST(rmdir1);
|
625
|
-
|
626
|
-
ADD_TEST(strtol0);
|
627
|
-
ADD_TEST(strtol1);
|
628
|
-
END_SUITE
|