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
@@ -0,0 +1,455 @@
|
|
1
|
+
|
2
|
+
#include "clar_libgit2.h"
|
3
|
+
#include "fileops.h"
|
4
|
+
#include "odb.h"
|
5
|
+
|
6
|
+
typedef struct object_data {
|
7
|
+
char *id; /* object id (sha1) */
|
8
|
+
char *dir; /* object store (fan-out) directory name */
|
9
|
+
char *file; /* object store filename */
|
10
|
+
} object_data;
|
11
|
+
|
12
|
+
static const char *odb_dir = "test-objects";
|
13
|
+
|
14
|
+
void test_body(object_data *d, git_rawobj *o);
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
// Helpers
|
19
|
+
static void remove_object_files(object_data *d)
|
20
|
+
{
|
21
|
+
cl_git_pass(p_unlink(d->file));
|
22
|
+
cl_git_pass(p_rmdir(d->dir));
|
23
|
+
cl_assert(errno != ENOTEMPTY);
|
24
|
+
cl_git_pass(p_rmdir(odb_dir) < 0);
|
25
|
+
}
|
26
|
+
|
27
|
+
static void streaming_write(git_oid *oid, git_odb *odb, git_rawobj *raw)
|
28
|
+
{
|
29
|
+
git_odb_stream *stream;
|
30
|
+
int error;
|
31
|
+
|
32
|
+
cl_git_pass(git_odb_open_wstream(&stream, odb, raw->len, raw->type));
|
33
|
+
stream->write(stream, raw->data, raw->len);
|
34
|
+
error = stream->finalize_write(oid, stream);
|
35
|
+
stream->free(stream);
|
36
|
+
cl_git_pass(error);
|
37
|
+
}
|
38
|
+
|
39
|
+
static void check_object_files(object_data *d)
|
40
|
+
{
|
41
|
+
cl_assert(git_path_exists(d->dir));
|
42
|
+
cl_assert(git_path_exists(d->file));
|
43
|
+
}
|
44
|
+
|
45
|
+
static void cmp_objects(git_rawobj *o1, git_rawobj *o2)
|
46
|
+
{
|
47
|
+
cl_assert(o1->type == o2->type);
|
48
|
+
cl_assert(o1->len == o2->len);
|
49
|
+
if (o1->len > 0)
|
50
|
+
cl_assert(memcmp(o1->data, o2->data, o1->len) == 0);
|
51
|
+
}
|
52
|
+
|
53
|
+
static void make_odb_dir(void)
|
54
|
+
{
|
55
|
+
cl_git_pass(p_mkdir(odb_dir, GIT_OBJECT_DIR_MODE));
|
56
|
+
}
|
57
|
+
|
58
|
+
|
59
|
+
// Standard test form
|
60
|
+
void test_body(object_data *d, git_rawobj *o)
|
61
|
+
{
|
62
|
+
git_odb *db;
|
63
|
+
git_oid id1, id2;
|
64
|
+
git_odb_object *obj;
|
65
|
+
|
66
|
+
make_odb_dir();
|
67
|
+
cl_git_pass(git_odb_open(&db, odb_dir));
|
68
|
+
cl_git_pass(git_oid_fromstr(&id1, d->id));
|
69
|
+
|
70
|
+
streaming_write(&id2, db, o);
|
71
|
+
cl_assert(git_oid_cmp(&id1, &id2) == 0);
|
72
|
+
check_object_files(d);
|
73
|
+
|
74
|
+
cl_git_pass(git_odb_read(&obj, db, &id1));
|
75
|
+
cmp_objects(&obj->raw, o);
|
76
|
+
|
77
|
+
git_odb_object_free(obj);
|
78
|
+
git_odb_free(db);
|
79
|
+
remove_object_files(d);
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
void test_object_raw_write__loose_object(void)
|
84
|
+
{
|
85
|
+
object_data commit = {
|
86
|
+
"3d7f8a6af076c8c3f20071a8935cdbe8228594d1",
|
87
|
+
"test-objects/3d",
|
88
|
+
"test-objects/3d/7f8a6af076c8c3f20071a8935cdbe8228594d1",
|
89
|
+
};
|
90
|
+
|
91
|
+
unsigned char commit_data[] = {
|
92
|
+
0x74, 0x72, 0x65, 0x65, 0x20, 0x64, 0x66, 0x66,
|
93
|
+
0x32, 0x64, 0x61, 0x39, 0x30, 0x62, 0x32, 0x35,
|
94
|
+
0x34, 0x65, 0x31, 0x62, 0x65, 0x62, 0x38, 0x38,
|
95
|
+
0x39, 0x64, 0x31, 0x66, 0x31, 0x66, 0x31, 0x32,
|
96
|
+
0x38, 0x38, 0x62, 0x65, 0x31, 0x38, 0x30, 0x33,
|
97
|
+
0x37, 0x38, 0x32, 0x64, 0x66, 0x0a, 0x61, 0x75,
|
98
|
+
0x74, 0x68, 0x6f, 0x72, 0x20, 0x41, 0x20, 0x55,
|
99
|
+
0x20, 0x54, 0x68, 0x6f, 0x72, 0x20, 0x3c, 0x61,
|
100
|
+
0x75, 0x74, 0x68, 0x6f, 0x72, 0x40, 0x65, 0x78,
|
101
|
+
0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f,
|
102
|
+
0x6d, 0x3e, 0x20, 0x31, 0x32, 0x32, 0x37, 0x38,
|
103
|
+
0x31, 0x34, 0x32, 0x39, 0x37, 0x20, 0x2b, 0x30,
|
104
|
+
0x30, 0x30, 0x30, 0x0a, 0x63, 0x6f, 0x6d, 0x6d,
|
105
|
+
0x69, 0x74, 0x74, 0x65, 0x72, 0x20, 0x43, 0x20,
|
106
|
+
0x4f, 0x20, 0x4d, 0x69, 0x74, 0x74, 0x65, 0x72,
|
107
|
+
0x20, 0x3c, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
|
108
|
+
0x74, 0x65, 0x72, 0x40, 0x65, 0x78, 0x61, 0x6d,
|
109
|
+
0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x3e,
|
110
|
+
0x20, 0x31, 0x32, 0x32, 0x37, 0x38, 0x31, 0x34,
|
111
|
+
0x32, 0x39, 0x37, 0x20, 0x2b, 0x30, 0x30, 0x30,
|
112
|
+
0x30, 0x0a, 0x0a, 0x41, 0x20, 0x6f, 0x6e, 0x65,
|
113
|
+
0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x63, 0x6f,
|
114
|
+
0x6d, 0x6d, 0x69, 0x74, 0x20, 0x73, 0x75, 0x6d,
|
115
|
+
0x6d, 0x61, 0x72, 0x79, 0x0a, 0x0a, 0x54, 0x68,
|
116
|
+
0x65, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x6f,
|
117
|
+
0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f,
|
118
|
+
0x6d, 0x6d, 0x69, 0x74, 0x20, 0x6d, 0x65, 0x73,
|
119
|
+
0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x63, 0x6f,
|
120
|
+
0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67,
|
121
|
+
0x20, 0x66, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72,
|
122
|
+
0x20, 0x65, 0x78, 0x70, 0x6c, 0x61, 0x6e, 0x61,
|
123
|
+
0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x6f, 0x66, 0x20,
|
124
|
+
0x74, 0x68, 0x65, 0x20, 0x70, 0x75, 0x72, 0x70,
|
125
|
+
0x6f, 0x73, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74,
|
126
|
+
0x68, 0x65, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67,
|
127
|
+
0x65, 0x73, 0x20, 0x69, 0x6e, 0x74, 0x72, 0x6f,
|
128
|
+
0x64, 0x75, 0x63, 0x65, 0x64, 0x20, 0x62, 0x79,
|
129
|
+
0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6d,
|
130
|
+
0x6d, 0x69, 0x74, 0x2e, 0x0a, 0x0a, 0x53, 0x69,
|
131
|
+
0x67, 0x6e, 0x65, 0x64, 0x2d, 0x6f, 0x66, 0x2d,
|
132
|
+
0x62, 0x79, 0x3a, 0x20, 0x41, 0x20, 0x55, 0x20,
|
133
|
+
0x54, 0x68, 0x6f, 0x72, 0x20, 0x3c, 0x61, 0x75,
|
134
|
+
0x74, 0x68, 0x6f, 0x72, 0x40, 0x65, 0x78, 0x61,
|
135
|
+
0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d,
|
136
|
+
0x3e, 0x0a,
|
137
|
+
};
|
138
|
+
|
139
|
+
git_rawobj commit_obj = {
|
140
|
+
commit_data,
|
141
|
+
sizeof(commit_data),
|
142
|
+
GIT_OBJ_COMMIT
|
143
|
+
};
|
144
|
+
|
145
|
+
test_body(&commit, &commit_obj);
|
146
|
+
}
|
147
|
+
|
148
|
+
void test_object_raw_write__loose_tree(void)
|
149
|
+
{
|
150
|
+
static object_data tree = {
|
151
|
+
"dff2da90b254e1beb889d1f1f1288be1803782df",
|
152
|
+
"test-objects/df",
|
153
|
+
"test-objects/df/f2da90b254e1beb889d1f1f1288be1803782df",
|
154
|
+
};
|
155
|
+
|
156
|
+
static unsigned char tree_data[] = {
|
157
|
+
0x31, 0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x6f,
|
158
|
+
0x6e, 0x65, 0x00, 0x8b, 0x13, 0x78, 0x91, 0x79,
|
159
|
+
0x1f, 0xe9, 0x69, 0x27, 0xad, 0x78, 0xe6, 0x4b,
|
160
|
+
0x0a, 0xad, 0x7b, 0xde, 0xd0, 0x8b, 0xdc, 0x31,
|
161
|
+
0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x73, 0x6f,
|
162
|
+
0x6d, 0x65, 0x00, 0xfd, 0x84, 0x30, 0xbc, 0x86,
|
163
|
+
0x4c, 0xfc, 0xd5, 0xf1, 0x0e, 0x55, 0x90, 0xf8,
|
164
|
+
0xa4, 0x47, 0xe0, 0x1b, 0x94, 0x2b, 0xfe, 0x31,
|
165
|
+
0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x74, 0x77,
|
166
|
+
0x6f, 0x00, 0x78, 0x98, 0x19, 0x22, 0x61, 0x3b,
|
167
|
+
0x2a, 0xfb, 0x60, 0x25, 0x04, 0x2f, 0xf6, 0xbd,
|
168
|
+
0x87, 0x8a, 0xc1, 0x99, 0x4e, 0x85, 0x31, 0x30,
|
169
|
+
0x30, 0x36, 0x34, 0x34, 0x20, 0x7a, 0x65, 0x72,
|
170
|
+
0x6f, 0x00, 0xe6, 0x9d, 0xe2, 0x9b, 0xb2, 0xd1,
|
171
|
+
0xd6, 0x43, 0x4b, 0x8b, 0x29, 0xae, 0x77, 0x5a,
|
172
|
+
0xd8, 0xc2, 0xe4, 0x8c, 0x53, 0x91,
|
173
|
+
};
|
174
|
+
|
175
|
+
static git_rawobj tree_obj = {
|
176
|
+
tree_data,
|
177
|
+
sizeof(tree_data),
|
178
|
+
GIT_OBJ_TREE
|
179
|
+
};
|
180
|
+
|
181
|
+
test_body(&tree, &tree_obj);
|
182
|
+
}
|
183
|
+
|
184
|
+
void test_object_raw_write__loose_tag(void)
|
185
|
+
{
|
186
|
+
static object_data tag = {
|
187
|
+
"09d373e1dfdc16b129ceec6dd649739911541e05",
|
188
|
+
"test-objects/09",
|
189
|
+
"test-objects/09/d373e1dfdc16b129ceec6dd649739911541e05",
|
190
|
+
};
|
191
|
+
|
192
|
+
static unsigned char tag_data[] = {
|
193
|
+
0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x33,
|
194
|
+
0x64, 0x37, 0x66, 0x38, 0x61, 0x36, 0x61, 0x66,
|
195
|
+
0x30, 0x37, 0x36, 0x63, 0x38, 0x63, 0x33, 0x66,
|
196
|
+
0x32, 0x30, 0x30, 0x37, 0x31, 0x61, 0x38, 0x39,
|
197
|
+
0x33, 0x35, 0x63, 0x64, 0x62, 0x65, 0x38, 0x32,
|
198
|
+
0x32, 0x38, 0x35, 0x39, 0x34, 0x64, 0x31, 0x0a,
|
199
|
+
0x74, 0x79, 0x70, 0x65, 0x20, 0x63, 0x6f, 0x6d,
|
200
|
+
0x6d, 0x69, 0x74, 0x0a, 0x74, 0x61, 0x67, 0x20,
|
201
|
+
0x76, 0x30, 0x2e, 0x30, 0x2e, 0x31, 0x0a, 0x74,
|
202
|
+
0x61, 0x67, 0x67, 0x65, 0x72, 0x20, 0x43, 0x20,
|
203
|
+
0x4f, 0x20, 0x4d, 0x69, 0x74, 0x74, 0x65, 0x72,
|
204
|
+
0x20, 0x3c, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
|
205
|
+
0x74, 0x65, 0x72, 0x40, 0x65, 0x78, 0x61, 0x6d,
|
206
|
+
0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x3e,
|
207
|
+
0x20, 0x31, 0x32, 0x32, 0x37, 0x38, 0x31, 0x34,
|
208
|
+
0x32, 0x39, 0x37, 0x20, 0x2b, 0x30, 0x30, 0x30,
|
209
|
+
0x30, 0x0a, 0x0a, 0x54, 0x68, 0x69, 0x73, 0x20,
|
210
|
+
0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74,
|
211
|
+
0x61, 0x67, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63,
|
212
|
+
0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65,
|
213
|
+
0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x76, 0x30,
|
214
|
+
0x2e, 0x30, 0x2e, 0x31, 0x0a,
|
215
|
+
};
|
216
|
+
|
217
|
+
static git_rawobj tag_obj = {
|
218
|
+
tag_data,
|
219
|
+
sizeof(tag_data),
|
220
|
+
GIT_OBJ_TAG
|
221
|
+
};
|
222
|
+
|
223
|
+
|
224
|
+
test_body(&tag, &tag_obj);
|
225
|
+
}
|
226
|
+
|
227
|
+
void test_object_raw_write__zero_length(void)
|
228
|
+
{
|
229
|
+
static object_data zero = {
|
230
|
+
"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
231
|
+
"test-objects/e6",
|
232
|
+
"test-objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
233
|
+
};
|
234
|
+
|
235
|
+
static unsigned char zero_data[] = {
|
236
|
+
0x00 /* dummy data */
|
237
|
+
};
|
238
|
+
|
239
|
+
static git_rawobj zero_obj = {
|
240
|
+
zero_data,
|
241
|
+
0,
|
242
|
+
GIT_OBJ_BLOB
|
243
|
+
};
|
244
|
+
|
245
|
+
test_body(&zero, &zero_obj);
|
246
|
+
}
|
247
|
+
|
248
|
+
void test_object_raw_write__one_byte(void)
|
249
|
+
{
|
250
|
+
static object_data one = {
|
251
|
+
"8b137891791fe96927ad78e64b0aad7bded08bdc",
|
252
|
+
"test-objects/8b",
|
253
|
+
"test-objects/8b/137891791fe96927ad78e64b0aad7bded08bdc",
|
254
|
+
};
|
255
|
+
|
256
|
+
static unsigned char one_data[] = {
|
257
|
+
0x0a,
|
258
|
+
};
|
259
|
+
|
260
|
+
static git_rawobj one_obj = {
|
261
|
+
one_data,
|
262
|
+
sizeof(one_data),
|
263
|
+
GIT_OBJ_BLOB
|
264
|
+
};
|
265
|
+
|
266
|
+
test_body(&one, &one_obj);
|
267
|
+
}
|
268
|
+
|
269
|
+
void test_object_raw_write__two_byte(void)
|
270
|
+
{
|
271
|
+
static object_data two = {
|
272
|
+
"78981922613b2afb6025042ff6bd878ac1994e85",
|
273
|
+
"test-objects/78",
|
274
|
+
"test-objects/78/981922613b2afb6025042ff6bd878ac1994e85",
|
275
|
+
};
|
276
|
+
|
277
|
+
static unsigned char two_data[] = {
|
278
|
+
0x61, 0x0a,
|
279
|
+
};
|
280
|
+
|
281
|
+
static git_rawobj two_obj = {
|
282
|
+
two_data,
|
283
|
+
sizeof(two_data),
|
284
|
+
GIT_OBJ_BLOB
|
285
|
+
};
|
286
|
+
|
287
|
+
test_body(&two, &two_obj);
|
288
|
+
}
|
289
|
+
|
290
|
+
void test_object_raw_write__several_bytes(void)
|
291
|
+
{
|
292
|
+
static object_data some = {
|
293
|
+
"fd8430bc864cfcd5f10e5590f8a447e01b942bfe",
|
294
|
+
"test-objects/fd",
|
295
|
+
"test-objects/fd/8430bc864cfcd5f10e5590f8a447e01b942bfe",
|
296
|
+
};
|
297
|
+
|
298
|
+
static unsigned char some_data[] = {
|
299
|
+
0x2f, 0x2a, 0x0a, 0x20, 0x2a, 0x20, 0x54, 0x68,
|
300
|
+
0x69, 0x73, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20,
|
301
|
+
0x69, 0x73, 0x20, 0x66, 0x72, 0x65, 0x65, 0x20,
|
302
|
+
0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
303
|
+
0x3b, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x63, 0x61,
|
304
|
+
0x6e, 0x20, 0x72, 0x65, 0x64, 0x69, 0x73, 0x74,
|
305
|
+
0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x69,
|
306
|
+
0x74, 0x20, 0x61, 0x6e, 0x64, 0x2f, 0x6f, 0x72,
|
307
|
+
0x20, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x0a,
|
308
|
+
0x20, 0x2a, 0x20, 0x69, 0x74, 0x20, 0x75, 0x6e,
|
309
|
+
0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20,
|
310
|
+
0x74, 0x65, 0x72, 0x6d, 0x73, 0x20, 0x6f, 0x66,
|
311
|
+
0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e, 0x55,
|
312
|
+
0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
|
313
|
+
0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
|
314
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x2c,
|
315
|
+
0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
316
|
+
0x20, 0x32, 0x2c, 0x0a, 0x20, 0x2a, 0x20, 0x61,
|
317
|
+
0x73, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73,
|
318
|
+
0x68, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74,
|
319
|
+
0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
|
320
|
+
0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
321
|
+
0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
|
322
|
+
0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x20, 0x2a, 0x0a,
|
323
|
+
0x20, 0x2a, 0x20, 0x49, 0x6e, 0x20, 0x61, 0x64,
|
324
|
+
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74,
|
325
|
+
0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x65,
|
326
|
+
0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e,
|
327
|
+
0x73, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65,
|
328
|
+
0x20, 0x47, 0x4e, 0x55, 0x20, 0x47, 0x65, 0x6e,
|
329
|
+
0x65, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x75, 0x62,
|
330
|
+
0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69, 0x63, 0x65,
|
331
|
+
0x6e, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x2a, 0x20,
|
332
|
+
0x74, 0x68, 0x65, 0x20, 0x61, 0x75, 0x74, 0x68,
|
333
|
+
0x6f, 0x72, 0x73, 0x20, 0x67, 0x69, 0x76, 0x65,
|
334
|
+
0x20, 0x79, 0x6f, 0x75, 0x20, 0x75, 0x6e, 0x6c,
|
335
|
+
0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x20, 0x70,
|
336
|
+
0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
|
337
|
+
0x6e, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x69, 0x6e,
|
338
|
+
0x6b, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f,
|
339
|
+
0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x0a, 0x20,
|
340
|
+
0x2a, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
341
|
+
0x6e, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x69,
|
342
|
+
0x73, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x69,
|
343
|
+
0x6e, 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x6d, 0x62,
|
344
|
+
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
345
|
+
0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x6f, 0x74,
|
346
|
+
0x68, 0x65, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x67,
|
347
|
+
0x72, 0x61, 0x6d, 0x73, 0x2c, 0x0a, 0x20, 0x2a,
|
348
|
+
0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20,
|
349
|
+
0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
|
350
|
+
0x74, 0x65, 0x20, 0x74, 0x68, 0x6f, 0x73, 0x65,
|
351
|
+
0x20, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61,
|
352
|
+
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x77, 0x69,
|
353
|
+
0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x61, 0x6e,
|
354
|
+
0x79, 0x20, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69,
|
355
|
+
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x2a,
|
356
|
+
0x20, 0x63, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x20,
|
357
|
+
0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65,
|
358
|
+
0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x66, 0x20,
|
359
|
+
0x74, 0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c,
|
360
|
+
0x65, 0x2e, 0x20, 0x20, 0x28, 0x54, 0x68, 0x65,
|
361
|
+
0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
|
362
|
+
0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
|
363
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x0a,
|
364
|
+
0x20, 0x2a, 0x20, 0x72, 0x65, 0x73, 0x74, 0x72,
|
365
|
+
0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20,
|
366
|
+
0x64, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x79,
|
367
|
+
0x20, 0x69, 0x6e, 0x20, 0x6f, 0x74, 0x68, 0x65,
|
368
|
+
0x72, 0x20, 0x72, 0x65, 0x73, 0x70, 0x65, 0x63,
|
369
|
+
0x74, 0x73, 0x3b, 0x20, 0x66, 0x6f, 0x72, 0x20,
|
370
|
+
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c,
|
371
|
+
0x20, 0x74, 0x68, 0x65, 0x79, 0x20, 0x63, 0x6f,
|
372
|
+
0x76, 0x65, 0x72, 0x0a, 0x20, 0x2a, 0x20, 0x6d,
|
373
|
+
0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
|
374
|
+
0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x74,
|
375
|
+
0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2c,
|
376
|
+
0x20, 0x61, 0x6e, 0x64, 0x20, 0x64, 0x69, 0x73,
|
377
|
+
0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f,
|
378
|
+
0x6e, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x6e,
|
379
|
+
0x6f, 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x6b, 0x65,
|
380
|
+
0x64, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x0a, 0x20,
|
381
|
+
0x2a, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6d, 0x62,
|
382
|
+
0x69, 0x6e, 0x65, 0x64, 0x20, 0x65, 0x78, 0x65,
|
383
|
+
0x63, 0x75, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e,
|
384
|
+
0x29, 0x0a, 0x20, 0x2a, 0x0a, 0x20, 0x2a, 0x20,
|
385
|
+
0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c,
|
386
|
+
0x65, 0x20, 0x69, 0x73, 0x20, 0x64, 0x69, 0x73,
|
387
|
+
0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64,
|
388
|
+
0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20,
|
389
|
+
0x68, 0x6f, 0x70, 0x65, 0x20, 0x74, 0x68, 0x61,
|
390
|
+
0x74, 0x20, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6c,
|
391
|
+
0x6c, 0x20, 0x62, 0x65, 0x20, 0x75, 0x73, 0x65,
|
392
|
+
0x66, 0x75, 0x6c, 0x2c, 0x20, 0x62, 0x75, 0x74,
|
393
|
+
0x0a, 0x20, 0x2a, 0x20, 0x57, 0x49, 0x54, 0x48,
|
394
|
+
0x4f, 0x55, 0x54, 0x20, 0x41, 0x4e, 0x59, 0x20,
|
395
|
+
0x57, 0x41, 0x52, 0x52, 0x41, 0x4e, 0x54, 0x59,
|
396
|
+
0x3b, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75,
|
397
|
+
0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x74,
|
398
|
+
0x68, 0x65, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x69,
|
399
|
+
0x65, 0x64, 0x20, 0x77, 0x61, 0x72, 0x72, 0x61,
|
400
|
+
0x6e, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x0a, 0x20,
|
401
|
+
0x2a, 0x20, 0x4d, 0x45, 0x52, 0x43, 0x48, 0x41,
|
402
|
+
0x4e, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
403
|
+
0x59, 0x20, 0x6f, 0x72, 0x20, 0x46, 0x49, 0x54,
|
404
|
+
0x4e, 0x45, 0x53, 0x53, 0x20, 0x46, 0x4f, 0x52,
|
405
|
+
0x20, 0x41, 0x20, 0x50, 0x41, 0x52, 0x54, 0x49,
|
406
|
+
0x43, 0x55, 0x4c, 0x41, 0x52, 0x20, 0x50, 0x55,
|
407
|
+
0x52, 0x50, 0x4f, 0x53, 0x45, 0x2e, 0x20, 0x20,
|
408
|
+
0x53, 0x65, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20,
|
409
|
+
0x47, 0x4e, 0x55, 0x0a, 0x20, 0x2a, 0x20, 0x47,
|
410
|
+
0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x50,
|
411
|
+
0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69,
|
412
|
+
0x63, 0x65, 0x6e, 0x73, 0x65, 0x20, 0x66, 0x6f,
|
413
|
+
0x72, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x64,
|
414
|
+
0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x0a,
|
415
|
+
0x20, 0x2a, 0x0a, 0x20, 0x2a, 0x20, 0x59, 0x6f,
|
416
|
+
0x75, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64,
|
417
|
+
0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x72, 0x65,
|
418
|
+
0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x61,
|
419
|
+
0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66,
|
420
|
+
0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e, 0x55,
|
421
|
+
0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
|
422
|
+
0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
|
423
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x0a,
|
424
|
+
0x20, 0x2a, 0x20, 0x61, 0x6c, 0x6f, 0x6e, 0x67,
|
425
|
+
0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68,
|
426
|
+
0x69, 0x73, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72,
|
427
|
+
0x61, 0x6d, 0x3b, 0x20, 0x73, 0x65, 0x65, 0x20,
|
428
|
+
0x74, 0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65,
|
429
|
+
0x20, 0x43, 0x4f, 0x50, 0x59, 0x49, 0x4e, 0x47,
|
430
|
+
0x2e, 0x20, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x6f,
|
431
|
+
0x74, 0x2c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65,
|
432
|
+
0x20, 0x74, 0x6f, 0x0a, 0x20, 0x2a, 0x20, 0x74,
|
433
|
+
0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
|
434
|
+
0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
435
|
+
0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
|
436
|
+
0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x35, 0x31, 0x20,
|
437
|
+
0x46, 0x72, 0x61, 0x6e, 0x6b, 0x6c, 0x69, 0x6e,
|
438
|
+
0x20, 0x53, 0x74, 0x72, 0x65, 0x65, 0x74, 0x2c,
|
439
|
+
0x20, 0x46, 0x69, 0x66, 0x74, 0x68, 0x20, 0x46,
|
440
|
+
0x6c, 0x6f, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x2a,
|
441
|
+
0x20, 0x42, 0x6f, 0x73, 0x74, 0x6f, 0x6e, 0x2c,
|
442
|
+
0x20, 0x4d, 0x41, 0x20, 0x30, 0x32, 0x31, 0x31,
|
443
|
+
0x30, 0x2d, 0x31, 0x33, 0x30, 0x31, 0x2c, 0x20,
|
444
|
+
0x55, 0x53, 0x41, 0x2e, 0x0a, 0x20, 0x2a, 0x2f,
|
445
|
+
0x0a,
|
446
|
+
};
|
447
|
+
|
448
|
+
static git_rawobj some_obj = {
|
449
|
+
some_data,
|
450
|
+
sizeof(some_data),
|
451
|
+
GIT_OBJ_BLOB
|
452
|
+
};
|
453
|
+
|
454
|
+
test_body(&some, &some_obj);
|
455
|
+
}
|
@@ -0,0 +1,56 @@
|
|
1
|
+
#include "clar_libgit2.h"
|
2
|
+
#include "tag.h"
|
3
|
+
|
4
|
+
static git_repository *repo;
|
5
|
+
static git_tag *tag;
|
6
|
+
static git_object *target;
|
7
|
+
|
8
|
+
void test_object_tag_peel__initialize(void)
|
9
|
+
{
|
10
|
+
cl_fixture_sandbox("testrepo.git");
|
11
|
+
cl_git_pass(git_repository_open(&repo, "testrepo.git"));
|
12
|
+
}
|
13
|
+
|
14
|
+
void test_object_tag_peel__cleanup(void)
|
15
|
+
{
|
16
|
+
git_tag_free(tag);
|
17
|
+
git_object_free(target);
|
18
|
+
git_repository_free(repo);
|
19
|
+
|
20
|
+
cl_fixture_cleanup("testrepo.git");
|
21
|
+
}
|
22
|
+
|
23
|
+
static void retrieve_tag_from_oid(git_tag **tag_out, git_repository *repo, const char *sha)
|
24
|
+
{
|
25
|
+
git_oid oid;
|
26
|
+
|
27
|
+
cl_git_pass(git_oid_fromstr(&oid, sha));
|
28
|
+
cl_git_pass(git_tag_lookup(tag_out, repo, &oid));
|
29
|
+
}
|
30
|
+
|
31
|
+
void test_object_tag_peel__can_peel_to_a_commit(void)
|
32
|
+
{
|
33
|
+
retrieve_tag_from_oid(&tag, repo, "7b4384978d2493e851f9cca7858815fac9b10980");
|
34
|
+
|
35
|
+
cl_git_pass(git_tag_peel(&target, tag));
|
36
|
+
cl_assert(git_object_type(target) == GIT_OBJ_COMMIT);
|
37
|
+
cl_git_pass(git_oid_streq(git_object_id(target), "e90810b8df3e80c413d903f631643c716887138d"));
|
38
|
+
}
|
39
|
+
|
40
|
+
void test_object_tag_peel__can_peel_several_nested_tags_to_a_commit(void)
|
41
|
+
{
|
42
|
+
retrieve_tag_from_oid(&tag, repo, "b25fa35b38051e4ae45d4222e795f9df2e43f1d1");
|
43
|
+
|
44
|
+
cl_git_pass(git_tag_peel(&target, tag));
|
45
|
+
cl_assert(git_object_type(target) == GIT_OBJ_COMMIT);
|
46
|
+
cl_git_pass(git_oid_streq(git_object_id(target), "e90810b8df3e80c413d903f631643c716887138d"));
|
47
|
+
}
|
48
|
+
|
49
|
+
void test_object_tag_peel__can_peel_to_a_non_commit(void)
|
50
|
+
{
|
51
|
+
retrieve_tag_from_oid(&tag, repo, "521d87c1ec3aef9824daf6d96cc0ae3710766d91");
|
52
|
+
|
53
|
+
cl_git_pass(git_tag_peel(&target, tag));
|
54
|
+
cl_assert(git_object_type(target) == GIT_OBJ_BLOB);
|
55
|
+
cl_git_pass(git_oid_streq(git_object_id(target), "1385f264afb75a56a5bec74243be9b367ba4ca08"));
|
56
|
+
}
|
@@ -0,0 +1,130 @@
|
|
1
|
+
#include "clar_libgit2.h"
|
2
|
+
|
3
|
+
#include "tag.h"
|
4
|
+
|
5
|
+
static const char *tag1_id = "b25fa35b38051e4ae45d4222e795f9df2e43f1d1";
|
6
|
+
static const char *tag2_id = "7b4384978d2493e851f9cca7858815fac9b10980";
|
7
|
+
static const char *tagged_commit = "e90810b8df3e80c413d903f631643c716887138d";
|
8
|
+
static const char *bad_tag_id = "eda9f45a2a98d4c17a09d681d88569fa4ea91755";
|
9
|
+
static const char *badly_tagged_commit = "e90810b8df3e80c413d903f631643c716887138d";
|
10
|
+
|
11
|
+
static git_repository *g_repo;
|
12
|
+
|
13
|
+
|
14
|
+
// Helpers
|
15
|
+
static void ensure_tag_pattern_match(git_repository *repo,
|
16
|
+
const char *pattern,
|
17
|
+
const size_t expected_matches)
|
18
|
+
{
|
19
|
+
git_strarray tag_list;
|
20
|
+
int error = 0;
|
21
|
+
|
22
|
+
if ((error = git_tag_list_match(&tag_list, pattern, repo)) < 0)
|
23
|
+
goto exit;
|
24
|
+
|
25
|
+
if (tag_list.count != expected_matches)
|
26
|
+
error = GIT_ERROR;
|
27
|
+
|
28
|
+
exit:
|
29
|
+
git_strarray_free(&tag_list);
|
30
|
+
cl_git_pass(error);
|
31
|
+
}
|
32
|
+
|
33
|
+
|
34
|
+
// Fixture setup and teardown
|
35
|
+
void test_object_tag_read__initialize(void)
|
36
|
+
{
|
37
|
+
g_repo = cl_git_sandbox_init("testrepo");
|
38
|
+
}
|
39
|
+
|
40
|
+
void test_object_tag_read__cleanup(void)
|
41
|
+
{
|
42
|
+
cl_git_sandbox_cleanup();
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
void test_object_tag_read__parse(void)
|
47
|
+
{
|
48
|
+
// read and parse a tag from the repository
|
49
|
+
git_tag *tag1, *tag2;
|
50
|
+
git_commit *commit;
|
51
|
+
git_oid id1, id2, id_commit;
|
52
|
+
|
53
|
+
git_oid_fromstr(&id1, tag1_id);
|
54
|
+
git_oid_fromstr(&id2, tag2_id);
|
55
|
+
git_oid_fromstr(&id_commit, tagged_commit);
|
56
|
+
|
57
|
+
cl_git_pass(git_tag_lookup(&tag1, g_repo, &id1));
|
58
|
+
|
59
|
+
cl_assert_equal_s(git_tag_name(tag1), "test");
|
60
|
+
cl_assert(git_tag_type(tag1) == GIT_OBJ_TAG);
|
61
|
+
|
62
|
+
cl_git_pass(git_tag_target((git_object **)&tag2, tag1));
|
63
|
+
cl_assert(tag2 != NULL);
|
64
|
+
|
65
|
+
cl_assert(git_oid_cmp(&id2, git_tag_id(tag2)) == 0);
|
66
|
+
|
67
|
+
cl_git_pass(git_tag_target((git_object **)&commit, tag2));
|
68
|
+
cl_assert(commit != NULL);
|
69
|
+
|
70
|
+
cl_assert(git_oid_cmp(&id_commit, git_commit_id(commit)) == 0);
|
71
|
+
|
72
|
+
git_tag_free(tag1);
|
73
|
+
git_tag_free(tag2);
|
74
|
+
git_commit_free(commit);
|
75
|
+
}
|
76
|
+
|
77
|
+
void test_object_tag_read__list(void)
|
78
|
+
{
|
79
|
+
// list all tag names from the repository
|
80
|
+
git_strarray tag_list;
|
81
|
+
|
82
|
+
cl_git_pass(git_tag_list(&tag_list, g_repo));
|
83
|
+
|
84
|
+
cl_assert(tag_list.count == 3);
|
85
|
+
|
86
|
+
git_strarray_free(&tag_list);
|
87
|
+
}
|
88
|
+
|
89
|
+
void test_object_tag_read__list_pattern(void)
|
90
|
+
{
|
91
|
+
// list all tag names from the repository matching a specified pattern
|
92
|
+
ensure_tag_pattern_match(g_repo, "", 3);
|
93
|
+
ensure_tag_pattern_match(g_repo, "*", 3);
|
94
|
+
ensure_tag_pattern_match(g_repo, "t*", 1);
|
95
|
+
ensure_tag_pattern_match(g_repo, "*b", 2);
|
96
|
+
ensure_tag_pattern_match(g_repo, "e", 0);
|
97
|
+
ensure_tag_pattern_match(g_repo, "e90810b", 1);
|
98
|
+
ensure_tag_pattern_match(g_repo, "e90810[ab]", 1);
|
99
|
+
}
|
100
|
+
|
101
|
+
void test_object_tag_read__parse_without_tagger(void)
|
102
|
+
{
|
103
|
+
// read and parse a tag without a tagger field
|
104
|
+
git_repository *bad_tag_repo;
|
105
|
+
git_tag *bad_tag;
|
106
|
+
git_commit *commit;
|
107
|
+
git_oid id, id_commit;
|
108
|
+
|
109
|
+
// TODO: This is a little messy
|
110
|
+
cl_git_pass(git_repository_open(&bad_tag_repo, cl_fixture("bad_tag.git")));
|
111
|
+
|
112
|
+
git_oid_fromstr(&id, bad_tag_id);
|
113
|
+
git_oid_fromstr(&id_commit, badly_tagged_commit);
|
114
|
+
|
115
|
+
cl_git_pass(git_tag_lookup(&bad_tag, bad_tag_repo, &id));
|
116
|
+
cl_assert(bad_tag != NULL);
|
117
|
+
|
118
|
+
cl_assert_equal_s(git_tag_name(bad_tag), "e90810b");
|
119
|
+
cl_assert(git_oid_cmp(&id, git_tag_id(bad_tag)) == 0);
|
120
|
+
cl_assert(bad_tag->tagger == NULL);
|
121
|
+
|
122
|
+
cl_git_pass(git_tag_target((git_object **)&commit, bad_tag));
|
123
|
+
cl_assert(commit != NULL);
|
124
|
+
|
125
|
+
cl_assert(git_oid_cmp(&id_commit, git_commit_id(commit)) == 0);
|
126
|
+
|
127
|
+
git_tag_free(bad_tag);
|
128
|
+
git_commit_free(commit);
|
129
|
+
git_repository_free(bad_tag_repo);
|
130
|
+
}
|