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,142 @@
|
|
1
|
+
#include "clar_libgit2.h"
|
2
|
+
|
3
|
+
#include "odb.h"
|
4
|
+
#include "repository.h"
|
5
|
+
|
6
|
+
|
7
|
+
#define TEMP_REPO_FOLDER "temprepo/"
|
8
|
+
#define DISCOVER_FOLDER TEMP_REPO_FOLDER "discover.git"
|
9
|
+
|
10
|
+
#define SUB_REPOSITORY_FOLDER_NAME "sub_repo"
|
11
|
+
#define SUB_REPOSITORY_FOLDER DISCOVER_FOLDER "/" SUB_REPOSITORY_FOLDER_NAME
|
12
|
+
#define SUB_REPOSITORY_FOLDER_SUB SUB_REPOSITORY_FOLDER "/sub"
|
13
|
+
#define SUB_REPOSITORY_FOLDER_SUB_SUB SUB_REPOSITORY_FOLDER_SUB "/subsub"
|
14
|
+
#define SUB_REPOSITORY_FOLDER_SUB_SUB_SUB SUB_REPOSITORY_FOLDER_SUB_SUB "/subsubsub"
|
15
|
+
|
16
|
+
#define REPOSITORY_ALTERNATE_FOLDER DISCOVER_FOLDER "/alternate_sub_repo"
|
17
|
+
#define REPOSITORY_ALTERNATE_FOLDER_SUB REPOSITORY_ALTERNATE_FOLDER "/sub"
|
18
|
+
#define REPOSITORY_ALTERNATE_FOLDER_SUB_SUB REPOSITORY_ALTERNATE_FOLDER_SUB "/subsub"
|
19
|
+
#define REPOSITORY_ALTERNATE_FOLDER_SUB_SUB_SUB REPOSITORY_ALTERNATE_FOLDER_SUB_SUB "/subsubsub"
|
20
|
+
|
21
|
+
#define ALTERNATE_MALFORMED_FOLDER1 DISCOVER_FOLDER "/alternate_malformed_repo1"
|
22
|
+
#define ALTERNATE_MALFORMED_FOLDER2 DISCOVER_FOLDER "/alternate_malformed_repo2"
|
23
|
+
#define ALTERNATE_MALFORMED_FOLDER3 DISCOVER_FOLDER "/alternate_malformed_repo3"
|
24
|
+
#define ALTERNATE_NOT_FOUND_FOLDER DISCOVER_FOLDER "/alternate_not_found_repo"
|
25
|
+
|
26
|
+
static void ensure_repository_discover(const char *start_path,
|
27
|
+
const char *ceiling_dirs,
|
28
|
+
const char *expected_path)
|
29
|
+
{
|
30
|
+
char found_path[GIT_PATH_MAX];
|
31
|
+
cl_git_pass(git_repository_discover(found_path, sizeof(found_path), start_path, 0, ceiling_dirs));
|
32
|
+
//across_fs is always 0 as we can't automate the filesystem change tests
|
33
|
+
cl_assert_equal_s(found_path, expected_path);
|
34
|
+
}
|
35
|
+
|
36
|
+
static void write_file(const char *path, const char *content)
|
37
|
+
{
|
38
|
+
git_file file;
|
39
|
+
int error;
|
40
|
+
|
41
|
+
if (git_path_exists(path)) {
|
42
|
+
cl_git_pass(p_unlink(path));
|
43
|
+
}
|
44
|
+
|
45
|
+
file = git_futils_creat_withpath(path, 0777, 0666);
|
46
|
+
cl_assert(file >= 0);
|
47
|
+
|
48
|
+
error = p_write(file, content, strlen(content) * sizeof(char));
|
49
|
+
p_close(file);
|
50
|
+
cl_git_pass(error);
|
51
|
+
}
|
52
|
+
|
53
|
+
//no check is performed on ceiling_dirs length, so be sure it's long enough
|
54
|
+
static void append_ceiling_dir(git_buf *ceiling_dirs, const char *path)
|
55
|
+
{
|
56
|
+
git_buf pretty_path = GIT_BUF_INIT;
|
57
|
+
char ceiling_separator[2] = { GIT_PATH_LIST_SEPARATOR, '\0' };
|
58
|
+
|
59
|
+
cl_git_pass(git_path_prettify_dir(&pretty_path, path, NULL));
|
60
|
+
|
61
|
+
if (ceiling_dirs->size > 0)
|
62
|
+
git_buf_puts(ceiling_dirs, ceiling_separator);
|
63
|
+
|
64
|
+
git_buf_puts(ceiling_dirs, pretty_path.ptr);
|
65
|
+
|
66
|
+
git_buf_free(&pretty_path);
|
67
|
+
cl_assert(git_buf_oom(ceiling_dirs) == 0);
|
68
|
+
}
|
69
|
+
|
70
|
+
void test_repo_discover__0(void)
|
71
|
+
{
|
72
|
+
// test discover
|
73
|
+
git_repository *repo;
|
74
|
+
git_buf ceiling_dirs_buf = GIT_BUF_INIT;
|
75
|
+
const char *ceiling_dirs;
|
76
|
+
char repository_path[GIT_PATH_MAX];
|
77
|
+
char sub_repository_path[GIT_PATH_MAX];
|
78
|
+
char found_path[GIT_PATH_MAX];
|
79
|
+
const mode_t mode = 0777;
|
80
|
+
|
81
|
+
git_futils_mkdir_r(DISCOVER_FOLDER, NULL, mode);
|
82
|
+
append_ceiling_dir(&ceiling_dirs_buf, TEMP_REPO_FOLDER);
|
83
|
+
ceiling_dirs = git_buf_cstr(&ceiling_dirs_buf);
|
84
|
+
|
85
|
+
cl_assert_equal_i(GIT_ENOTFOUND, git_repository_discover(repository_path, sizeof(repository_path), DISCOVER_FOLDER, 0, ceiling_dirs));
|
86
|
+
|
87
|
+
cl_git_pass(git_repository_init(&repo, DISCOVER_FOLDER, 1));
|
88
|
+
cl_git_pass(git_repository_discover(repository_path, sizeof(repository_path), DISCOVER_FOLDER, 0, ceiling_dirs));
|
89
|
+
git_repository_free(repo);
|
90
|
+
|
91
|
+
cl_git_pass(git_repository_init(&repo, SUB_REPOSITORY_FOLDER, 0));
|
92
|
+
cl_git_pass(git_futils_mkdir_r(SUB_REPOSITORY_FOLDER_SUB_SUB_SUB, NULL, mode));
|
93
|
+
cl_git_pass(git_repository_discover(sub_repository_path, sizeof(sub_repository_path), SUB_REPOSITORY_FOLDER, 0, ceiling_dirs));
|
94
|
+
|
95
|
+
cl_git_pass(git_futils_mkdir_r(SUB_REPOSITORY_FOLDER_SUB_SUB_SUB, NULL, mode));
|
96
|
+
ensure_repository_discover(SUB_REPOSITORY_FOLDER_SUB, ceiling_dirs, sub_repository_path);
|
97
|
+
ensure_repository_discover(SUB_REPOSITORY_FOLDER_SUB_SUB, ceiling_dirs, sub_repository_path);
|
98
|
+
ensure_repository_discover(SUB_REPOSITORY_FOLDER_SUB_SUB_SUB, ceiling_dirs, sub_repository_path);
|
99
|
+
|
100
|
+
cl_git_pass(git_futils_mkdir_r(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB_SUB, NULL, mode));
|
101
|
+
write_file(REPOSITORY_ALTERNATE_FOLDER "/" DOT_GIT, "gitdir: ../" SUB_REPOSITORY_FOLDER_NAME "/" DOT_GIT);
|
102
|
+
write_file(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB "/" DOT_GIT, "gitdir: ../../../" SUB_REPOSITORY_FOLDER_NAME "/" DOT_GIT);
|
103
|
+
write_file(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB_SUB "/" DOT_GIT, "gitdir: ../../../../");
|
104
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER, ceiling_dirs, sub_repository_path);
|
105
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB, ceiling_dirs, sub_repository_path);
|
106
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB, ceiling_dirs, sub_repository_path);
|
107
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB_SUB, ceiling_dirs, repository_path);
|
108
|
+
|
109
|
+
cl_git_pass(git_futils_mkdir_r(ALTERNATE_MALFORMED_FOLDER1, NULL, mode));
|
110
|
+
write_file(ALTERNATE_MALFORMED_FOLDER1 "/" DOT_GIT, "Anything but not gitdir:");
|
111
|
+
cl_git_pass(git_futils_mkdir_r(ALTERNATE_MALFORMED_FOLDER2, NULL, mode));
|
112
|
+
write_file(ALTERNATE_MALFORMED_FOLDER2 "/" DOT_GIT, "gitdir:");
|
113
|
+
cl_git_pass(git_futils_mkdir_r(ALTERNATE_MALFORMED_FOLDER3, NULL, mode));
|
114
|
+
write_file(ALTERNATE_MALFORMED_FOLDER3 "/" DOT_GIT, "gitdir: \n\n\n");
|
115
|
+
cl_git_pass(git_futils_mkdir_r(ALTERNATE_NOT_FOUND_FOLDER, NULL, mode));
|
116
|
+
write_file(ALTERNATE_NOT_FOUND_FOLDER "/" DOT_GIT, "gitdir: a_repository_that_surely_does_not_exist");
|
117
|
+
cl_git_fail(git_repository_discover(found_path, sizeof(found_path), ALTERNATE_MALFORMED_FOLDER1, 0, ceiling_dirs));
|
118
|
+
cl_git_fail(git_repository_discover(found_path, sizeof(found_path), ALTERNATE_MALFORMED_FOLDER2, 0, ceiling_dirs));
|
119
|
+
cl_git_fail(git_repository_discover(found_path, sizeof(found_path), ALTERNATE_MALFORMED_FOLDER3, 0, ceiling_dirs));
|
120
|
+
cl_assert_equal_i(GIT_ENOTFOUND, git_repository_discover(found_path, sizeof(found_path), ALTERNATE_NOT_FOUND_FOLDER, 0, ceiling_dirs));
|
121
|
+
|
122
|
+
append_ceiling_dir(&ceiling_dirs_buf, SUB_REPOSITORY_FOLDER);
|
123
|
+
ceiling_dirs = git_buf_cstr(&ceiling_dirs_buf);
|
124
|
+
|
125
|
+
//this must pass as ceiling_directories cannot predent the current
|
126
|
+
//working directory to be checked
|
127
|
+
cl_git_pass(git_repository_discover(found_path, sizeof(found_path), SUB_REPOSITORY_FOLDER, 0, ceiling_dirs));
|
128
|
+
cl_assert_equal_i(GIT_ENOTFOUND, git_repository_discover(found_path, sizeof(found_path), SUB_REPOSITORY_FOLDER_SUB, 0, ceiling_dirs));
|
129
|
+
cl_assert_equal_i(GIT_ENOTFOUND, git_repository_discover(found_path, sizeof(found_path), SUB_REPOSITORY_FOLDER_SUB_SUB, 0, ceiling_dirs));
|
130
|
+
cl_assert_equal_i(GIT_ENOTFOUND, git_repository_discover(found_path, sizeof(found_path), SUB_REPOSITORY_FOLDER_SUB_SUB_SUB, 0, ceiling_dirs));
|
131
|
+
|
132
|
+
//.gitfile redirection should not be affected by ceiling directories
|
133
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER, ceiling_dirs, sub_repository_path);
|
134
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB, ceiling_dirs, sub_repository_path);
|
135
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB, ceiling_dirs, sub_repository_path);
|
136
|
+
ensure_repository_discover(REPOSITORY_ALTERNATE_FOLDER_SUB_SUB_SUB, ceiling_dirs, repository_path);
|
137
|
+
|
138
|
+
cl_git_pass(git_futils_rmdir_r(TEMP_REPO_FOLDER, GIT_DIRREMOVAL_FILES_AND_DIRS));
|
139
|
+
git_repository_free(repo);
|
140
|
+
git_buf_free(&ceiling_dirs_buf);
|
141
|
+
}
|
142
|
+
|
@@ -1,4 +1,4 @@
|
|
1
|
-
#include "
|
1
|
+
#include "clar_libgit2.h"
|
2
2
|
|
3
3
|
void test_repo_getters__initialize(void)
|
4
4
|
{
|
@@ -37,6 +37,7 @@ void test_repo_getters__head_detached(void)
|
|
37
37
|
git_oid_fromstr(&oid, "c47800c7266a2be04c571c04d5a6614691ea99bd");
|
38
38
|
cl_git_pass(git_reference_create_oid(&ref, repo, "HEAD", &oid, 1));
|
39
39
|
cl_assert(git_repository_head_detached(repo) == 1);
|
40
|
+
git_reference_free(ref);
|
40
41
|
|
41
42
|
/* take the reop back to it's original state */
|
42
43
|
cl_git_pass(git_reference_create_symbolic(&ref, repo, "HEAD", "refs/heads/master", 1));
|
@@ -58,6 +59,7 @@ void test_repo_getters__head_orphan(void)
|
|
58
59
|
/* orphan HEAD */
|
59
60
|
cl_git_pass(git_reference_create_symbolic(&ref, repo, "HEAD", "refs/heads/orphan", 1));
|
60
61
|
cl_assert(git_repository_head_orphan(repo) == 1);
|
62
|
+
git_reference_free(ref);
|
61
63
|
|
62
64
|
/* take the reop back to it's original state */
|
63
65
|
cl_git_pass(git_reference_create_symbolic(&ref, repo, "HEAD", "refs/heads/master", 1));
|
@@ -66,3 +68,19 @@ void test_repo_getters__head_orphan(void)
|
|
66
68
|
git_reference_free(ref);
|
67
69
|
git_repository_free(repo);
|
68
70
|
}
|
71
|
+
|
72
|
+
void test_repo_getters__retrieving_the_odb_honors_the_refcount(void)
|
73
|
+
{
|
74
|
+
git_odb *odb;
|
75
|
+
git_repository *repo;
|
76
|
+
|
77
|
+
cl_git_pass(git_repository_open(&repo, "testrepo.git"));
|
78
|
+
|
79
|
+
cl_git_pass(git_repository_odb(&odb, repo));
|
80
|
+
cl_assert(((git_refcount *)odb)->refcount == 2);
|
81
|
+
|
82
|
+
git_repository_free(repo);
|
83
|
+
cl_assert(((git_refcount *)odb)->refcount == 1);
|
84
|
+
|
85
|
+
git_odb_free(odb);
|
86
|
+
}
|
@@ -0,0 +1,235 @@
|
|
1
|
+
#include "clar_libgit2.h"
|
2
|
+
#include "fileops.h"
|
3
|
+
#include "repository.h"
|
4
|
+
#include "config.h"
|
5
|
+
|
6
|
+
enum repo_mode {
|
7
|
+
STANDARD_REPOSITORY = 0,
|
8
|
+
BARE_REPOSITORY = 1
|
9
|
+
};
|
10
|
+
|
11
|
+
static git_repository *_repo;
|
12
|
+
|
13
|
+
void test_repo_init__initialize(void)
|
14
|
+
{
|
15
|
+
_repo = NULL;
|
16
|
+
}
|
17
|
+
|
18
|
+
static void cleanup_repository(void *path)
|
19
|
+
{
|
20
|
+
git_repository_free(_repo);
|
21
|
+
cl_fixture_cleanup((const char *)path);
|
22
|
+
}
|
23
|
+
|
24
|
+
static void ensure_repository_init(
|
25
|
+
const char *working_directory,
|
26
|
+
int is_bare,
|
27
|
+
const char *expected_path_repository,
|
28
|
+
const char *expected_working_directory)
|
29
|
+
{
|
30
|
+
const char *workdir;
|
31
|
+
|
32
|
+
cl_git_pass(git_repository_init(&_repo, working_directory, is_bare));
|
33
|
+
|
34
|
+
workdir = git_repository_workdir(_repo);
|
35
|
+
if (workdir != NULL || expected_working_directory != NULL) {
|
36
|
+
cl_assert(
|
37
|
+
git__suffixcmp(workdir, expected_working_directory) == 0
|
38
|
+
);
|
39
|
+
}
|
40
|
+
|
41
|
+
cl_assert(
|
42
|
+
git__suffixcmp(git_repository_path(_repo), expected_path_repository) == 0
|
43
|
+
);
|
44
|
+
|
45
|
+
cl_assert(git_repository_is_bare(_repo) == is_bare);
|
46
|
+
|
47
|
+
#ifdef GIT_WIN32
|
48
|
+
if (!is_bare) {
|
49
|
+
cl_assert((GetFileAttributes(git_repository_path(_repo)) & FILE_ATTRIBUTE_HIDDEN) != 0);
|
50
|
+
}
|
51
|
+
#endif
|
52
|
+
|
53
|
+
cl_assert(git_repository_is_empty(_repo));
|
54
|
+
}
|
55
|
+
|
56
|
+
void test_repo_init__standard_repo(void)
|
57
|
+
{
|
58
|
+
cl_set_cleanup(&cleanup_repository, "testrepo");
|
59
|
+
ensure_repository_init("testrepo/", 0, "testrepo/.git/", "testrepo/");
|
60
|
+
}
|
61
|
+
|
62
|
+
void test_repo_init__standard_repo_noslash(void)
|
63
|
+
{
|
64
|
+
cl_set_cleanup(&cleanup_repository, "testrepo");
|
65
|
+
ensure_repository_init("testrepo", 0, "testrepo/.git/", "testrepo/");
|
66
|
+
}
|
67
|
+
|
68
|
+
void test_repo_init__bare_repo(void)
|
69
|
+
{
|
70
|
+
cl_set_cleanup(&cleanup_repository, "testrepo.git");
|
71
|
+
ensure_repository_init("testrepo.git/", 1, "testrepo.git/", NULL);
|
72
|
+
}
|
73
|
+
|
74
|
+
void test_repo_init__bare_repo_noslash(void)
|
75
|
+
{
|
76
|
+
cl_set_cleanup(&cleanup_repository, "testrepo.git");
|
77
|
+
ensure_repository_init("testrepo.git", 1, "testrepo.git/", NULL);
|
78
|
+
}
|
79
|
+
|
80
|
+
void test_repo_init__bare_repo_escaping_current_workdir(void)
|
81
|
+
{
|
82
|
+
git_buf path_repository = GIT_BUF_INIT;
|
83
|
+
git_buf path_current_workdir = GIT_BUF_INIT;
|
84
|
+
|
85
|
+
cl_git_pass(git_path_prettify_dir(&path_current_workdir, ".", NULL));
|
86
|
+
|
87
|
+
cl_git_pass(git_buf_joinpath(&path_repository, git_buf_cstr(&path_current_workdir), "a/b/c"));
|
88
|
+
cl_git_pass(git_futils_mkdir_r(git_buf_cstr(&path_repository), NULL, GIT_DIR_MODE));
|
89
|
+
|
90
|
+
/* Change the current working directory */
|
91
|
+
cl_git_pass(chdir(git_buf_cstr(&path_repository)));
|
92
|
+
|
93
|
+
/* Initialize a bare repo with a relative path escaping out of the current working directory */
|
94
|
+
cl_git_pass(git_repository_init(&_repo, "../d/e.git", 1));
|
95
|
+
cl_git_pass(git__suffixcmp(git_repository_path(_repo), "/a/b/d/e.git/"));
|
96
|
+
|
97
|
+
git_repository_free(_repo);
|
98
|
+
|
99
|
+
/* Open a bare repo with a relative path escaping out of the current working directory */
|
100
|
+
cl_git_pass(git_repository_open(&_repo, "../d/e.git"));
|
101
|
+
|
102
|
+
cl_git_pass(chdir(git_buf_cstr(&path_current_workdir)));
|
103
|
+
|
104
|
+
git_buf_free(&path_current_workdir);
|
105
|
+
git_buf_free(&path_repository);
|
106
|
+
|
107
|
+
cleanup_repository("a");
|
108
|
+
}
|
109
|
+
|
110
|
+
void test_repo_init__reinit_bare_repo(void)
|
111
|
+
{
|
112
|
+
cl_set_cleanup(&cleanup_repository, "reinit.git");
|
113
|
+
|
114
|
+
/* Initialize the repository */
|
115
|
+
cl_git_pass(git_repository_init(&_repo, "reinit.git", 1));
|
116
|
+
git_repository_free(_repo);
|
117
|
+
|
118
|
+
/* Reinitialize the repository */
|
119
|
+
cl_git_pass(git_repository_init(&_repo, "reinit.git", 1));
|
120
|
+
}
|
121
|
+
|
122
|
+
void test_repo_init__reinit_too_recent_bare_repo(void)
|
123
|
+
{
|
124
|
+
git_config *config;
|
125
|
+
|
126
|
+
/* Initialize the repository */
|
127
|
+
cl_git_pass(git_repository_init(&_repo, "reinit.git", 1));
|
128
|
+
git_repository_config(&config, _repo);
|
129
|
+
|
130
|
+
/*
|
131
|
+
* Hack the config of the repository to make it look like it has
|
132
|
+
* been created by a recenter version of git/libgit2
|
133
|
+
*/
|
134
|
+
cl_git_pass(git_config_set_int32(config, "core.repositoryformatversion", 42));
|
135
|
+
|
136
|
+
git_config_free(config);
|
137
|
+
git_repository_free(_repo);
|
138
|
+
|
139
|
+
/* Try to reinitialize the repository */
|
140
|
+
cl_git_fail(git_repository_init(&_repo, "reinit.git", 1));
|
141
|
+
|
142
|
+
cl_fixture_cleanup("reinit.git");
|
143
|
+
}
|
144
|
+
|
145
|
+
void test_repo_init__additional_templates(void)
|
146
|
+
{
|
147
|
+
git_buf path = GIT_BUF_INIT;
|
148
|
+
|
149
|
+
cl_set_cleanup(&cleanup_repository, "tester");
|
150
|
+
|
151
|
+
ensure_repository_init("tester", 0, "tester/.git/", "tester/");
|
152
|
+
|
153
|
+
cl_git_pass(
|
154
|
+
git_buf_joinpath(&path, git_repository_path(_repo), "description"));
|
155
|
+
cl_assert(git_path_isfile(git_buf_cstr(&path)));
|
156
|
+
|
157
|
+
cl_git_pass(
|
158
|
+
git_buf_joinpath(&path, git_repository_path(_repo), "info/exclude"));
|
159
|
+
cl_assert(git_path_isfile(git_buf_cstr(&path)));
|
160
|
+
|
161
|
+
cl_git_pass(
|
162
|
+
git_buf_joinpath(&path, git_repository_path(_repo), "hooks"));
|
163
|
+
cl_assert(git_path_isdir(git_buf_cstr(&path)));
|
164
|
+
/* won't confirm specific contents of hooks dir since it may vary */
|
165
|
+
|
166
|
+
git_buf_free(&path);
|
167
|
+
}
|
168
|
+
|
169
|
+
static void assert_config_entry_on_init(const char *config_key, int expected_value)
|
170
|
+
{
|
171
|
+
git_config *config;
|
172
|
+
int current_value;
|
173
|
+
|
174
|
+
cl_set_cleanup(&cleanup_repository, "config_entry");
|
175
|
+
|
176
|
+
cl_git_pass(git_repository_init(&_repo, "config_entry/test.git", 1));
|
177
|
+
git_repository_config(&config, _repo);
|
178
|
+
|
179
|
+
if (expected_value >= 0) {
|
180
|
+
cl_git_pass(git_config_get_bool(¤t_value, config, config_key));
|
181
|
+
|
182
|
+
cl_assert_equal_i(expected_value, current_value);
|
183
|
+
} else {
|
184
|
+
int error = git_config_get_bool(¤t_value, config, config_key);
|
185
|
+
|
186
|
+
cl_assert_equal_i(expected_value, error);
|
187
|
+
}
|
188
|
+
|
189
|
+
git_config_free(config);
|
190
|
+
}
|
191
|
+
|
192
|
+
void test_repo_init__detect_filemode(void)
|
193
|
+
{
|
194
|
+
#ifdef GIT_WIN32
|
195
|
+
assert_config_entry_on_init("core.filemode", false);
|
196
|
+
#else
|
197
|
+
assert_config_entry_on_init("core.filemode", true);
|
198
|
+
#endif
|
199
|
+
}
|
200
|
+
|
201
|
+
#define CASE_INSENSITIVE_FILESYSTEM (defined GIT_WIN32 || defined __APPLE__)
|
202
|
+
|
203
|
+
void test_repo_init__detect_ignorecase(void)
|
204
|
+
{
|
205
|
+
#if CASE_INSENSITIVE_FILESYSTEM
|
206
|
+
assert_config_entry_on_init("core.ignorecase", true);
|
207
|
+
#else
|
208
|
+
assert_config_entry_on_init("core.ignorecase", GIT_ENOTFOUND);
|
209
|
+
#endif
|
210
|
+
}
|
211
|
+
|
212
|
+
void test_repo_init__reinit_doesnot_overwrite_ignorecase(void)
|
213
|
+
{
|
214
|
+
git_config *config;
|
215
|
+
int current_value;
|
216
|
+
|
217
|
+
/* Init a new repo */
|
218
|
+
test_repo_init__detect_ignorecase();
|
219
|
+
|
220
|
+
/* Change the "core.ignorecase" config value to something unlikely */
|
221
|
+
git_repository_config(&config, _repo);
|
222
|
+
git_config_set_int32(config, "core.ignorecase", 42);
|
223
|
+
git_config_free(config);
|
224
|
+
git_repository_free(_repo);
|
225
|
+
|
226
|
+
/* Reinit the repository */
|
227
|
+
cl_git_pass(git_repository_init(&_repo, "config_entry/test.git", 1));
|
228
|
+
git_repository_config(&config, _repo);
|
229
|
+
|
230
|
+
/* Ensure the "core.ignorecase" config value hasn't been updated */
|
231
|
+
cl_git_pass(git_config_get_int32(¤t_value, config, "core.ignorecase"));
|
232
|
+
cl_assert_equal_i(42, current_value);
|
233
|
+
|
234
|
+
git_config_free(config);
|
235
|
+
}
|
@@ -0,0 +1,282 @@
|
|
1
|
+
#include "clar_libgit2.h"
|
2
|
+
#include "fileops.h"
|
3
|
+
#include <ctype.h>
|
4
|
+
|
5
|
+
void test_repo_open__cleanup(void)
|
6
|
+
{
|
7
|
+
cl_git_sandbox_cleanup();
|
8
|
+
|
9
|
+
if (git_path_isdir("alternate"))
|
10
|
+
git_futils_rmdir_r("alternate", GIT_DIRREMOVAL_FILES_AND_DIRS);
|
11
|
+
}
|
12
|
+
|
13
|
+
void test_repo_open__bare_empty_repo(void)
|
14
|
+
{
|
15
|
+
git_repository *repo = cl_git_sandbox_init("empty_bare.git");
|
16
|
+
|
17
|
+
cl_assert(git_repository_path(repo) != NULL);
|
18
|
+
cl_assert(git__suffixcmp(git_repository_path(repo), "/") == 0);
|
19
|
+
cl_assert(git_repository_workdir(repo) == NULL);
|
20
|
+
}
|
21
|
+
|
22
|
+
void test_repo_open__standard_empty_repo_through_gitdir(void)
|
23
|
+
{
|
24
|
+
git_repository *repo;
|
25
|
+
|
26
|
+
cl_git_pass(git_repository_open(&repo, cl_fixture("empty_standard_repo/.gitted")));
|
27
|
+
|
28
|
+
cl_assert(git_repository_path(repo) != NULL);
|
29
|
+
cl_assert(git__suffixcmp(git_repository_path(repo), "/") == 0);
|
30
|
+
|
31
|
+
cl_assert(git_repository_workdir(repo) != NULL);
|
32
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo), "/") == 0);
|
33
|
+
|
34
|
+
git_repository_free(repo);
|
35
|
+
}
|
36
|
+
|
37
|
+
void test_repo_open__standard_empty_repo_through_workdir(void)
|
38
|
+
{
|
39
|
+
git_repository *repo = cl_git_sandbox_init("empty_standard_repo");
|
40
|
+
|
41
|
+
cl_assert(git_repository_path(repo) != NULL);
|
42
|
+
cl_assert(git__suffixcmp(git_repository_path(repo), "/") == 0);
|
43
|
+
|
44
|
+
cl_assert(git_repository_workdir(repo) != NULL);
|
45
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo), "/") == 0);
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
void test_repo_open__open_with_discover(void)
|
50
|
+
{
|
51
|
+
static const char *variants[] = {
|
52
|
+
"attr", "attr/", "attr/.git", "attr/.git/",
|
53
|
+
"attr/sub", "attr/sub/", "attr/sub/sub", "attr/sub/sub/",
|
54
|
+
NULL
|
55
|
+
};
|
56
|
+
git_repository *repo;
|
57
|
+
const char **scan;
|
58
|
+
|
59
|
+
cl_fixture_sandbox("attr");
|
60
|
+
cl_git_pass(p_rename("attr/.gitted", "attr/.git"));
|
61
|
+
|
62
|
+
for (scan = variants; *scan != NULL; scan++) {
|
63
|
+
cl_git_pass(git_repository_open_ext(&repo, *scan, 0, NULL));
|
64
|
+
cl_assert(git__suffixcmp(git_repository_path(repo), "attr/.git/") == 0);
|
65
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo), "attr/") == 0);
|
66
|
+
git_repository_free(repo);
|
67
|
+
}
|
68
|
+
|
69
|
+
cl_fixture_cleanup("attr");
|
70
|
+
}
|
71
|
+
|
72
|
+
void test_repo_open__gitlinked(void)
|
73
|
+
{
|
74
|
+
/* need to have both repo dir and workdir set up correctly */
|
75
|
+
git_repository *repo = cl_git_sandbox_init("empty_standard_repo");
|
76
|
+
git_repository *repo2;
|
77
|
+
|
78
|
+
cl_must_pass(p_mkdir("alternate", 0777));
|
79
|
+
cl_git_mkfile("alternate/.git", "gitdir: ../empty_standard_repo/.git");
|
80
|
+
|
81
|
+
cl_git_pass(git_repository_open(&repo2, "alternate"));
|
82
|
+
|
83
|
+
cl_assert(git_repository_path(repo2) != NULL);
|
84
|
+
cl_assert_(git__suffixcmp(git_repository_path(repo2), "empty_standard_repo/.git/") == 0, git_repository_path(repo2));
|
85
|
+
cl_assert_equal_s(git_repository_path(repo), git_repository_path(repo2));
|
86
|
+
|
87
|
+
cl_assert(git_repository_workdir(repo2) != NULL);
|
88
|
+
cl_assert_(git__suffixcmp(git_repository_workdir(repo2), "alternate/") == 0, git_repository_workdir(repo2));
|
89
|
+
|
90
|
+
git_repository_free(repo2);
|
91
|
+
}
|
92
|
+
|
93
|
+
void test_repo_open__from_git_new_workdir(void)
|
94
|
+
{
|
95
|
+
/* The git-new-workdir script that ships with git sets up a bunch of
|
96
|
+
* symlinks to create a second workdir that shares the object db with
|
97
|
+
* another checkout. Libgit2 can open a repo that has been configured
|
98
|
+
* this way.
|
99
|
+
*/
|
100
|
+
cl_git_sandbox_init("empty_standard_repo");
|
101
|
+
|
102
|
+
#ifndef GIT_WIN32
|
103
|
+
git_repository *repo2;
|
104
|
+
git_buf link_tgt = GIT_BUF_INIT, link = GIT_BUF_INIT, body = GIT_BUF_INIT;
|
105
|
+
const char **scan;
|
106
|
+
int link_fd;
|
107
|
+
static const char *links[] = {
|
108
|
+
"config", "refs", "logs/refs", "objects", "info", "hooks",
|
109
|
+
"packed-refs", "remotes", "rr-cache", "svn", NULL
|
110
|
+
};
|
111
|
+
static const char *copies[] = {
|
112
|
+
"HEAD", NULL
|
113
|
+
};
|
114
|
+
|
115
|
+
cl_git_pass(p_mkdir("alternate", 0777));
|
116
|
+
cl_git_pass(p_mkdir("alternate/.git", 0777));
|
117
|
+
|
118
|
+
for (scan = links; *scan != NULL; scan++) {
|
119
|
+
git_buf_joinpath(&link_tgt, "empty_standard_repo/.git", *scan);
|
120
|
+
if (git_path_exists(link_tgt.ptr)) {
|
121
|
+
git_buf_joinpath(&link_tgt, "../../empty_standard_repo/.git", *scan);
|
122
|
+
git_buf_joinpath(&link, "alternate/.git", *scan);
|
123
|
+
if (strchr(*scan, '/'))
|
124
|
+
git_futils_mkpath2file(link.ptr, 0777);
|
125
|
+
cl_assert_(symlink(link_tgt.ptr, link.ptr) == 0, strerror(errno));
|
126
|
+
}
|
127
|
+
}
|
128
|
+
for (scan = copies; *scan != NULL; scan++) {
|
129
|
+
git_buf_joinpath(&link_tgt, "empty_standard_repo/.git", *scan);
|
130
|
+
if (git_path_exists(link_tgt.ptr)) {
|
131
|
+
git_buf_joinpath(&link, "alternate/.git", *scan);
|
132
|
+
cl_git_pass(git_futils_readbuffer(&body, link_tgt.ptr));
|
133
|
+
|
134
|
+
cl_assert((link_fd = git_futils_creat_withpath(link.ptr, 0777, 0666)) >= 0);
|
135
|
+
cl_must_pass(p_write(link_fd, body.ptr, body.size));
|
136
|
+
p_close(link_fd);
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
git_buf_free(&link_tgt);
|
141
|
+
git_buf_free(&link);
|
142
|
+
git_buf_free(&body);
|
143
|
+
|
144
|
+
|
145
|
+
cl_git_pass(git_repository_open(&repo2, "alternate"));
|
146
|
+
|
147
|
+
cl_assert(git_repository_path(repo2) != NULL);
|
148
|
+
cl_assert_(git__suffixcmp(git_repository_path(repo2), "alternate/.git/") == 0, git_repository_path(repo2));
|
149
|
+
|
150
|
+
cl_assert(git_repository_workdir(repo2) != NULL);
|
151
|
+
cl_assert_(git__suffixcmp(git_repository_workdir(repo2), "alternate/") == 0, git_repository_workdir(repo2));
|
152
|
+
|
153
|
+
git_repository_free(repo2);
|
154
|
+
#endif
|
155
|
+
}
|
156
|
+
|
157
|
+
void test_repo_open__failures(void)
|
158
|
+
{
|
159
|
+
git_repository *base, *repo;
|
160
|
+
git_buf ceiling = GIT_BUF_INIT;
|
161
|
+
|
162
|
+
base = cl_git_sandbox_init("attr");
|
163
|
+
cl_git_pass(git_buf_sets(&ceiling, git_repository_workdir(base)));
|
164
|
+
|
165
|
+
/* fail with no searching */
|
166
|
+
cl_git_fail(git_repository_open(&repo, "attr/sub"));
|
167
|
+
cl_git_fail(git_repository_open_ext(
|
168
|
+
&repo, "attr/sub", GIT_REPOSITORY_OPEN_NO_SEARCH, NULL));
|
169
|
+
|
170
|
+
/* fail with ceiling too low */
|
171
|
+
cl_git_pass(git_buf_joinpath(&ceiling, ceiling.ptr, "sub"));
|
172
|
+
cl_git_fail(git_repository_open_ext(&repo, "attr/sub", 0, ceiling.ptr));
|
173
|
+
|
174
|
+
/* fail with no repo */
|
175
|
+
cl_git_pass(p_mkdir("alternate", 0777));
|
176
|
+
cl_git_pass(p_mkdir("alternate/.git", 0777));
|
177
|
+
cl_git_fail(git_repository_open_ext(&repo, "alternate", 0, NULL));
|
178
|
+
cl_git_fail(git_repository_open_ext(&repo, "alternate/.git", 0, NULL));
|
179
|
+
|
180
|
+
git_buf_free(&ceiling);
|
181
|
+
}
|
182
|
+
|
183
|
+
void test_repo_open__bad_gitlinks(void)
|
184
|
+
{
|
185
|
+
git_repository *repo;
|
186
|
+
static const char *bad_links[] = {
|
187
|
+
"garbage\n", "gitdir", "gitdir:\n", "gitdir: foobar",
|
188
|
+
"gitdir: ../invalid", "gitdir: ../invalid2",
|
189
|
+
"gitdir: ../attr/.git with extra stuff",
|
190
|
+
NULL
|
191
|
+
};
|
192
|
+
const char **scan;
|
193
|
+
|
194
|
+
cl_git_sandbox_init("attr");
|
195
|
+
|
196
|
+
cl_git_pass(p_mkdir("alternate", 0777));
|
197
|
+
cl_git_pass(p_mkdir("invalid", 0777));
|
198
|
+
cl_git_pass(git_futils_mkdir_r("invalid2/.git", NULL, 0777));
|
199
|
+
|
200
|
+
for (scan = bad_links; *scan != NULL; scan++) {
|
201
|
+
cl_git_rewritefile("alternate/.git", *scan);
|
202
|
+
cl_git_fail(git_repository_open_ext(&repo, "alternate", 0, NULL));
|
203
|
+
}
|
204
|
+
|
205
|
+
git_futils_rmdir_r("invalid", GIT_DIRREMOVAL_FILES_AND_DIRS);
|
206
|
+
git_futils_rmdir_r("invalid2", GIT_DIRREMOVAL_FILES_AND_DIRS);
|
207
|
+
}
|
208
|
+
|
209
|
+
#ifdef GIT_WIN32
|
210
|
+
static void unposix_path(git_buf *path)
|
211
|
+
{
|
212
|
+
char *src, *tgt;
|
213
|
+
|
214
|
+
src = tgt = path->ptr;
|
215
|
+
|
216
|
+
/* convert "/d/..." to "d:\..." */
|
217
|
+
if (src[0] == '/' && isalpha(src[1]) && src[2] == '/') {
|
218
|
+
*tgt++ = src[1];
|
219
|
+
*tgt++ = ':';
|
220
|
+
*tgt++ = '\\';
|
221
|
+
src += 3;
|
222
|
+
}
|
223
|
+
|
224
|
+
while (*src) {
|
225
|
+
*tgt++ = (*src == '/') ? '\\' : *src;
|
226
|
+
src++;
|
227
|
+
}
|
228
|
+
|
229
|
+
*tgt = '\0';
|
230
|
+
}
|
231
|
+
#endif
|
232
|
+
|
233
|
+
void test_repo_open__win32_path(void)
|
234
|
+
{
|
235
|
+
#ifdef GIT_WIN32
|
236
|
+
git_repository *repo = cl_git_sandbox_init("empty_standard_repo"), *repo2;
|
237
|
+
git_buf winpath = GIT_BUF_INIT;
|
238
|
+
static const char *repo_path = "empty_standard_repo/.git/";
|
239
|
+
static const char *repo_wd = "empty_standard_repo/";
|
240
|
+
|
241
|
+
cl_assert(git__suffixcmp(git_repository_path(repo), repo_path) == 0);
|
242
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo), repo_wd) == 0);
|
243
|
+
|
244
|
+
cl_git_pass(git_buf_sets(&winpath, git_repository_path(repo)));
|
245
|
+
unposix_path(&winpath);
|
246
|
+
cl_git_pass(git_repository_open(&repo2, winpath.ptr));
|
247
|
+
cl_assert(git__suffixcmp(git_repository_path(repo2), repo_path) == 0);
|
248
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo2), repo_wd) == 0);
|
249
|
+
git_repository_free(repo2);
|
250
|
+
|
251
|
+
cl_git_pass(git_buf_sets(&winpath, git_repository_path(repo)));
|
252
|
+
git_buf_truncate(&winpath, winpath.size - 1); /* remove trailing '/' */
|
253
|
+
unposix_path(&winpath);
|
254
|
+
cl_git_pass(git_repository_open(&repo2, winpath.ptr));
|
255
|
+
cl_assert(git__suffixcmp(git_repository_path(repo2), repo_path) == 0);
|
256
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo2), repo_wd) == 0);
|
257
|
+
git_repository_free(repo2);
|
258
|
+
|
259
|
+
cl_git_pass(git_buf_sets(&winpath, git_repository_workdir(repo)));
|
260
|
+
unposix_path(&winpath);
|
261
|
+
cl_git_pass(git_repository_open(&repo2, winpath.ptr));
|
262
|
+
cl_assert(git__suffixcmp(git_repository_path(repo2), repo_path) == 0);
|
263
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo2), repo_wd) == 0);
|
264
|
+
git_repository_free(repo2);
|
265
|
+
|
266
|
+
cl_git_pass(git_buf_sets(&winpath, git_repository_workdir(repo)));
|
267
|
+
git_buf_truncate(&winpath, winpath.size - 1); /* remove trailing '/' */
|
268
|
+
unposix_path(&winpath);
|
269
|
+
cl_git_pass(git_repository_open(&repo2, winpath.ptr));
|
270
|
+
cl_assert(git__suffixcmp(git_repository_path(repo2), repo_path) == 0);
|
271
|
+
cl_assert(git__suffixcmp(git_repository_workdir(repo2), repo_wd) == 0);
|
272
|
+
git_repository_free(repo2);
|
273
|
+
|
274
|
+
git_buf_free(&winpath);
|
275
|
+
#endif
|
276
|
+
}
|
277
|
+
|
278
|
+
void test_repo_open__opening_a_non_existing_repository_returns_ENOTFOUND(void)
|
279
|
+
{
|
280
|
+
git_repository *repo;
|
281
|
+
cl_assert_equal_i(GIT_ENOTFOUND, git_repository_open(&repo, "i-do-not/exist"));
|
282
|
+
}
|