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,99 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "diff_helpers.h"
|
3
|
-
|
4
|
-
static git_repository *g_repo = NULL;
|
5
|
-
|
6
|
-
void test_diff_patch__initialize(void)
|
7
|
-
{
|
8
|
-
g_repo = cl_git_sandbox_init("status");
|
9
|
-
}
|
10
|
-
|
11
|
-
void test_diff_patch__cleanup(void)
|
12
|
-
{
|
13
|
-
cl_git_sandbox_cleanup();
|
14
|
-
}
|
15
|
-
|
16
|
-
#define EXPECTED_HEADER "diff --git a/subdir.txt b/subdir.txt\n" \
|
17
|
-
"deleted file mode 100644\n" \
|
18
|
-
"index e8ee89e..0000000\n" \
|
19
|
-
"--- a/subdir.txt\n" \
|
20
|
-
"+++ /dev/null\n"
|
21
|
-
|
22
|
-
#define EXPECTED_HUNK "@@ -1,2 +0,0 @@\n"
|
23
|
-
|
24
|
-
static int check_removal_cb(
|
25
|
-
void *cb_data,
|
26
|
-
git_diff_delta *delta,
|
27
|
-
git_diff_range *range,
|
28
|
-
char line_origin,
|
29
|
-
const char *formatted_output,
|
30
|
-
size_t output_len)
|
31
|
-
{
|
32
|
-
GIT_UNUSED(cb_data);
|
33
|
-
GIT_UNUSED(output_len);
|
34
|
-
|
35
|
-
switch (line_origin) {
|
36
|
-
case GIT_DIFF_LINE_FILE_HDR:
|
37
|
-
cl_assert_equal_s(EXPECTED_HEADER, formatted_output);
|
38
|
-
cl_assert(range == NULL);
|
39
|
-
goto check_delta;
|
40
|
-
|
41
|
-
case GIT_DIFF_LINE_HUNK_HDR:
|
42
|
-
cl_assert_equal_s(EXPECTED_HUNK, formatted_output);
|
43
|
-
/* Fall through */
|
44
|
-
|
45
|
-
case GIT_DIFF_LINE_CONTEXT:
|
46
|
-
case GIT_DIFF_LINE_DELETION:
|
47
|
-
goto check_range;
|
48
|
-
|
49
|
-
default:
|
50
|
-
/* unexpected code path */
|
51
|
-
return -1;
|
52
|
-
}
|
53
|
-
|
54
|
-
check_range:
|
55
|
-
cl_assert(range != NULL);
|
56
|
-
cl_assert_equal_i(1, range->old_start);
|
57
|
-
cl_assert_equal_i(2, range->old_lines);
|
58
|
-
cl_assert_equal_i(0, range->new_start);
|
59
|
-
cl_assert_equal_i(0, range->new_lines);
|
60
|
-
|
61
|
-
check_delta:
|
62
|
-
cl_assert_equal_s("subdir.txt", delta->old_file.path);
|
63
|
-
cl_assert_equal_s("subdir.txt", delta->new_file.path);
|
64
|
-
cl_assert_equal_i(GIT_DELTA_DELETED, delta->status);
|
65
|
-
|
66
|
-
return 0;
|
67
|
-
}
|
68
|
-
|
69
|
-
void test_diff_patch__can_properly_display_the_removal_of_a_file(void)
|
70
|
-
{
|
71
|
-
/*
|
72
|
-
* $ git diff 26a125e..735b6a2
|
73
|
-
* diff --git a/subdir.txt b/subdir.txt
|
74
|
-
* deleted file mode 100644
|
75
|
-
* index e8ee89e..0000000
|
76
|
-
* --- a/subdir.txt
|
77
|
-
* +++ /dev/null
|
78
|
-
* @@ -1,2 +0,0 @@
|
79
|
-
* -Is it a bird?
|
80
|
-
* -Is it a plane?
|
81
|
-
*/
|
82
|
-
|
83
|
-
const char *one_sha = "26a125e";
|
84
|
-
const char *another_sha = "735b6a2";
|
85
|
-
git_tree *one, *another;
|
86
|
-
git_diff_list *diff;
|
87
|
-
|
88
|
-
one = resolve_commit_oid_to_tree(g_repo, one_sha);
|
89
|
-
another = resolve_commit_oid_to_tree(g_repo, another_sha);
|
90
|
-
|
91
|
-
cl_git_pass(git_diff_tree_to_tree(g_repo, NULL, one, another, &diff));
|
92
|
-
|
93
|
-
cl_git_pass(git_diff_print_patch(diff, NULL, check_removal_cb));
|
94
|
-
|
95
|
-
git_diff_list_free(diff);
|
96
|
-
|
97
|
-
git_tree_free(another);
|
98
|
-
git_tree_free(one);
|
99
|
-
}
|
@@ -1,210 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "diff_helpers.h"
|
3
|
-
|
4
|
-
static git_repository *g_repo = NULL;
|
5
|
-
|
6
|
-
void test_diff_tree__initialize(void)
|
7
|
-
{
|
8
|
-
}
|
9
|
-
|
10
|
-
void test_diff_tree__cleanup(void)
|
11
|
-
{
|
12
|
-
cl_git_sandbox_cleanup();
|
13
|
-
}
|
14
|
-
|
15
|
-
void test_diff_tree__0(void)
|
16
|
-
{
|
17
|
-
/* grabbed a couple of commit oids from the history of the attr repo */
|
18
|
-
const char *a_commit = "605812a";
|
19
|
-
const char *b_commit = "370fe9ec22";
|
20
|
-
const char *c_commit = "f5b0af1fb4f5c";
|
21
|
-
git_tree *a, *b, *c;
|
22
|
-
git_diff_options opts = {0};
|
23
|
-
git_diff_list *diff = NULL;
|
24
|
-
diff_expects exp;
|
25
|
-
|
26
|
-
g_repo = cl_git_sandbox_init("attr");
|
27
|
-
|
28
|
-
cl_assert((a = resolve_commit_oid_to_tree(g_repo, a_commit)) != NULL);
|
29
|
-
cl_assert((b = resolve_commit_oid_to_tree(g_repo, b_commit)) != NULL);
|
30
|
-
cl_assert((c = resolve_commit_oid_to_tree(g_repo, c_commit)) != NULL);
|
31
|
-
|
32
|
-
opts.context_lines = 1;
|
33
|
-
opts.interhunk_lines = 1;
|
34
|
-
|
35
|
-
memset(&exp, 0, sizeof(exp));
|
36
|
-
|
37
|
-
cl_git_pass(git_diff_tree_to_tree(g_repo, &opts, a, b, &diff));
|
38
|
-
|
39
|
-
cl_git_pass(git_diff_foreach(
|
40
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
41
|
-
|
42
|
-
cl_assert(exp.files == 5);
|
43
|
-
cl_assert(exp.file_adds == 2);
|
44
|
-
cl_assert(exp.file_dels == 1);
|
45
|
-
cl_assert(exp.file_mods == 2);
|
46
|
-
|
47
|
-
cl_assert(exp.hunks == 5);
|
48
|
-
|
49
|
-
cl_assert(exp.lines == 7 + 24 + 1 + 6 + 6);
|
50
|
-
cl_assert(exp.line_ctxt == 1);
|
51
|
-
cl_assert(exp.line_adds == 24 + 1 + 5 + 5);
|
52
|
-
cl_assert(exp.line_dels == 7 + 1);
|
53
|
-
|
54
|
-
git_diff_list_free(diff);
|
55
|
-
diff = NULL;
|
56
|
-
|
57
|
-
memset(&exp, 0, sizeof(exp));
|
58
|
-
|
59
|
-
cl_git_pass(git_diff_tree_to_tree(g_repo, &opts, c, b, &diff));
|
60
|
-
|
61
|
-
cl_git_pass(git_diff_foreach(
|
62
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
63
|
-
|
64
|
-
cl_assert(exp.files == 2);
|
65
|
-
cl_assert(exp.file_adds == 0);
|
66
|
-
cl_assert(exp.file_dels == 0);
|
67
|
-
cl_assert(exp.file_mods == 2);
|
68
|
-
|
69
|
-
cl_assert(exp.hunks == 2);
|
70
|
-
|
71
|
-
cl_assert(exp.lines == 8 + 15);
|
72
|
-
cl_assert(exp.line_ctxt == 1);
|
73
|
-
cl_assert(exp.line_adds == 1);
|
74
|
-
cl_assert(exp.line_dels == 7 + 14);
|
75
|
-
|
76
|
-
git_diff_list_free(diff);
|
77
|
-
|
78
|
-
git_tree_free(a);
|
79
|
-
git_tree_free(b);
|
80
|
-
git_tree_free(c);
|
81
|
-
}
|
82
|
-
|
83
|
-
void test_diff_tree__options(void)
|
84
|
-
{
|
85
|
-
/* grabbed a couple of commit oids from the history of the attr repo */
|
86
|
-
const char *a_commit = "6bab5c79cd5140d0";
|
87
|
-
const char *b_commit = "605812ab7fe421fdd";
|
88
|
-
const char *c_commit = "f5b0af1fb4f5";
|
89
|
-
const char *d_commit = "a97cc019851";
|
90
|
-
git_tree *a, *b, *c, *d;
|
91
|
-
git_diff_options opts = {0};
|
92
|
-
git_diff_list *diff = NULL;
|
93
|
-
diff_expects actual;
|
94
|
-
int test_ab_or_cd[] = { 0, 0, 0, 0, 1, 1, 1, 1, 1 };
|
95
|
-
git_diff_options test_options[] = {
|
96
|
-
/* a vs b tests */
|
97
|
-
{ GIT_DIFF_NORMAL, 1, 1, NULL, NULL, {0} },
|
98
|
-
{ GIT_DIFF_NORMAL, 3, 1, NULL, NULL, {0} },
|
99
|
-
{ GIT_DIFF_REVERSE, 2, 1, NULL, NULL, {0} },
|
100
|
-
{ GIT_DIFF_FORCE_TEXT, 2, 1, NULL, NULL, {0} },
|
101
|
-
/* c vs d tests */
|
102
|
-
{ GIT_DIFF_NORMAL, 3, 1, NULL, NULL, {0} },
|
103
|
-
{ GIT_DIFF_IGNORE_WHITESPACE, 3, 1, NULL, NULL, {0} },
|
104
|
-
{ GIT_DIFF_IGNORE_WHITESPACE_CHANGE, 3, 1, NULL, NULL, {0} },
|
105
|
-
{ GIT_DIFF_IGNORE_WHITESPACE_EOL, 3, 1, NULL, NULL, {0} },
|
106
|
-
{ GIT_DIFF_IGNORE_WHITESPACE | GIT_DIFF_REVERSE, 1, 1, NULL, NULL, {0} },
|
107
|
-
};
|
108
|
-
/* to generate these values:
|
109
|
-
* - cd to tests/resources/attr,
|
110
|
-
* - mv .gitted .git
|
111
|
-
* - git diff [options] 6bab5c79cd5140d0 605812ab7fe421fdd
|
112
|
-
* - mv .git .gitted
|
113
|
-
*/
|
114
|
-
diff_expects test_expects[] = {
|
115
|
-
/* a vs b tests */
|
116
|
-
{ 5, 3, 0, 2, 0, 0, 0, 4, 0, 0, 51, 2, 46, 3 },
|
117
|
-
{ 5, 3, 0, 2, 0, 0, 0, 4, 0, 0, 53, 4, 46, 3 },
|
118
|
-
{ 5, 0, 3, 2, 0, 0, 0, 4, 0, 0, 52, 3, 3, 46 },
|
119
|
-
{ 5, 3, 0, 2, 0, 0, 0, 5, 0, 0, 54, 3, 47, 4 },
|
120
|
-
/* c vs d tests */
|
121
|
-
{ 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 22, 9, 10, 3 },
|
122
|
-
{ 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 19, 12, 7, 0 },
|
123
|
-
{ 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 20, 11, 8, 1 },
|
124
|
-
{ 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 20, 11, 8, 1 },
|
125
|
-
{ 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 18, 11, 0, 7 },
|
126
|
-
{ 0 },
|
127
|
-
};
|
128
|
-
diff_expects *expected;
|
129
|
-
int i;
|
130
|
-
|
131
|
-
g_repo = cl_git_sandbox_init("attr");
|
132
|
-
|
133
|
-
cl_assert((a = resolve_commit_oid_to_tree(g_repo, a_commit)) != NULL);
|
134
|
-
cl_assert((b = resolve_commit_oid_to_tree(g_repo, b_commit)) != NULL);
|
135
|
-
cl_assert((c = resolve_commit_oid_to_tree(g_repo, c_commit)) != NULL);
|
136
|
-
cl_assert((d = resolve_commit_oid_to_tree(g_repo, d_commit)) != NULL);
|
137
|
-
|
138
|
-
for (i = 0; test_expects[i].files > 0; i++) {
|
139
|
-
memset(&actual, 0, sizeof(actual)); /* clear accumulator */
|
140
|
-
opts = test_options[i];
|
141
|
-
|
142
|
-
if (test_ab_or_cd[i] == 0)
|
143
|
-
cl_git_pass(git_diff_tree_to_tree(g_repo, &opts, a, b, &diff));
|
144
|
-
else
|
145
|
-
cl_git_pass(git_diff_tree_to_tree(g_repo, &opts, c, d, &diff));
|
146
|
-
|
147
|
-
cl_git_pass(git_diff_foreach(
|
148
|
-
diff, &actual, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
149
|
-
|
150
|
-
expected = &test_expects[i];
|
151
|
-
cl_assert_equal_i(actual.files, expected->files);
|
152
|
-
cl_assert_equal_i(actual.file_adds, expected->file_adds);
|
153
|
-
cl_assert_equal_i(actual.file_dels, expected->file_dels);
|
154
|
-
cl_assert_equal_i(actual.file_mods, expected->file_mods);
|
155
|
-
cl_assert_equal_i(actual.hunks, expected->hunks);
|
156
|
-
cl_assert_equal_i(actual.lines, expected->lines);
|
157
|
-
cl_assert_equal_i(actual.line_ctxt, expected->line_ctxt);
|
158
|
-
cl_assert_equal_i(actual.line_adds, expected->line_adds);
|
159
|
-
cl_assert_equal_i(actual.line_dels, expected->line_dels);
|
160
|
-
|
161
|
-
git_diff_list_free(diff);
|
162
|
-
diff = NULL;
|
163
|
-
}
|
164
|
-
|
165
|
-
git_tree_free(a);
|
166
|
-
git_tree_free(b);
|
167
|
-
git_tree_free(c);
|
168
|
-
git_tree_free(d);
|
169
|
-
}
|
170
|
-
|
171
|
-
void test_diff_tree__bare(void)
|
172
|
-
{
|
173
|
-
const char *a_commit = "8496071c1b46c85";
|
174
|
-
const char *b_commit = "be3563ae3f79";
|
175
|
-
git_tree *a, *b;
|
176
|
-
git_diff_options opts = {0};
|
177
|
-
git_diff_list *diff = NULL;
|
178
|
-
diff_expects exp;
|
179
|
-
|
180
|
-
g_repo = cl_git_sandbox_init("testrepo.git");
|
181
|
-
|
182
|
-
cl_assert((a = resolve_commit_oid_to_tree(g_repo, a_commit)) != NULL);
|
183
|
-
cl_assert((b = resolve_commit_oid_to_tree(g_repo, b_commit)) != NULL);
|
184
|
-
|
185
|
-
opts.context_lines = 1;
|
186
|
-
opts.interhunk_lines = 1;
|
187
|
-
|
188
|
-
memset(&exp, 0, sizeof(exp));
|
189
|
-
|
190
|
-
cl_git_pass(git_diff_tree_to_tree(g_repo, &opts, a, b, &diff));
|
191
|
-
|
192
|
-
cl_git_pass(git_diff_foreach(
|
193
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
194
|
-
|
195
|
-
cl_assert(exp.files == 3);
|
196
|
-
cl_assert(exp.file_adds == 2);
|
197
|
-
cl_assert(exp.file_dels == 0);
|
198
|
-
cl_assert(exp.file_mods == 1);
|
199
|
-
|
200
|
-
cl_assert(exp.hunks == 3);
|
201
|
-
|
202
|
-
cl_assert(exp.lines == 4);
|
203
|
-
cl_assert(exp.line_ctxt == 0);
|
204
|
-
cl_assert(exp.line_adds == 3);
|
205
|
-
cl_assert(exp.line_dels == 1);
|
206
|
-
|
207
|
-
git_diff_list_free(diff);
|
208
|
-
git_tree_free(a);
|
209
|
-
git_tree_free(b);
|
210
|
-
}
|
@@ -1,543 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "diff_helpers.h"
|
3
|
-
|
4
|
-
static git_repository *g_repo = NULL;
|
5
|
-
|
6
|
-
void test_diff_workdir__initialize(void)
|
7
|
-
{
|
8
|
-
}
|
9
|
-
|
10
|
-
void test_diff_workdir__cleanup(void)
|
11
|
-
{
|
12
|
-
cl_git_sandbox_cleanup();
|
13
|
-
}
|
14
|
-
|
15
|
-
void test_diff_workdir__to_index(void)
|
16
|
-
{
|
17
|
-
git_diff_options opts = {0};
|
18
|
-
git_diff_list *diff = NULL;
|
19
|
-
diff_expects exp;
|
20
|
-
|
21
|
-
g_repo = cl_git_sandbox_init("status");
|
22
|
-
|
23
|
-
opts.context_lines = 3;
|
24
|
-
opts.interhunk_lines = 1;
|
25
|
-
opts.flags |= GIT_DIFF_INCLUDE_IGNORED | GIT_DIFF_INCLUDE_UNTRACKED;
|
26
|
-
|
27
|
-
memset(&exp, 0, sizeof(exp));
|
28
|
-
|
29
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
30
|
-
|
31
|
-
cl_git_pass(git_diff_foreach(
|
32
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
33
|
-
|
34
|
-
/* to generate these values:
|
35
|
-
* - cd to tests/resources/status,
|
36
|
-
* - mv .gitted .git
|
37
|
-
* - git diff --name-status
|
38
|
-
* - git diff
|
39
|
-
* - mv .git .gitted
|
40
|
-
*/
|
41
|
-
cl_assert_equal_i(13, exp.files);
|
42
|
-
cl_assert_equal_i(0, exp.file_adds);
|
43
|
-
cl_assert_equal_i(4, exp.file_dels);
|
44
|
-
cl_assert_equal_i(4, exp.file_mods);
|
45
|
-
cl_assert_equal_i(1, exp.file_ignored);
|
46
|
-
cl_assert_equal_i(4, exp.file_untracked);
|
47
|
-
|
48
|
-
cl_assert_equal_i(8, exp.hunks);
|
49
|
-
|
50
|
-
cl_assert_equal_i(14, exp.lines);
|
51
|
-
cl_assert_equal_i(5, exp.line_ctxt);
|
52
|
-
cl_assert_equal_i(4, exp.line_adds);
|
53
|
-
cl_assert_equal_i(5, exp.line_dels);
|
54
|
-
|
55
|
-
git_diff_list_free(diff);
|
56
|
-
}
|
57
|
-
|
58
|
-
void test_diff_workdir__to_tree(void)
|
59
|
-
{
|
60
|
-
/* grabbed a couple of commit oids from the history of the attr repo */
|
61
|
-
const char *a_commit = "26a125ee1bf"; /* the current HEAD */
|
62
|
-
const char *b_commit = "0017bd4ab1ec3"; /* the start */
|
63
|
-
git_tree *a, *b;
|
64
|
-
git_diff_options opts = {0};
|
65
|
-
git_diff_list *diff = NULL;
|
66
|
-
git_diff_list *diff2 = NULL;
|
67
|
-
diff_expects exp;
|
68
|
-
|
69
|
-
g_repo = cl_git_sandbox_init("status");
|
70
|
-
|
71
|
-
a = resolve_commit_oid_to_tree(g_repo, a_commit);
|
72
|
-
b = resolve_commit_oid_to_tree(g_repo, b_commit);
|
73
|
-
|
74
|
-
opts.context_lines = 3;
|
75
|
-
opts.interhunk_lines = 1;
|
76
|
-
opts.flags |= GIT_DIFF_INCLUDE_IGNORED | GIT_DIFF_INCLUDE_UNTRACKED;
|
77
|
-
|
78
|
-
memset(&exp, 0, sizeof(exp));
|
79
|
-
|
80
|
-
/* You can't really generate the equivalent of git_diff_workdir_to_tree()
|
81
|
-
* using C git. It really wants to interpose the index into the diff.
|
82
|
-
*
|
83
|
-
* To validate the following results with command line git, I ran the
|
84
|
-
* following:
|
85
|
-
* - git ls-tree 26a125
|
86
|
-
* - find . ! -path ./.git/\* -a -type f | git hash-object --stdin-paths
|
87
|
-
* The results are documented at the bottom of this file in the
|
88
|
-
* long comment entitled "PREPARATION OF TEST DATA".
|
89
|
-
*/
|
90
|
-
cl_git_pass(git_diff_workdir_to_tree(g_repo, &opts, a, &diff));
|
91
|
-
|
92
|
-
cl_git_pass(git_diff_foreach(
|
93
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
94
|
-
|
95
|
-
cl_assert_equal_i(14, exp.files);
|
96
|
-
cl_assert_equal_i(0, exp.file_adds);
|
97
|
-
cl_assert_equal_i(4, exp.file_dels);
|
98
|
-
cl_assert_equal_i(4, exp.file_mods);
|
99
|
-
cl_assert_equal_i(1, exp.file_ignored);
|
100
|
-
cl_assert_equal_i(5, exp.file_untracked);
|
101
|
-
|
102
|
-
/* Since there is no git diff equivalent, let's just assume that the
|
103
|
-
* text diffs produced by git_diff_foreach are accurate here. We will
|
104
|
-
* do more apples-to-apples test comparison below.
|
105
|
-
*/
|
106
|
-
|
107
|
-
git_diff_list_free(diff);
|
108
|
-
diff = NULL;
|
109
|
-
memset(&exp, 0, sizeof(exp));
|
110
|
-
|
111
|
-
/* This is a compatible emulation of "git diff <sha>" which looks like
|
112
|
-
* a workdir to tree diff (even though it is not really). This is what
|
113
|
-
* you would get from "git diff --name-status 26a125ee1bf"
|
114
|
-
*/
|
115
|
-
cl_git_pass(git_diff_index_to_tree(g_repo, &opts, a, &diff));
|
116
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff2));
|
117
|
-
cl_git_pass(git_diff_merge(diff, diff2));
|
118
|
-
git_diff_list_free(diff2);
|
119
|
-
|
120
|
-
cl_git_pass(git_diff_foreach(
|
121
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
122
|
-
|
123
|
-
cl_assert_equal_i(15, exp.files);
|
124
|
-
cl_assert_equal_i(2, exp.file_adds);
|
125
|
-
cl_assert_equal_i(5, exp.file_dels);
|
126
|
-
cl_assert_equal_i(4, exp.file_mods);
|
127
|
-
cl_assert_equal_i(1, exp.file_ignored);
|
128
|
-
cl_assert_equal_i(3, exp.file_untracked);
|
129
|
-
|
130
|
-
cl_assert_equal_i(11, exp.hunks);
|
131
|
-
|
132
|
-
cl_assert_equal_i(17, exp.lines);
|
133
|
-
cl_assert_equal_i(4, exp.line_ctxt);
|
134
|
-
cl_assert_equal_i(8, exp.line_adds);
|
135
|
-
cl_assert_equal_i(5, exp.line_dels);
|
136
|
-
|
137
|
-
git_diff_list_free(diff);
|
138
|
-
diff = NULL;
|
139
|
-
memset(&exp, 0, sizeof(exp));
|
140
|
-
|
141
|
-
/* Again, emulating "git diff <sha>" for testing purposes using
|
142
|
-
* "git diff --name-status 0017bd4ab1ec3" instead.
|
143
|
-
*/
|
144
|
-
cl_git_pass(git_diff_index_to_tree(g_repo, &opts, b, &diff));
|
145
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff2));
|
146
|
-
cl_git_pass(git_diff_merge(diff, diff2));
|
147
|
-
git_diff_list_free(diff2);
|
148
|
-
|
149
|
-
cl_git_pass(git_diff_foreach(
|
150
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
151
|
-
|
152
|
-
cl_assert_equal_i(16, exp.files);
|
153
|
-
cl_assert_equal_i(5, exp.file_adds);
|
154
|
-
cl_assert_equal_i(4, exp.file_dels);
|
155
|
-
cl_assert_equal_i(3, exp.file_mods);
|
156
|
-
cl_assert_equal_i(1, exp.file_ignored);
|
157
|
-
cl_assert_equal_i(3, exp.file_untracked);
|
158
|
-
|
159
|
-
cl_assert_equal_i(12, exp.hunks);
|
160
|
-
|
161
|
-
cl_assert_equal_i(19, exp.lines);
|
162
|
-
cl_assert_equal_i(3, exp.line_ctxt);
|
163
|
-
cl_assert_equal_i(12, exp.line_adds);
|
164
|
-
cl_assert_equal_i(4, exp.line_dels);
|
165
|
-
|
166
|
-
git_diff_list_free(diff);
|
167
|
-
|
168
|
-
git_tree_free(a);
|
169
|
-
git_tree_free(b);
|
170
|
-
}
|
171
|
-
|
172
|
-
void test_diff_workdir__to_index_with_pathspec(void)
|
173
|
-
{
|
174
|
-
git_diff_options opts = {0};
|
175
|
-
git_diff_list *diff = NULL;
|
176
|
-
diff_expects exp;
|
177
|
-
char *pathspec = NULL;
|
178
|
-
|
179
|
-
g_repo = cl_git_sandbox_init("status");
|
180
|
-
|
181
|
-
opts.context_lines = 3;
|
182
|
-
opts.interhunk_lines = 1;
|
183
|
-
opts.flags |= GIT_DIFF_INCLUDE_IGNORED | GIT_DIFF_INCLUDE_UNTRACKED;
|
184
|
-
opts.pathspec.strings = &pathspec;
|
185
|
-
opts.pathspec.count = 1;
|
186
|
-
|
187
|
-
memset(&exp, 0, sizeof(exp));
|
188
|
-
|
189
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
190
|
-
cl_git_pass(git_diff_foreach(diff, &exp, diff_file_fn, NULL, NULL));
|
191
|
-
|
192
|
-
cl_assert_equal_i(13, exp.files);
|
193
|
-
cl_assert_equal_i(0, exp.file_adds);
|
194
|
-
cl_assert_equal_i(4, exp.file_dels);
|
195
|
-
cl_assert_equal_i(4, exp.file_mods);
|
196
|
-
cl_assert_equal_i(1, exp.file_ignored);
|
197
|
-
cl_assert_equal_i(4, exp.file_untracked);
|
198
|
-
|
199
|
-
git_diff_list_free(diff);
|
200
|
-
|
201
|
-
memset(&exp, 0, sizeof(exp));
|
202
|
-
pathspec = "modified_file";
|
203
|
-
|
204
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
205
|
-
cl_git_pass(git_diff_foreach(diff, &exp, diff_file_fn, NULL, NULL));
|
206
|
-
|
207
|
-
cl_assert_equal_i(1, exp.files);
|
208
|
-
cl_assert_equal_i(0, exp.file_adds);
|
209
|
-
cl_assert_equal_i(0, exp.file_dels);
|
210
|
-
cl_assert_equal_i(1, exp.file_mods);
|
211
|
-
cl_assert_equal_i(0, exp.file_ignored);
|
212
|
-
cl_assert_equal_i(0, exp.file_untracked);
|
213
|
-
|
214
|
-
git_diff_list_free(diff);
|
215
|
-
|
216
|
-
memset(&exp, 0, sizeof(exp));
|
217
|
-
pathspec = "subdir";
|
218
|
-
|
219
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
220
|
-
cl_git_pass(git_diff_foreach(diff, &exp, diff_file_fn, NULL, NULL));
|
221
|
-
|
222
|
-
cl_assert_equal_i(3, exp.files);
|
223
|
-
cl_assert_equal_i(0, exp.file_adds);
|
224
|
-
cl_assert_equal_i(1, exp.file_dels);
|
225
|
-
cl_assert_equal_i(1, exp.file_mods);
|
226
|
-
cl_assert_equal_i(0, exp.file_ignored);
|
227
|
-
cl_assert_equal_i(1, exp.file_untracked);
|
228
|
-
|
229
|
-
git_diff_list_free(diff);
|
230
|
-
|
231
|
-
memset(&exp, 0, sizeof(exp));
|
232
|
-
pathspec = "*_deleted";
|
233
|
-
|
234
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
235
|
-
cl_git_pass(git_diff_foreach(diff, &exp, diff_file_fn, NULL, NULL));
|
236
|
-
|
237
|
-
cl_assert_equal_i(2, exp.files);
|
238
|
-
cl_assert_equal_i(0, exp.file_adds);
|
239
|
-
cl_assert_equal_i(2, exp.file_dels);
|
240
|
-
cl_assert_equal_i(0, exp.file_mods);
|
241
|
-
cl_assert_equal_i(0, exp.file_ignored);
|
242
|
-
cl_assert_equal_i(0, exp.file_untracked);
|
243
|
-
|
244
|
-
git_diff_list_free(diff);
|
245
|
-
}
|
246
|
-
|
247
|
-
void test_diff_workdir__filemode_changes(void)
|
248
|
-
{
|
249
|
-
git_config *cfg;
|
250
|
-
git_diff_list *diff = NULL;
|
251
|
-
diff_expects exp;
|
252
|
-
|
253
|
-
if (!cl_is_chmod_supported())
|
254
|
-
return;
|
255
|
-
|
256
|
-
g_repo = cl_git_sandbox_init("issue_592");
|
257
|
-
|
258
|
-
cl_git_pass(git_repository_config(&cfg, g_repo));
|
259
|
-
cl_git_pass(git_config_set_bool(cfg, "core.filemode", true));
|
260
|
-
|
261
|
-
/* test once with no mods */
|
262
|
-
|
263
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, NULL, &diff));
|
264
|
-
|
265
|
-
memset(&exp, 0, sizeof(exp));
|
266
|
-
cl_git_pass(git_diff_foreach(
|
267
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
268
|
-
|
269
|
-
cl_assert_equal_i(0, exp.files);
|
270
|
-
cl_assert_equal_i(0, exp.file_mods);
|
271
|
-
cl_assert_equal_i(0, exp.hunks);
|
272
|
-
|
273
|
-
git_diff_list_free(diff);
|
274
|
-
|
275
|
-
/* chmod file and test again */
|
276
|
-
|
277
|
-
cl_assert(cl_toggle_filemode("issue_592/a.txt"));
|
278
|
-
|
279
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, NULL, &diff));
|
280
|
-
|
281
|
-
memset(&exp, 0, sizeof(exp));
|
282
|
-
cl_git_pass(git_diff_foreach(
|
283
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
284
|
-
|
285
|
-
cl_assert_equal_i(1, exp.files);
|
286
|
-
cl_assert_equal_i(1, exp.file_mods);
|
287
|
-
cl_assert_equal_i(0, exp.hunks);
|
288
|
-
|
289
|
-
git_diff_list_free(diff);
|
290
|
-
|
291
|
-
cl_assert(cl_toggle_filemode("issue_592/a.txt"));
|
292
|
-
git_config_free(cfg);
|
293
|
-
}
|
294
|
-
|
295
|
-
void test_diff_workdir__filemode_changes_with_filemode_false(void)
|
296
|
-
{
|
297
|
-
git_config *cfg;
|
298
|
-
git_diff_list *diff = NULL;
|
299
|
-
diff_expects exp;
|
300
|
-
|
301
|
-
if (!cl_is_chmod_supported())
|
302
|
-
return;
|
303
|
-
|
304
|
-
g_repo = cl_git_sandbox_init("issue_592");
|
305
|
-
|
306
|
-
cl_git_pass(git_repository_config(&cfg, g_repo));
|
307
|
-
cl_git_pass(git_config_set_bool(cfg, "core.filemode", false));
|
308
|
-
|
309
|
-
/* test once with no mods */
|
310
|
-
|
311
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, NULL, &diff));
|
312
|
-
|
313
|
-
memset(&exp, 0, sizeof(exp));
|
314
|
-
cl_git_pass(git_diff_foreach(
|
315
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
316
|
-
|
317
|
-
cl_assert_equal_i(0, exp.files);
|
318
|
-
cl_assert_equal_i(0, exp.file_mods);
|
319
|
-
cl_assert_equal_i(0, exp.hunks);
|
320
|
-
|
321
|
-
git_diff_list_free(diff);
|
322
|
-
|
323
|
-
/* chmod file and test again */
|
324
|
-
|
325
|
-
cl_assert(cl_toggle_filemode("issue_592/a.txt"));
|
326
|
-
|
327
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, NULL, &diff));
|
328
|
-
|
329
|
-
memset(&exp, 0, sizeof(exp));
|
330
|
-
cl_git_pass(git_diff_foreach(
|
331
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
332
|
-
|
333
|
-
cl_assert_equal_i(0, exp.files);
|
334
|
-
cl_assert_equal_i(0, exp.file_mods);
|
335
|
-
cl_assert_equal_i(0, exp.hunks);
|
336
|
-
|
337
|
-
git_diff_list_free(diff);
|
338
|
-
|
339
|
-
cl_assert(cl_toggle_filemode("issue_592/a.txt"));
|
340
|
-
git_config_free(cfg);
|
341
|
-
}
|
342
|
-
|
343
|
-
void test_diff_workdir__head_index_and_workdir_all_differ(void)
|
344
|
-
{
|
345
|
-
git_diff_options opts = {0};
|
346
|
-
git_diff_list *diff_i2t = NULL, *diff_w2i = NULL;
|
347
|
-
diff_expects exp;
|
348
|
-
char *pathspec = "staged_changes_modified_file";
|
349
|
-
git_tree *tree;
|
350
|
-
|
351
|
-
/* For this file,
|
352
|
-
* - head->index diff has 1 line of context, 1 line of diff
|
353
|
-
* - index->workdir diff has 2 lines of context, 1 line of diff
|
354
|
-
* but
|
355
|
-
* - head->workdir diff has 1 line of context, 2 lines of diff
|
356
|
-
* Let's make sure the right one is returned from each fn.
|
357
|
-
*/
|
358
|
-
|
359
|
-
g_repo = cl_git_sandbox_init("status");
|
360
|
-
|
361
|
-
tree = resolve_commit_oid_to_tree(g_repo, "26a125ee1bfc5df1e1b2e9441bbe63c8a7ae989f");
|
362
|
-
|
363
|
-
opts.pathspec.strings = &pathspec;
|
364
|
-
opts.pathspec.count = 1;
|
365
|
-
|
366
|
-
cl_git_pass(git_diff_index_to_tree(g_repo, &opts, tree, &diff_i2t));
|
367
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff_w2i));
|
368
|
-
|
369
|
-
memset(&exp, 0, sizeof(exp));
|
370
|
-
cl_git_pass(git_diff_foreach(
|
371
|
-
diff_i2t, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
372
|
-
cl_assert_equal_i(1, exp.files);
|
373
|
-
cl_assert_equal_i(0, exp.file_adds);
|
374
|
-
cl_assert_equal_i(0, exp.file_dels);
|
375
|
-
cl_assert_equal_i(1, exp.file_mods);
|
376
|
-
cl_assert_equal_i(1, exp.hunks);
|
377
|
-
cl_assert_equal_i(2, exp.lines);
|
378
|
-
cl_assert_equal_i(1, exp.line_ctxt);
|
379
|
-
cl_assert_equal_i(1, exp.line_adds);
|
380
|
-
cl_assert_equal_i(0, exp.line_dels);
|
381
|
-
|
382
|
-
memset(&exp, 0, sizeof(exp));
|
383
|
-
cl_git_pass(git_diff_foreach(
|
384
|
-
diff_w2i, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
385
|
-
cl_assert_equal_i(1, exp.files);
|
386
|
-
cl_assert_equal_i(0, exp.file_adds);
|
387
|
-
cl_assert_equal_i(0, exp.file_dels);
|
388
|
-
cl_assert_equal_i(1, exp.file_mods);
|
389
|
-
cl_assert_equal_i(1, exp.hunks);
|
390
|
-
cl_assert_equal_i(3, exp.lines);
|
391
|
-
cl_assert_equal_i(2, exp.line_ctxt);
|
392
|
-
cl_assert_equal_i(1, exp.line_adds);
|
393
|
-
cl_assert_equal_i(0, exp.line_dels);
|
394
|
-
|
395
|
-
cl_git_pass(git_diff_merge(diff_i2t, diff_w2i));
|
396
|
-
|
397
|
-
memset(&exp, 0, sizeof(exp));
|
398
|
-
cl_git_pass(git_diff_foreach(
|
399
|
-
diff_i2t, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
400
|
-
cl_assert_equal_i(1, exp.files);
|
401
|
-
cl_assert_equal_i(0, exp.file_adds);
|
402
|
-
cl_assert_equal_i(0, exp.file_dels);
|
403
|
-
cl_assert_equal_i(1, exp.file_mods);
|
404
|
-
cl_assert_equal_i(1, exp.hunks);
|
405
|
-
cl_assert_equal_i(3, exp.lines);
|
406
|
-
cl_assert_equal_i(1, exp.line_ctxt);
|
407
|
-
cl_assert_equal_i(2, exp.line_adds);
|
408
|
-
cl_assert_equal_i(0, exp.line_dels);
|
409
|
-
|
410
|
-
git_diff_list_free(diff_i2t);
|
411
|
-
git_diff_list_free(diff_w2i);
|
412
|
-
}
|
413
|
-
|
414
|
-
void test_diff_workdir__eof_newline_changes(void)
|
415
|
-
{
|
416
|
-
git_diff_options opts = {0};
|
417
|
-
git_diff_list *diff = NULL;
|
418
|
-
diff_expects exp;
|
419
|
-
char *pathspec = "current_file";
|
420
|
-
|
421
|
-
g_repo = cl_git_sandbox_init("status");
|
422
|
-
|
423
|
-
opts.pathspec.strings = &pathspec;
|
424
|
-
opts.pathspec.count = 1;
|
425
|
-
|
426
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
427
|
-
|
428
|
-
memset(&exp, 0, sizeof(exp));
|
429
|
-
cl_git_pass(git_diff_foreach(
|
430
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
431
|
-
cl_assert_equal_i(0, exp.files);
|
432
|
-
cl_assert_equal_i(0, exp.file_adds);
|
433
|
-
cl_assert_equal_i(0, exp.file_dels);
|
434
|
-
cl_assert_equal_i(0, exp.file_mods);
|
435
|
-
cl_assert_equal_i(0, exp.hunks);
|
436
|
-
cl_assert_equal_i(0, exp.lines);
|
437
|
-
cl_assert_equal_i(0, exp.line_ctxt);
|
438
|
-
cl_assert_equal_i(0, exp.line_adds);
|
439
|
-
cl_assert_equal_i(0, exp.line_dels);
|
440
|
-
|
441
|
-
git_diff_list_free(diff);
|
442
|
-
|
443
|
-
cl_git_append2file("status/current_file", "\n");
|
444
|
-
|
445
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
446
|
-
|
447
|
-
memset(&exp, 0, sizeof(exp));
|
448
|
-
cl_git_pass(git_diff_foreach(
|
449
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
450
|
-
cl_assert_equal_i(1, exp.files);
|
451
|
-
cl_assert_equal_i(0, exp.file_adds);
|
452
|
-
cl_assert_equal_i(0, exp.file_dels);
|
453
|
-
cl_assert_equal_i(1, exp.file_mods);
|
454
|
-
cl_assert_equal_i(1, exp.hunks);
|
455
|
-
cl_assert_equal_i(2, exp.lines);
|
456
|
-
cl_assert_equal_i(1, exp.line_ctxt);
|
457
|
-
cl_assert_equal_i(1, exp.line_adds);
|
458
|
-
cl_assert_equal_i(0, exp.line_dels);
|
459
|
-
|
460
|
-
git_diff_list_free(diff);
|
461
|
-
|
462
|
-
cl_git_rewritefile("status/current_file", "current_file");
|
463
|
-
|
464
|
-
cl_git_pass(git_diff_workdir_to_index(g_repo, &opts, &diff));
|
465
|
-
|
466
|
-
memset(&exp, 0, sizeof(exp));
|
467
|
-
cl_git_pass(git_diff_foreach(
|
468
|
-
diff, &exp, diff_file_fn, diff_hunk_fn, diff_line_fn));
|
469
|
-
cl_assert_equal_i(1, exp.files);
|
470
|
-
cl_assert_equal_i(0, exp.file_adds);
|
471
|
-
cl_assert_equal_i(0, exp.file_dels);
|
472
|
-
cl_assert_equal_i(1, exp.file_mods);
|
473
|
-
cl_assert_equal_i(1, exp.hunks);
|
474
|
-
cl_assert_equal_i(3, exp.lines);
|
475
|
-
cl_assert_equal_i(0, exp.line_ctxt);
|
476
|
-
cl_assert_equal_i(1, exp.line_adds);
|
477
|
-
cl_assert_equal_i(2, exp.line_dels);
|
478
|
-
|
479
|
-
git_diff_list_free(diff);
|
480
|
-
}
|
481
|
-
|
482
|
-
/* PREPARATION OF TEST DATA
|
483
|
-
*
|
484
|
-
* Since there is no command line equivalent of git_diff_workdir_to_tree,
|
485
|
-
* it was a bit of a pain to confirm that I was getting the expected
|
486
|
-
* results in the first part of this tests. Here is what I ended up
|
487
|
-
* doing to set my expectation for the file counts and results:
|
488
|
-
*
|
489
|
-
* Running "git ls-tree 26a125" and "git ls-tree aa27a6" shows:
|
490
|
-
*
|
491
|
-
* A a0de7e0ac200c489c41c59dfa910154a70264e6e current_file
|
492
|
-
* B 5452d32f1dd538eb0405e8a83cc185f79e25e80f file_deleted
|
493
|
-
* C 452e4244b5d083ddf0460acf1ecc74db9dcfa11a modified_file
|
494
|
-
* D 32504b727382542f9f089e24fddac5e78533e96c staged_changes
|
495
|
-
* E 061d42a44cacde5726057b67558821d95db96f19 staged_changes_file_deleted
|
496
|
-
* F 70bd9443ada07063e7fbf0b3ff5c13f7494d89c2 staged_changes_modified_file
|
497
|
-
* G e9b9107f290627c04d097733a10055af941f6bca staged_delete_file_deleted
|
498
|
-
* H dabc8af9bd6e9f5bbe96a176f1a24baf3d1f8916 staged_delete_modified_file
|
499
|
-
* I 53ace0d1cc1145a5f4fe4f78a186a60263190733 subdir/current_file
|
500
|
-
* J 1888c805345ba265b0ee9449b8877b6064592058 subdir/deleted_file
|
501
|
-
* K a6191982709b746d5650e93c2acf34ef74e11504 subdir/modified_file
|
502
|
-
* L e8ee89e15bbe9b20137715232387b3de5b28972e subdir.txt
|
503
|
-
*
|
504
|
-
* --------
|
505
|
-
*
|
506
|
-
* find . ! -path ./.git/\* -a -type f | git hash-object --stdin-paths
|
507
|
-
*
|
508
|
-
* A a0de7e0ac200c489c41c59dfa910154a70264e6e current_file
|
509
|
-
* M 6a79f808a9c6bc9531ac726c184bbcd9351ccf11 ignored_file
|
510
|
-
* C 0a539630525aca2e7bc84975958f92f10a64c9b6 modified_file
|
511
|
-
* N d4fa8600b4f37d7516bef4816ae2c64dbf029e3a new_file
|
512
|
-
* D 55d316c9ba708999f1918e9677d01dfcae69c6b9 staged_changes
|
513
|
-
* F 011c3440d5c596e21d836aa6d7b10eb581f68c49 staged_changes_modified_file
|
514
|
-
* H dabc8af9bd6e9f5bbe96a176f1a24baf3d1f8916 staged_delete_modified_file
|
515
|
-
* O 529a16e8e762d4acb7b9636ff540a00831f9155a staged_new_file
|
516
|
-
* P 8b090c06d14ffa09c4e880088ebad33893f921d1 staged_new_file_modified_file
|
517
|
-
* I 53ace0d1cc1145a5f4fe4f78a186a60263190733 subdir/current_file
|
518
|
-
* K 57274b75eeb5f36fd55527806d567b2240a20c57 subdir/modified_file
|
519
|
-
* Q 80a86a6931b91bc01c2dbf5ca55bdd24ad1ef466 subdir/new_file
|
520
|
-
* L e8ee89e15bbe9b20137715232387b3de5b28972e subdir.txt
|
521
|
-
*
|
522
|
-
* --------
|
523
|
-
*
|
524
|
-
* A - current_file (UNMODIFIED) -> not in results
|
525
|
-
* B D file_deleted
|
526
|
-
* M I ignored_file (IGNORED)
|
527
|
-
* C M modified_file
|
528
|
-
* N U new_file (UNTRACKED)
|
529
|
-
* D M staged_changes
|
530
|
-
* E D staged_changes_file_deleted
|
531
|
-
* F M staged_changes_modified_file
|
532
|
-
* G D staged_delete_file_deleted
|
533
|
-
* H - staged_delete_modified_file (UNMODIFIED) -> not in results
|
534
|
-
* O U staged_new_file
|
535
|
-
* P U staged_new_file_modified_file
|
536
|
-
* I - subdir/current_file (UNMODIFIED) -> not in results
|
537
|
-
* J D subdir/deleted_file
|
538
|
-
* K M subdir/modified_file
|
539
|
-
* Q U subdir/new_file
|
540
|
-
* L - subdir.txt (UNMODIFIED) -> not in results
|
541
|
-
*
|
542
|
-
* Expect 13 files, 0 ADD, 4 DEL, 4 MOD, 1 IGN, 4 UNTR
|
543
|
-
*/
|