rugged 0.17.0b2 → 0.17.0.b6
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +10 -11
- data/ext/rugged/extconf.rb +5 -13
- data/ext/rugged/rugged_commit.c +2 -5
- data/ext/rugged/rugged_reference.c +29 -28
- data/ext/rugged/rugged_remote.c +1 -1
- data/ext/rugged/rugged_repo.c +4 -1
- data/ext/rugged/rugged_tree.c +20 -19
- data/lib/rugged/commit.rb +5 -1
- data/lib/rugged/repository.rb +6 -4
- data/lib/rugged/version.rb +1 -1
- data/test/config_test.rb +1 -1
- data/test/index_test.rb +4 -2
- data/test/object_test.rb +3 -3
- data/test/reference_test.rb +66 -1
- data/test/repo_test.rb +4 -4
- data/test/tree_test.rb +1 -1
- data/test/walker_test.rb +1 -1
- data/vendor/libgit2/Makefile.embed +42 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/http-parser/http_parser.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/http-parser/http_parser.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/config.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regcomp.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex_internal.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex_internal.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regexec.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/adler32.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/crc32.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/crc32.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/deflate.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/deflate.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffast.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffast.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffixed.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inflate.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inflate.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inftrees.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inftrees.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/trees.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/trees.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zconf.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zlib.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zutil.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zutil.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2.h +6 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/attr.h +35 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/blob.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/branch.h +62 -24
- data/vendor/libgit2/include/git2/checkout.h +66 -0
- data/vendor/libgit2/include/git2/clone.h +59 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/commit.h +22 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/common.h +27 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/config.h +22 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/diff.h +20 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/errors.h +2 -37
- data/vendor/libgit2/include/git2/ignore.h +74 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/index.h +37 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/indexer.h +2 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/inttypes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/merge.h +10 -0
- data/vendor/libgit2/include/git2/message.h +43 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/net.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/notes.h +24 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/object.h +18 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/odb.h +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/odb_backend.h +8 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/oid.h +26 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/reflog.h +39 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/refs.h +55 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/refspec.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/remote.h +68 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/repository.h +39 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/reset.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/revparse.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/revwalk.h +2 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/signature.h +3 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/status.h +5 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/stdint.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/submodule.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/tag.h +3 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/threads.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/tree.h +77 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/types.h +14 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/version.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/windows.h +0 -0
- data/vendor/libgit2/src/amiga/map.c +51 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr.c +39 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr.h +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr_file.c +2 -16
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr_file.h +4 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/blob.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/blob.h +0 -0
- data/vendor/libgit2/src/branch.c +294 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/bswap.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/buffer.c +40 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/buffer.h +22 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cache.c +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cache.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cc-compat.h +0 -0
- data/vendor/libgit2/src/checkout.c +230 -0
- data/vendor/libgit2/src/clone.c +254 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/commit.c +42 -16
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/commit.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/common.h +3 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/compat/fnmatch.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/compat/fnmatch.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config.c +15 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_cache.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_file.c +86 -19
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_file.h +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/crlf.c +92 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/date.c +20 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/delta-apply.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/delta-apply.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff.c +45 -18
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff_output.c +63 -46
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/errors.c +0 -0
- data/vendor/libgit2/src/fetch.c +380 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fetch.h +1 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filebuf.c +7 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filebuf.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fileops.c +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fileops.h +10 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filter.c +38 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filter.h +15 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/global.c +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/global.h +2 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/hash.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/hash.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ignore.c +50 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ignore.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/index.c +95 -28
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/index.h +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/indexer.c +27 -25
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/iterator.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/iterator.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/khash.h +6 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/map.h +4 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/message.c +27 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/message.h +2 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/mwindow.c +54 -10
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/mwindow.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/netops.c +48 -38
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/netops.h +7 -4
- data/vendor/libgit2/src/notes.c +610 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/notes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/object.c +73 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb.c +20 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb_loose.c +89 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb_pack.c +61 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/oid.c +1 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/oidmap.h +1 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pack.c +49 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pack.h +5 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/path.c +144 -21
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/path.h +46 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pkt.c +30 -8
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pkt.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pool.c +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pool.h +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/posix.c +92 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/posix.h +36 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ppc/sha1.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ppc/sha1.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pqueue.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pqueue.h +0 -0
- data/vendor/libgit2/src/protocol.c +88 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/protocol.h +3 -9
- data/vendor/libgit2/src/reflog.c +489 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/reflog.h +3 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refs.c +95 -52
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refs.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refspec.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refspec.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/remote.c +130 -8
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/remote.h +6 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/repository.c +167 -42
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/repository.h +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/reset.c +1 -1
- data/vendor/libgit2/src/revparse.c +830 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/revwalk.c +83 -15
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1.h +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1_lookup.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1_lookup.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/signature.c +19 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/signature.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/status.c +24 -18
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/strmap.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/submodule.c +3 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tag.c +2 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tag.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/thread-utils.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/thread-utils.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transport.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transport.h +13 -9
- data/vendor/libgit2/src/transports/git.c +245 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transports/http.c +93 -336
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transports/local.c +35 -32
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree-cache.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree-cache.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree.c +214 -124
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree.h +7 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tsort.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/unix/map.c +2 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/unix/posix.h +2 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/util.c +30 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/util.h +13 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/vector.c +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/vector.h +5 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/dir.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/dir.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/map.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/mingw-compat.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/msvc-compat.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/posix.h +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/posix_w32.c +17 -1
- data/vendor/libgit2/src/win32/precompiled.c +1 -0
- data/vendor/libgit2/src/win32/precompiled.h +19 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/pthread.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/pthread.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/utf-conv.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/utf-conv.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiff.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiffi.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiffi.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xemit.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xemit.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xhistogram.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xinclude.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xmacros.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xmerge.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xpatience.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xprepare.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xprepare.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xtypes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xutils.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xutils.h +0 -0
- metadata +265 -348
- data/ext/rugged/vendor/libgit2-dist.tar.gz +0 -0
- data/ext/rugged/vendor/libgit2-dist/examples/diff.c +0 -238
- data/ext/rugged/vendor/libgit2-dist/examples/general.c +0 -451
- data/ext/rugged/vendor/libgit2-dist/examples/network/common.h +0 -14
- data/ext/rugged/vendor/libgit2-dist/examples/network/fetch.c +0 -113
- data/ext/rugged/vendor/libgit2-dist/examples/network/git2.c +0 -62
- data/ext/rugged/vendor/libgit2-dist/examples/network/index-pack.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/examples/network/ls-remote.c +0 -76
- data/ext/rugged/vendor/libgit2-dist/examples/showindex.c +0 -43
- data/ext/rugged/vendor/libgit2-dist/src/branch.c +0 -208
- data/ext/rugged/vendor/libgit2-dist/src/branch.h +0 -17
- data/ext/rugged/vendor/libgit2-dist/src/fetch.c +0 -200
- data/ext/rugged/vendor/libgit2-dist/src/notes.c +0 -548
- data/ext/rugged/vendor/libgit2-dist/src/protocol.c +0 -58
- data/ext/rugged/vendor/libgit2-dist/src/reflog.c +0 -340
- data/ext/rugged/vendor/libgit2-dist/src/revparse.c +0 -748
- data/ext/rugged/vendor/libgit2-dist/src/transports/git.c +0 -477
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/attr_expect.h +0 -43
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/file.c +0 -226
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/flags.c +0 -108
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/lookup.c +0 -262
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/repo.c +0 -273
- data/ext/rugged/vendor/libgit2-dist/tests-clar/buf/basic.c +0 -29
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_helpers.c +0 -181
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_libgit2.h +0 -55
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/commit.c +0 -44
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/parse.c +0 -350
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/signature.c +0 -65
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/write.c +0 -140
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/add.c +0 -37
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/multivar.c +0 -151
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/new.c +0 -36
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/read.c +0 -221
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/stress.c +0 -61
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/write.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/buffer.c +0 -613
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/dirent.c +0 -235
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/env.c +0 -115
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/errors.c +0 -60
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/filebuf.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/hex.c +0 -22
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/oid.c +0 -18
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/path.c +0 -420
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/pool.c +0 -85
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/rmdir.c +0 -68
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/string.c +0 -28
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strmap.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strtol.c +0 -37
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/vector.c +0 -191
- data/ext/rugged/vendor/libgit2-dist/tests-clar/date/date.c +0 -15
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/blob.c +0 -254
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.c +0 -104
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.h +0 -47
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/index.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/iterator.c +0 -572
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/patch.c +0 -99
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/tree.c +0 -210
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/workdir.c +0 -543
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/read_tree.c +0 -46
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/rename.c +0 -50
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/tests.c +0 -246
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/createremotethenload.c +0 -33
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotelocal.c +0 -137
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotes.c +0 -183
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notes.c +0 -133
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notesref.c +0 -57
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/filter.c +0 -125
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/fromchunks.c +0 -87
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/write.c +0 -69
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/commit/commitstagedfile.c +0 -126
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/lookup.c +0 -63
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/message.c +0 -171
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/chars.c +0 -41
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/compare.c +0 -124
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/convert.c +0 -75
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/data.h +0 -323
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/fromstr.c +0 -30
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/hash.c +0 -166
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/short.c +0 -94
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/size.c +0 -13
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/type2string.c +0 -54
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/write.c +0 -455
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/peel.c +0 -56
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/read.c +0 -130
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/write.c +0 -192
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/frompath.c +0 -81
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/read.c +0 -75
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/write.c +0 -84
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/loose.c +0 -84
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/loose_data.h +0 -522
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/mixed.c +0 -24
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/pack_data.h +0 -151
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/packed.c +0 -78
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/sorting.c +0 -71
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/create.c +0 -113
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/delete.c +0 -91
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/listall.c +0 -78
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/move.c +0 -72
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/crashes.c +0 -17
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/create.c +0 -149
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/delete.c +0 -85
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/list.c +0 -53
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/listall.c +0 -36
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/lookup.c +0 -42
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/normalize.c +0 -200
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/overwrite.c +0 -136
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/pack.c +0 -67
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/read.c +0 -194
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/reflog.c +0 -123
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/rename.c +0 -339
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/revparse.c +0 -174
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/unicode.c +0 -42
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/discover.c +0 -142
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/getters.c +0 -86
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/init.c +0 -249
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/open.c +0 -282
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/setters.c +0 -80
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/mixed.c +0 -47
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.c +0 -10
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.h +0 -6
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/soft.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/basic.c +0 -181
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/mergebase.c +0 -148
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/ignore.c +0 -147
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/single.c +0 -29
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_data.h +0 -202
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.c +0 -49
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.h +0 -33
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/submodules.c +0 -112
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/worktree.c +0 -649
- data/ext/rugged/vendor/libgit2-dist/tests-clar/threads/basic.c +0 -20
@@ -1,181 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
|
3
|
-
/*
|
4
|
-
$ git log --oneline --graph --decorate
|
5
|
-
* a4a7dce (HEAD, br2) Merge branch 'master' into br2
|
6
|
-
|\
|
7
|
-
| * 9fd738e (master) a fourth commit
|
8
|
-
| * 4a202b3 a third commit
|
9
|
-
* | c47800c branch commit one
|
10
|
-
|/
|
11
|
-
* 5b5b025 another commit
|
12
|
-
* 8496071 testing
|
13
|
-
*/
|
14
|
-
static const char *commit_head = "a4a7dce85cf63874e984719f4fdd239f5145052f";
|
15
|
-
|
16
|
-
static const char *commit_ids[] = {
|
17
|
-
"a4a7dce85cf63874e984719f4fdd239f5145052f", /* 0 */
|
18
|
-
"9fd738e8f7967c078dceed8190330fc8648ee56a", /* 1 */
|
19
|
-
"4a202b346bb0fb0db7eff3cffeb3c70babbd2045", /* 2 */
|
20
|
-
"c47800c7266a2be04c571c04d5a6614691ea99bd", /* 3 */
|
21
|
-
"8496071c1b46c854b31185ea97743be6a8774479", /* 4 */
|
22
|
-
"5b5b025afb0b4c913b4c338a42934a3863bf3644", /* 5 */
|
23
|
-
};
|
24
|
-
|
25
|
-
/* Careful: there are two possible topological sorts */
|
26
|
-
static const int commit_sorting_topo[][6] = {
|
27
|
-
{0, 1, 2, 3, 5, 4}, {0, 3, 1, 2, 5, 4}
|
28
|
-
};
|
29
|
-
|
30
|
-
static const int commit_sorting_time[][6] = {
|
31
|
-
{0, 3, 1, 2, 5, 4}
|
32
|
-
};
|
33
|
-
|
34
|
-
static const int commit_sorting_topo_reverse[][6] = {
|
35
|
-
{4, 5, 3, 2, 1, 0}, {4, 5, 2, 1, 3, 0}
|
36
|
-
};
|
37
|
-
|
38
|
-
static const int commit_sorting_time_reverse[][6] = {
|
39
|
-
{4, 5, 2, 1, 3, 0}
|
40
|
-
};
|
41
|
-
|
42
|
-
#define commit_count 6
|
43
|
-
static const int result_bytes = 24;
|
44
|
-
|
45
|
-
|
46
|
-
static int get_commit_index(git_oid *raw_oid)
|
47
|
-
{
|
48
|
-
int i;
|
49
|
-
char oid[40];
|
50
|
-
|
51
|
-
git_oid_fmt(oid, raw_oid);
|
52
|
-
|
53
|
-
for (i = 0; i < commit_count; ++i)
|
54
|
-
if (memcmp(oid, commit_ids[i], 40) == 0)
|
55
|
-
return i;
|
56
|
-
|
57
|
-
return -1;
|
58
|
-
}
|
59
|
-
|
60
|
-
static int test_walk(git_revwalk *walk, const git_oid *root,
|
61
|
-
int flags, const int possible_results[][6], int results_count)
|
62
|
-
{
|
63
|
-
git_oid oid;
|
64
|
-
|
65
|
-
int i;
|
66
|
-
int result_array[commit_count];
|
67
|
-
|
68
|
-
git_revwalk_sorting(walk, flags);
|
69
|
-
git_revwalk_push(walk, root);
|
70
|
-
|
71
|
-
for (i = 0; i < commit_count; ++i)
|
72
|
-
result_array[i] = -1;
|
73
|
-
|
74
|
-
i = 0;
|
75
|
-
|
76
|
-
while (git_revwalk_next(&oid, walk) == 0) {
|
77
|
-
result_array[i++] = get_commit_index(&oid);
|
78
|
-
/*{
|
79
|
-
char str[41];
|
80
|
-
git_oid_fmt(str, &oid);
|
81
|
-
str[40] = 0;
|
82
|
-
printf(" %d) %s\n", i, str);
|
83
|
-
}*/
|
84
|
-
}
|
85
|
-
|
86
|
-
for (i = 0; i < results_count; ++i)
|
87
|
-
if (memcmp(possible_results[i],
|
88
|
-
result_array, result_bytes) == 0)
|
89
|
-
return 0;
|
90
|
-
|
91
|
-
return GIT_ERROR;
|
92
|
-
}
|
93
|
-
|
94
|
-
static git_repository *_repo;
|
95
|
-
static git_revwalk *_walk;
|
96
|
-
|
97
|
-
void test_revwalk_basic__initialize(void)
|
98
|
-
{
|
99
|
-
cl_git_pass(git_repository_open(&_repo, cl_fixture("testrepo.git")));
|
100
|
-
cl_git_pass(git_revwalk_new(&_walk, _repo));
|
101
|
-
}
|
102
|
-
|
103
|
-
void test_revwalk_basic__cleanup(void)
|
104
|
-
{
|
105
|
-
git_revwalk_free(_walk);
|
106
|
-
git_repository_free(_repo);
|
107
|
-
}
|
108
|
-
|
109
|
-
void test_revwalk_basic__sorting_modes(void)
|
110
|
-
{
|
111
|
-
git_oid id;
|
112
|
-
|
113
|
-
git_oid_fromstr(&id, commit_head);
|
114
|
-
|
115
|
-
cl_git_pass(test_walk(_walk, &id, GIT_SORT_TIME, commit_sorting_time, 1));
|
116
|
-
cl_git_pass(test_walk(_walk, &id, GIT_SORT_TOPOLOGICAL, commit_sorting_topo, 2));
|
117
|
-
cl_git_pass(test_walk(_walk, &id, GIT_SORT_TIME | GIT_SORT_REVERSE, commit_sorting_time_reverse, 1));
|
118
|
-
cl_git_pass(test_walk(_walk, &id, GIT_SORT_TOPOLOGICAL | GIT_SORT_REVERSE, commit_sorting_topo_reverse, 2));
|
119
|
-
}
|
120
|
-
|
121
|
-
void test_revwalk_basic__glob_heads(void)
|
122
|
-
{
|
123
|
-
int i = 0;
|
124
|
-
git_oid oid;
|
125
|
-
|
126
|
-
cl_git_pass(git_revwalk_push_glob(_walk, "heads"));
|
127
|
-
|
128
|
-
while (git_revwalk_next(&oid, _walk) == 0) {
|
129
|
-
i++;
|
130
|
-
}
|
131
|
-
|
132
|
-
/* git log --branches --oneline | wc -l => 13 */
|
133
|
-
cl_assert(i == 13);
|
134
|
-
}
|
135
|
-
|
136
|
-
void test_revwalk_basic__push_head(void)
|
137
|
-
{
|
138
|
-
int i = 0;
|
139
|
-
git_oid oid;
|
140
|
-
|
141
|
-
cl_git_pass(git_revwalk_push_head(_walk));
|
142
|
-
|
143
|
-
while (git_revwalk_next(&oid, _walk) == 0) {
|
144
|
-
i++;
|
145
|
-
}
|
146
|
-
|
147
|
-
/* git log HEAD --oneline | wc -l => 7 */
|
148
|
-
cl_assert(i == 7);
|
149
|
-
}
|
150
|
-
|
151
|
-
void test_revwalk_basic__push_head_hide_ref(void)
|
152
|
-
{
|
153
|
-
int i = 0;
|
154
|
-
git_oid oid;
|
155
|
-
|
156
|
-
cl_git_pass(git_revwalk_push_head(_walk));
|
157
|
-
cl_git_pass(git_revwalk_hide_ref(_walk, "refs/heads/packed-test"));
|
158
|
-
|
159
|
-
while (git_revwalk_next(&oid, _walk) == 0) {
|
160
|
-
i++;
|
161
|
-
}
|
162
|
-
|
163
|
-
/* git log HEAD --oneline --not refs/heads/packed-test | wc -l => 4 */
|
164
|
-
cl_assert(i == 4);
|
165
|
-
}
|
166
|
-
|
167
|
-
void test_revwalk_basic__push_head_hide_ref_nobase(void)
|
168
|
-
{
|
169
|
-
int i = 0;
|
170
|
-
git_oid oid;
|
171
|
-
|
172
|
-
cl_git_pass(git_revwalk_push_head(_walk));
|
173
|
-
cl_git_pass(git_revwalk_hide_ref(_walk, "refs/heads/packed"));
|
174
|
-
|
175
|
-
while (git_revwalk_next(&oid, _walk) == 0) {
|
176
|
-
i++;
|
177
|
-
}
|
178
|
-
|
179
|
-
/* git log HEAD --oneline --not refs/heads/packed | wc -l => 7 */
|
180
|
-
cl_assert(i == 7);
|
181
|
-
}
|
@@ -1,148 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
|
3
|
-
static git_repository *_repo;
|
4
|
-
|
5
|
-
void test_revwalk_mergebase__initialize(void)
|
6
|
-
{
|
7
|
-
cl_git_pass(git_repository_open(&_repo, cl_fixture("testrepo.git")));
|
8
|
-
}
|
9
|
-
|
10
|
-
void test_revwalk_mergebase__cleanup(void)
|
11
|
-
{
|
12
|
-
git_repository_free(_repo);
|
13
|
-
}
|
14
|
-
|
15
|
-
void test_revwalk_mergebase__single1(void)
|
16
|
-
{
|
17
|
-
git_oid result, one, two, expected;
|
18
|
-
|
19
|
-
git_oid_fromstr(&one, "c47800c7266a2be04c571c04d5a6614691ea99bd ");
|
20
|
-
git_oid_fromstr(&two, "9fd738e8f7967c078dceed8190330fc8648ee56a");
|
21
|
-
git_oid_fromstr(&expected, "5b5b025afb0b4c913b4c338a42934a3863bf3644");
|
22
|
-
|
23
|
-
cl_git_pass(git_merge_base(&result, _repo, &one, &two));
|
24
|
-
cl_assert(git_oid_cmp(&result, &expected) == 0);
|
25
|
-
}
|
26
|
-
|
27
|
-
void test_revwalk_mergebase__single2(void)
|
28
|
-
{
|
29
|
-
git_oid result, one, two, expected;
|
30
|
-
|
31
|
-
git_oid_fromstr(&one, "763d71aadf09a7951596c9746c024e7eece7c7af");
|
32
|
-
git_oid_fromstr(&two, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750");
|
33
|
-
git_oid_fromstr(&expected, "c47800c7266a2be04c571c04d5a6614691ea99bd");
|
34
|
-
|
35
|
-
cl_git_pass(git_merge_base(&result, _repo, &one, &two));
|
36
|
-
cl_assert(git_oid_cmp(&result, &expected) == 0);
|
37
|
-
}
|
38
|
-
|
39
|
-
void test_revwalk_mergebase__merged_branch(void)
|
40
|
-
{
|
41
|
-
git_oid result, one, two, expected;
|
42
|
-
|
43
|
-
git_oid_fromstr(&one, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750");
|
44
|
-
git_oid_fromstr(&two, "9fd738e8f7967c078dceed8190330fc8648ee56a");
|
45
|
-
git_oid_fromstr(&expected, "9fd738e8f7967c078dceed8190330fc8648ee56a");
|
46
|
-
|
47
|
-
cl_git_pass(git_merge_base(&result, _repo, &one, &two));
|
48
|
-
cl_assert(git_oid_cmp(&result, &expected) == 0);
|
49
|
-
|
50
|
-
cl_git_pass(git_merge_base(&result, _repo, &two, &one));
|
51
|
-
cl_assert(git_oid_cmp(&result, &expected) == 0);
|
52
|
-
}
|
53
|
-
|
54
|
-
void test_revwalk_mergebase__no_common_ancestor_returns_ENOTFOUND(void)
|
55
|
-
{
|
56
|
-
git_oid result, one, two, expected;
|
57
|
-
int error;
|
58
|
-
|
59
|
-
git_oid_fromstr(&one, "763d71aadf09a7951596c9746c024e7eece7c7af");
|
60
|
-
git_oid_fromstr(&two, "e90810b8df3e80c413d903f631643c716887138d");
|
61
|
-
git_oid_fromstr(&expected, "c47800c7266a2be04c571c04d5a6614691ea99bd");
|
62
|
-
|
63
|
-
error = git_merge_base(&result, _repo, &one, &two);
|
64
|
-
cl_git_fail(error);
|
65
|
-
|
66
|
-
cl_assert_equal_i(GIT_ENOTFOUND, error);
|
67
|
-
}
|
68
|
-
|
69
|
-
/*
|
70
|
-
* $ git log --graph --all
|
71
|
-
* * commit 763d71aadf09a7951596c9746c024e7eece7c7af
|
72
|
-
* | Author: nulltoken <emeric.fermas@gmail.com>
|
73
|
-
* | Date: Sun Oct 9 12:54:47 2011 +0200
|
74
|
-
* |
|
75
|
-
* | Add some files into subdirectories
|
76
|
-
* |
|
77
|
-
* | * commit a65fedf39aefe402d3bb6e24df4d4f5fe4547750
|
78
|
-
* | | Author: Scott Chacon <schacon@gmail.com>
|
79
|
-
* | | Date: Tue Aug 9 19:33:46 2011 -0700
|
80
|
-
* | |
|
81
|
-
* | * commit be3563ae3f795b2b4353bcce3a527ad0a4f7f644
|
82
|
-
* | |\ Merge: 9fd738e c47800c
|
83
|
-
* | |/ Author: Scott Chacon <schacon@gmail.com>
|
84
|
-
* |/| Date: Tue May 25 11:58:27 2010 -0700
|
85
|
-
* | |
|
86
|
-
* | | Merge branch 'br2'
|
87
|
-
* | |
|
88
|
-
* | | * commit e90810b8df3e80c413d903f631643c716887138d
|
89
|
-
* | | | Author: Vicent Marti <tanoku@gmail.com>
|
90
|
-
* | | | Date: Thu Aug 5 18:42:20 2010 +0200
|
91
|
-
* | | |
|
92
|
-
* | | | Test commit 2
|
93
|
-
* | | |
|
94
|
-
* | | * commit 6dcf9bf7541ee10456529833502442f385010c3d
|
95
|
-
* | | Author: Vicent Marti <tanoku@gmail.com>
|
96
|
-
* | | Date: Thu Aug 5 18:41:33 2010 +0200
|
97
|
-
* | |
|
98
|
-
* | | Test commit 1
|
99
|
-
* | |
|
100
|
-
* | | * commit a4a7dce85cf63874e984719f4fdd239f5145052f
|
101
|
-
* | | |\ Merge: c47800c 9fd738e
|
102
|
-
* | |/ / Author: Scott Chacon <schacon@gmail.com>
|
103
|
-
* |/| / Date: Tue May 25 12:00:23 2010 -0700
|
104
|
-
* | |/
|
105
|
-
* | | Merge branch 'master' into br2
|
106
|
-
* | |
|
107
|
-
* | * commit 9fd738e8f7967c078dceed8190330fc8648ee56a
|
108
|
-
* | | Author: Scott Chacon <schacon@gmail.com>
|
109
|
-
* | | Date: Mon May 24 10:19:19 2010 -0700
|
110
|
-
* | |
|
111
|
-
* | | a fourth commit
|
112
|
-
* | |
|
113
|
-
* | * commit 4a202b346bb0fb0db7eff3cffeb3c70babbd2045
|
114
|
-
* | | Author: Scott Chacon <schacon@gmail.com>
|
115
|
-
* | | Date: Mon May 24 10:19:04 2010 -0700
|
116
|
-
* | |
|
117
|
-
* | | a third commit
|
118
|
-
* | |
|
119
|
-
* * | commit c47800c7266a2be04c571c04d5a6614691ea99bd
|
120
|
-
* |/ Author: Scott Chacon <schacon@gmail.com>
|
121
|
-
* | Date: Tue May 25 11:58:14 2010 -0700
|
122
|
-
* |
|
123
|
-
* | branch commit one
|
124
|
-
* |
|
125
|
-
* * commit 5b5b025afb0b4c913b4c338a42934a3863bf3644
|
126
|
-
* | Author: Scott Chacon <schacon@gmail.com>
|
127
|
-
* | Date: Tue May 11 13:38:42 2010 -0700
|
128
|
-
* |
|
129
|
-
* | another commit
|
130
|
-
* |
|
131
|
-
* * commit 8496071c1b46c854b31185ea97743be6a8774479
|
132
|
-
* Author: Scott Chacon <schacon@gmail.com>
|
133
|
-
* Date: Sat May 8 16:13:06 2010 -0700
|
134
|
-
*
|
135
|
-
* testing
|
136
|
-
*
|
137
|
-
* * commit 41bc8c69075bbdb46c5c6f0566cc8cc5b46e8bd9
|
138
|
-
* | Author: Scott Chacon <schacon@gmail.com>
|
139
|
-
* | Date: Tue May 11 13:40:41 2010 -0700
|
140
|
-
* |
|
141
|
-
* | packed commit two
|
142
|
-
* |
|
143
|
-
* * commit 5001298e0c09ad9c34e4249bc5801c75e9754fa5
|
144
|
-
* Author: Scott Chacon <schacon@gmail.com>
|
145
|
-
* Date: Tue May 11 13:40:23 2010 -0700
|
146
|
-
*
|
147
|
-
* packed commit one
|
148
|
-
*/
|
@@ -1,147 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "fileops.h"
|
3
|
-
#include "git2/attr.h"
|
4
|
-
#include "attr.h"
|
5
|
-
#include "status_helpers.h"
|
6
|
-
|
7
|
-
static git_repository *g_repo = NULL;
|
8
|
-
|
9
|
-
void test_status_ignore__initialize(void)
|
10
|
-
{
|
11
|
-
}
|
12
|
-
|
13
|
-
void test_status_ignore__cleanup(void)
|
14
|
-
{
|
15
|
-
cl_git_sandbox_cleanup();
|
16
|
-
}
|
17
|
-
|
18
|
-
void test_status_ignore__0(void)
|
19
|
-
{
|
20
|
-
struct {
|
21
|
-
const char *path;
|
22
|
-
int expected;
|
23
|
-
} test_cases[] = {
|
24
|
-
/* patterns "sub" and "ign" from .gitignore */
|
25
|
-
{ "file", 0 },
|
26
|
-
{ "ign", 1 },
|
27
|
-
{ "sub", 1 },
|
28
|
-
{ "sub/file", 0 },
|
29
|
-
{ "sub/ign", 1 },
|
30
|
-
{ "sub/sub", 1 },
|
31
|
-
{ "sub/sub/file", 0 },
|
32
|
-
{ "sub/sub/ign", 1 },
|
33
|
-
{ "sub/sub/sub", 1 },
|
34
|
-
/* pattern "dir/" from .gitignore */
|
35
|
-
{ "dir", 1 },
|
36
|
-
{ "dir/", 1 },
|
37
|
-
{ "sub/dir", 1 },
|
38
|
-
{ "sub/dir/", 1 },
|
39
|
-
{ "sub/sub/dir", 0 }, /* dir is not actually a dir, but a file */
|
40
|
-
{ NULL, 0 }
|
41
|
-
}, *one_test;
|
42
|
-
|
43
|
-
g_repo = cl_git_sandbox_init("attr");
|
44
|
-
|
45
|
-
for (one_test = test_cases; one_test->path != NULL; one_test++) {
|
46
|
-
int ignored;
|
47
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, one_test->path));
|
48
|
-
cl_assert_(ignored == one_test->expected, one_test->path);
|
49
|
-
}
|
50
|
-
|
51
|
-
/* confirm that ignore files were cached */
|
52
|
-
cl_assert(git_attr_cache__is_cached(g_repo, 0, ".git/info/exclude"));
|
53
|
-
cl_assert(git_attr_cache__is_cached(g_repo, 0, ".gitignore"));
|
54
|
-
}
|
55
|
-
|
56
|
-
|
57
|
-
void test_status_ignore__1(void)
|
58
|
-
{
|
59
|
-
int ignored;
|
60
|
-
|
61
|
-
g_repo = cl_git_sandbox_init("attr");
|
62
|
-
|
63
|
-
cl_git_rewritefile("attr/.gitignore", "/*.txt\n/dir/\n");
|
64
|
-
git_attr_cache_flush(g_repo);
|
65
|
-
|
66
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "root_test4.txt"));
|
67
|
-
cl_assert(ignored);
|
68
|
-
|
69
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "sub/subdir_test2.txt"));
|
70
|
-
cl_assert(!ignored);
|
71
|
-
|
72
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "dir"));
|
73
|
-
cl_assert(ignored);
|
74
|
-
|
75
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "dir/"));
|
76
|
-
cl_assert(ignored);
|
77
|
-
|
78
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "sub/dir"));
|
79
|
-
cl_assert(!ignored);
|
80
|
-
|
81
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "sub/dir/"));
|
82
|
-
cl_assert(!ignored);
|
83
|
-
}
|
84
|
-
|
85
|
-
|
86
|
-
void test_status_ignore__empty_repo_with_gitignore_rewrite(void)
|
87
|
-
{
|
88
|
-
status_entry_single st;
|
89
|
-
int ignored;
|
90
|
-
|
91
|
-
g_repo = cl_git_sandbox_init("empty_standard_repo");
|
92
|
-
|
93
|
-
cl_git_mkfile(
|
94
|
-
"empty_standard_repo/look-ma.txt", "I'm going to be ignored!");
|
95
|
-
|
96
|
-
memset(&st, 0, sizeof(st));
|
97
|
-
cl_git_pass(git_status_foreach(g_repo, cb_status__single, &st));
|
98
|
-
cl_assert(st.count == 1);
|
99
|
-
cl_assert(st.status == GIT_STATUS_WT_NEW);
|
100
|
-
|
101
|
-
cl_git_pass(git_status_file(&st.status, g_repo, "look-ma.txt"));
|
102
|
-
cl_assert(st.status == GIT_STATUS_WT_NEW);
|
103
|
-
|
104
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "look-ma.txt"));
|
105
|
-
cl_assert(!ignored);
|
106
|
-
|
107
|
-
cl_git_rewritefile("empty_standard_repo/.gitignore", "*.nomatch\n");
|
108
|
-
|
109
|
-
memset(&st, 0, sizeof(st));
|
110
|
-
cl_git_pass(git_status_foreach(g_repo, cb_status__single, &st));
|
111
|
-
cl_assert(st.count == 2);
|
112
|
-
cl_assert(st.status == GIT_STATUS_WT_NEW);
|
113
|
-
|
114
|
-
cl_git_pass(git_status_file(&st.status, g_repo, "look-ma.txt"));
|
115
|
-
cl_assert(st.status == GIT_STATUS_WT_NEW);
|
116
|
-
|
117
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "look-ma.txt"));
|
118
|
-
cl_assert(!ignored);
|
119
|
-
|
120
|
-
cl_git_rewritefile("empty_standard_repo/.gitignore", "*.txt\n");
|
121
|
-
|
122
|
-
memset(&st, 0, sizeof(st));
|
123
|
-
cl_git_pass(git_status_foreach(g_repo, cb_status__single, &st));
|
124
|
-
cl_assert(st.count == 2);
|
125
|
-
cl_assert(st.status == GIT_STATUS_IGNORED);
|
126
|
-
|
127
|
-
cl_git_pass(git_status_file(&st.status, g_repo, "look-ma.txt"));
|
128
|
-
cl_assert(st.status == GIT_STATUS_IGNORED);
|
129
|
-
|
130
|
-
cl_git_pass(git_status_should_ignore(&ignored, g_repo, "look-ma.txt"));
|
131
|
-
cl_assert(ignored);
|
132
|
-
}
|
133
|
-
|
134
|
-
void test_status_ignore__ignore_pattern_contains_space(void)
|
135
|
-
{
|
136
|
-
unsigned int flags;
|
137
|
-
const mode_t mode = 0777;
|
138
|
-
|
139
|
-
g_repo = cl_git_sandbox_init("empty_standard_repo");
|
140
|
-
cl_git_rewritefile("empty_standard_repo/.gitignore", "foo bar.txt\n");
|
141
|
-
|
142
|
-
cl_git_pass(git_futils_mkdir_r("empty_standard_repo/foo", NULL, mode));
|
143
|
-
cl_git_mkfile("empty_standard_repo/foo/look-ma.txt", "I'm not going to be ignored!");
|
144
|
-
|
145
|
-
cl_git_pass(git_status_file(&flags, g_repo, "foo/look-ma.txt"));
|
146
|
-
cl_assert(flags == GIT_STATUS_WT_NEW);
|
147
|
-
}
|