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,55 +0,0 @@
|
|
1
|
-
#ifndef __CLAR_LIBGIT2__
|
2
|
-
#define __CLAR_LIBGIT2__
|
3
|
-
|
4
|
-
#include "clar.h"
|
5
|
-
#include <git2.h>
|
6
|
-
#include "common.h"
|
7
|
-
|
8
|
-
/**
|
9
|
-
* Special wrapper for `clar_must_pass` that passes
|
10
|
-
* the last library error as the test failure message.
|
11
|
-
*
|
12
|
-
* Use this wrapper around all `git_` library calls that
|
13
|
-
* return error codes!
|
14
|
-
*/
|
15
|
-
#define cl_git_pass(expr) do { \
|
16
|
-
giterr_clear(); \
|
17
|
-
if ((expr) != 0) \
|
18
|
-
clar__assert(0, __FILE__, __LINE__, "Function call failed: " #expr, giterr_last() ? giterr_last()->message : NULL, 1); \
|
19
|
-
} while(0)
|
20
|
-
|
21
|
-
/**
|
22
|
-
* Wrapper for `clar_must_fail` -- this one is
|
23
|
-
* just for consistency. Use with `git_` library
|
24
|
-
* calls that are supposed to fail!
|
25
|
-
*/
|
26
|
-
#define cl_git_fail(expr) cl_must_fail(expr)
|
27
|
-
|
28
|
-
/*
|
29
|
-
* Some utility macros for building long strings
|
30
|
-
*/
|
31
|
-
#define REP4(STR) STR STR STR STR
|
32
|
-
#define REP15(STR) REP4(STR) REP4(STR) REP4(STR) STR STR STR
|
33
|
-
#define REP16(STR) REP4(REP4(STR))
|
34
|
-
#define REP256(STR) REP16(REP16(STR))
|
35
|
-
#define REP1024(STR) REP4(REP256(STR))
|
36
|
-
|
37
|
-
/* Write the contents of a buffer to disk */
|
38
|
-
void cl_git_mkfile(const char *filename, const char *content);
|
39
|
-
void cl_git_append2file(const char *filename, const char *new_content);
|
40
|
-
void cl_git_rewritefile(const char *filename, const char *new_content);
|
41
|
-
void cl_git_write2file(const char *filename, const char *new_content, int mode);
|
42
|
-
|
43
|
-
bool cl_toggle_filemode(const char *filename);
|
44
|
-
bool cl_is_chmod_supported(void);
|
45
|
-
|
46
|
-
/* Environment wrappers */
|
47
|
-
char *cl_getenv(const char *name);
|
48
|
-
int cl_setenv(const char *name, const char *value);
|
49
|
-
|
50
|
-
/* Git sandbox setup helpers */
|
51
|
-
|
52
|
-
git_repository *cl_git_sandbox_init(const char *sandbox);
|
53
|
-
void cl_git_sandbox_cleanup(void);
|
54
|
-
|
55
|
-
#endif
|
@@ -1,44 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
|
3
|
-
static git_repository *_repo;
|
4
|
-
|
5
|
-
void test_commit_commit__initialize(void)
|
6
|
-
{
|
7
|
-
cl_fixture_sandbox("testrepo.git");
|
8
|
-
cl_git_pass(git_repository_open(&_repo, "testrepo.git"));
|
9
|
-
}
|
10
|
-
|
11
|
-
void test_commit_commit__cleanup(void)
|
12
|
-
{
|
13
|
-
git_repository_free(_repo);
|
14
|
-
cl_fixture_cleanup("testrepo.git");
|
15
|
-
}
|
16
|
-
|
17
|
-
void test_commit_commit__create_unexisting_update_ref(void)
|
18
|
-
{
|
19
|
-
git_oid oid;
|
20
|
-
git_tree *tree;
|
21
|
-
git_commit *commit;
|
22
|
-
git_signature *s;
|
23
|
-
git_reference *ref;
|
24
|
-
|
25
|
-
git_oid_fromstr(&oid, "a65fedf39aefe402d3bb6e24df4d4f5fe4547750");
|
26
|
-
cl_git_pass(git_commit_lookup(&commit, _repo, &oid));
|
27
|
-
|
28
|
-
git_oid_fromstr(&oid, "944c0f6e4dfa41595e6eb3ceecdb14f50fe18162");
|
29
|
-
cl_git_pass(git_tree_lookup(&tree, _repo, &oid));
|
30
|
-
|
31
|
-
cl_git_pass(git_signature_now(&s, "alice", "alice@example.com"));
|
32
|
-
|
33
|
-
cl_git_fail(git_reference_lookup(&ref, _repo, "refs/heads/foo/bar"));
|
34
|
-
cl_git_pass(git_commit_create(&oid, _repo, "refs/heads/foo/bar", s, s,
|
35
|
-
NULL, "some msg", tree, 1, (const git_commit **) &commit));
|
36
|
-
|
37
|
-
cl_git_pass(git_reference_lookup(&ref, _repo, "refs/heads/foo/bar"));
|
38
|
-
cl_assert(!git_oid_cmp(&oid, git_reference_oid(ref)));
|
39
|
-
|
40
|
-
git_tree_free(tree);
|
41
|
-
git_commit_free(commit);
|
42
|
-
git_signature_free(s);
|
43
|
-
git_reference_free(ref);
|
44
|
-
}
|
@@ -1,350 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include <git2/types.h>
|
3
|
-
#include "commit.h"
|
4
|
-
#include "signature.h"
|
5
|
-
|
6
|
-
// Fixture setup
|
7
|
-
static git_repository *g_repo;
|
8
|
-
void test_commit_parse__initialize(void)
|
9
|
-
{
|
10
|
-
g_repo = cl_git_sandbox_init("testrepo");
|
11
|
-
}
|
12
|
-
void test_commit_parse__cleanup(void)
|
13
|
-
{
|
14
|
-
cl_git_sandbox_cleanup();
|
15
|
-
}
|
16
|
-
|
17
|
-
|
18
|
-
// Header parsing
|
19
|
-
typedef struct {
|
20
|
-
const char *line;
|
21
|
-
const char *header;
|
22
|
-
} parse_test_case;
|
23
|
-
|
24
|
-
static parse_test_case passing_header_cases[] = {
|
25
|
-
{ "parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "parent " },
|
26
|
-
{ "tree 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree " },
|
27
|
-
{ "random_heading 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "random_heading " },
|
28
|
-
{ "stuck_heading05452d6349abcd67aa396dfb28660d765d8b2a36\n", "stuck_heading" },
|
29
|
-
{ "tree 5F4BEFFC0759261D015AA63A3A85613FF2F235DE\n", "tree " },
|
30
|
-
{ "tree 1A669B8AB81B5EB7D9DB69562D34952A38A9B504\n", "tree " },
|
31
|
-
{ "tree 5B20DCC6110FCC75D31C6CEDEBD7F43ECA65B503\n", "tree " },
|
32
|
-
{ "tree 173E7BF00EA5C33447E99E6C1255954A13026BE4\n", "tree " },
|
33
|
-
{ NULL, NULL }
|
34
|
-
};
|
35
|
-
|
36
|
-
static parse_test_case failing_header_cases[] = {
|
37
|
-
{ "parent 05452d6349abcd67aa396dfb28660d765d8b2a36", "parent " },
|
38
|
-
{ "05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree " },
|
39
|
-
{ "parent05452d6349abcd67aa396dfb28660d765d8b2a6a\n", "parent " },
|
40
|
-
{ "parent 05452d6349abcd67aa396dfb280d765d8b2a6\n", "parent " },
|
41
|
-
{ "tree 05452d6349abcd67aa396dfb28660d765d8b2a36\n", "tree " },
|
42
|
-
{ "parent 0545xd6349abcd67aa396dfb28660d765d8b2a36\n", "parent " },
|
43
|
-
{ "parent 0545xd6349abcd67aa396dfb28660d765d8b2a36FF\n", "parent " },
|
44
|
-
{ "", "tree " },
|
45
|
-
{ "", "" },
|
46
|
-
{ NULL, NULL }
|
47
|
-
};
|
48
|
-
|
49
|
-
void test_commit_parse__header(void)
|
50
|
-
{
|
51
|
-
git_oid oid;
|
52
|
-
|
53
|
-
parse_test_case *testcase;
|
54
|
-
for (testcase = passing_header_cases; testcase->line != NULL; testcase++)
|
55
|
-
{
|
56
|
-
const char *line = testcase->line;
|
57
|
-
const char *line_end = line + strlen(line);
|
58
|
-
|
59
|
-
cl_git_pass(git_oid__parse(&oid, &line, line_end, testcase->header));
|
60
|
-
cl_assert(line == line_end);
|
61
|
-
}
|
62
|
-
|
63
|
-
for (testcase = failing_header_cases; testcase->line != NULL; testcase++)
|
64
|
-
{
|
65
|
-
const char *line = testcase->line;
|
66
|
-
const char *line_end = line + strlen(line);
|
67
|
-
|
68
|
-
cl_git_fail(git_oid__parse(&oid, &line, line_end, testcase->header));
|
69
|
-
}
|
70
|
-
}
|
71
|
-
|
72
|
-
|
73
|
-
// Signature parsing
|
74
|
-
typedef struct {
|
75
|
-
const char *string;
|
76
|
-
const char *header;
|
77
|
-
const char *name;
|
78
|
-
const char *email;
|
79
|
-
git_time_t time;
|
80
|
-
int offset;
|
81
|
-
} passing_signature_test_case;
|
82
|
-
|
83
|
-
passing_signature_test_case passing_signature_cases[] = {
|
84
|
-
{"author Vicent Marti <tanoku@gmail.com> 12345 \n", "author ", "Vicent Marti", "tanoku@gmail.com", 12345, 0},
|
85
|
-
{"author Vicent Marti <> 12345 \n", "author ", "Vicent Marti", "", 12345, 0},
|
86
|
-
{"author Vicent Marti <tanoku@gmail.com> 231301 +1020\n", "author ", "Vicent Marti", "tanoku@gmail.com", 231301, 620},
|
87
|
-
{"author Vicent Marti with an outrageously long name which will probably overflow the buffer <tanoku@gmail.com> 12345 \n", "author ", "Vicent Marti with an outrageously long name which will probably overflow the buffer", "tanoku@gmail.com", 12345, 0},
|
88
|
-
{"author Vicent Marti <tanokuwithaveryveryverylongemailwhichwillprobablyvoverflowtheemailbuffer@gmail.com> 12345 \n", "author ", "Vicent Marti", "tanokuwithaveryveryverylongemailwhichwillprobablyvoverflowtheemailbuffer@gmail.com", 12345, 0},
|
89
|
-
{"committer Vicent Marti <tanoku@gmail.com> 123456 +0000 \n", "committer ", "Vicent Marti", "tanoku@gmail.com", 123456, 0},
|
90
|
-
{"committer Vicent Marti <tanoku@gmail.com> 123456 +0100 \n", "committer ", "Vicent Marti", "tanoku@gmail.com", 123456, 60},
|
91
|
-
{"committer Vicent Marti <tanoku@gmail.com> 123456 -0100 \n", "committer ", "Vicent Marti", "tanoku@gmail.com", 123456, -60},
|
92
|
-
// Parse a signature without an author field
|
93
|
-
{"committer <tanoku@gmail.com> 123456 -0100 \n", "committer ", "", "tanoku@gmail.com", 123456, -60},
|
94
|
-
// Parse a signature without an author field
|
95
|
-
{"committer <tanoku@gmail.com> 123456 -0100 \n", "committer ", "", "tanoku@gmail.com", 123456, -60},
|
96
|
-
// Parse a signature with an empty author field
|
97
|
-
{"committer <tanoku@gmail.com> 123456 -0100 \n", "committer ", "", "tanoku@gmail.com", 123456, -60},
|
98
|
-
// Parse a signature with an empty email field
|
99
|
-
{"committer Vicent Marti <> 123456 -0100 \n", "committer ", "Vicent Marti", "", 123456, -60},
|
100
|
-
// Parse a signature with an empty email field
|
101
|
-
{"committer Vicent Marti < > 123456 -0100 \n", "committer ", "Vicent Marti", "", 123456, -60},
|
102
|
-
// Parse a signature with empty name and email
|
103
|
-
{"committer <> 123456 -0100 \n", "committer ", "", "", 123456, -60},
|
104
|
-
// Parse a signature with empty name and email
|
105
|
-
{"committer <> 123456 -0100 \n", "committer ", "", "", 123456, -60},
|
106
|
-
// Parse a signature with empty name and email
|
107
|
-
{"committer < > 123456 -0100 \n", "committer ", "", "", 123456, -60},
|
108
|
-
// Parse an obviously invalid signature
|
109
|
-
{"committer foo<@bar> 123456 -0100 \n", "committer ", "foo", "@bar", 123456, -60},
|
110
|
-
// Parse an obviously invalid signature
|
111
|
-
{"committer foo<@bar>123456 -0100 \n", "committer ", "foo", "@bar", 123456, -60},
|
112
|
-
// Parse an obviously invalid signature
|
113
|
-
{"committer <>\n", "committer ", "", "", 0, 0},
|
114
|
-
{"committer Vicent Marti <tanoku@gmail.com> 123456 -1500 \n", "committer ", "Vicent Marti", "tanoku@gmail.com", 0, 0},
|
115
|
-
{"committer Vicent Marti <tanoku@gmail.com> 123456 +0163 \n", "committer ", "Vicent Marti", "tanoku@gmail.com", 0, 0},
|
116
|
-
{"author Vicent Marti <tanoku@gmail.com> notime \n", "author ", "Vicent Marti", "tanoku@gmail.com", 0, 0},
|
117
|
-
{"author Vicent Marti <tanoku@gmail.com> 123456 notimezone \n", "author ", "Vicent Marti", "tanoku@gmail.com", 0, 0},
|
118
|
-
{"author Vicent Marti <tanoku@gmail.com> notime +0100\n", "author ", "Vicent Marti", "tanoku@gmail.com", 0, 0},
|
119
|
-
{"author Vicent Marti <tanoku@gmail.com>\n", "author ", "Vicent Marti", "tanoku@gmail.com", 0, 0},
|
120
|
-
{"author A U Thor <author@example.com>, C O. Miter <comiter@example.com> 1234567890 -0700\n", "author ", "A U Thor", "author@example.com", 1234567890, -420},
|
121
|
-
{"author A U Thor <author@example.com> and others 1234567890 -0700\n", "author ", "A U Thor", "author@example.com", 1234567890, -420},
|
122
|
-
{"author A U Thor <author@example.com> and others 1234567890\n", "author ", "A U Thor", "author@example.com", 1234567890, 0},
|
123
|
-
{"author A U Thor> <author@example.com> and others 1234567890\n", "author ", "A U Thor>", "author@example.com", 1234567890, 0},
|
124
|
-
{NULL,NULL,NULL,NULL,0,0}
|
125
|
-
};
|
126
|
-
|
127
|
-
typedef struct {
|
128
|
-
const char *string;
|
129
|
-
const char *header;
|
130
|
-
} failing_signature_test_case;
|
131
|
-
|
132
|
-
failing_signature_test_case failing_signature_cases[] = {
|
133
|
-
{"committer Vicent Marti tanoku@gmail.com> 123456 -0100 \n", "committer "},
|
134
|
-
{"author Vicent Marti <tanoku@gmail.com> 12345 \n", "author "},
|
135
|
-
{"author Vicent Marti <tanoku@gmail.com> 12345 \n", "committer "},
|
136
|
-
{"author Vicent Marti 12345 \n", "author "},
|
137
|
-
{"author Vicent Marti <broken@email 12345 \n", "author "},
|
138
|
-
{"committer Vicent Marti ><\n", "committer "},
|
139
|
-
{"author ", "author "},
|
140
|
-
{NULL,NULL,}
|
141
|
-
};
|
142
|
-
|
143
|
-
void test_commit_parse__signature(void)
|
144
|
-
{
|
145
|
-
passing_signature_test_case *passcase;
|
146
|
-
failing_signature_test_case *failcase;
|
147
|
-
|
148
|
-
for (passcase = passing_signature_cases; passcase->string != NULL; passcase++)
|
149
|
-
{
|
150
|
-
const char *str = passcase->string;
|
151
|
-
size_t len = strlen(passcase->string);
|
152
|
-
struct git_signature person = {NULL, NULL, {0, 0}};
|
153
|
-
cl_git_pass(git_signature__parse(&person, &str, str + len, passcase->header, '\n'));
|
154
|
-
cl_assert(strcmp(passcase->name, person.name) == 0);
|
155
|
-
cl_assert(strcmp(passcase->email, person.email) == 0);
|
156
|
-
cl_assert(passcase->time == person.when.time);
|
157
|
-
cl_assert(passcase->offset == person.when.offset);
|
158
|
-
git__free(person.name); git__free(person.email);
|
159
|
-
}
|
160
|
-
|
161
|
-
for (failcase = failing_signature_cases; failcase->string != NULL; failcase++)
|
162
|
-
{
|
163
|
-
const char *str = failcase->string;
|
164
|
-
size_t len = strlen(failcase->string);
|
165
|
-
git_signature person = {NULL, NULL, {0, 0}};
|
166
|
-
cl_git_fail(git_signature__parse(&person, &str, str + len, failcase->header, '\n'));
|
167
|
-
git__free(person.name); git__free(person.email);
|
168
|
-
}
|
169
|
-
}
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
static char *failing_commit_cases[] = {
|
174
|
-
// empty commit
|
175
|
-
"",
|
176
|
-
// random garbage
|
177
|
-
"asd97sa9du902e9a0jdsuusad09as9du098709aweu8987sd\n",
|
178
|
-
// broken endlines 1
|
179
|
-
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\r\n\
|
180
|
-
parent 05452d6349abcd67aa396dfb28660d765d8b2a36\r\n\
|
181
|
-
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\r\n\
|
182
|
-
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\r\n\
|
183
|
-
\r\n\
|
184
|
-
a test commit with broken endlines\r\n",
|
185
|
-
// broken endlines 2
|
186
|
-
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\
|
187
|
-
parent 05452d6349abcd67aa396dfb28660d765d8b2a36\
|
188
|
-
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\
|
189
|
-
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\
|
190
|
-
\
|
191
|
-
another test commit with broken endlines",
|
192
|
-
// starting endlines
|
193
|
-
"\ntree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
|
194
|
-
parent 05452d6349abcd67aa396dfb28660d765d8b2a36\n\
|
195
|
-
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
196
|
-
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
197
|
-
\n\
|
198
|
-
a test commit with a starting endline\n",
|
199
|
-
// corrupted commit 1
|
200
|
-
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
|
201
|
-
parent 05452d6349abcd67aa396df",
|
202
|
-
// corrupted commit 2
|
203
|
-
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
|
204
|
-
parent ",
|
205
|
-
// corrupted commit 3
|
206
|
-
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
|
207
|
-
parent ",
|
208
|
-
// corrupted commit 4
|
209
|
-
"tree f6c0dad3c7b3481caa9d73db21f91964894a945b\n\
|
210
|
-
par",
|
211
|
-
};
|
212
|
-
|
213
|
-
|
214
|
-
static char *passing_commit_cases[] = {
|
215
|
-
// simple commit with no message
|
216
|
-
"tree 1810dff58d8a660512d4832e740f692884338ccd\n\
|
217
|
-
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
218
|
-
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
219
|
-
\n",
|
220
|
-
// simple commit, no parent
|
221
|
-
"tree 1810dff58d8a660512d4832e740f692884338ccd\n\
|
222
|
-
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
223
|
-
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
224
|
-
\n\
|
225
|
-
a simple commit which works\n",
|
226
|
-
// simple commit, no parent, no newline in message
|
227
|
-
"tree 1810dff58d8a660512d4832e740f692884338ccd\n\
|
228
|
-
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
229
|
-
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
230
|
-
\n\
|
231
|
-
a simple commit which works",
|
232
|
-
// simple commit, 1 parent
|
233
|
-
"tree 1810dff58d8a660512d4832e740f692884338ccd\n\
|
234
|
-
parent e90810b8df3e80c413d903f631643c716887138d\n\
|
235
|
-
author Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
236
|
-
committer Vicent Marti <tanoku@gmail.com> 1273848544 +0200\n\
|
237
|
-
\n\
|
238
|
-
a simple commit which works\n",
|
239
|
-
};
|
240
|
-
|
241
|
-
void test_commit_parse__entire_commit(void)
|
242
|
-
{
|
243
|
-
const int broken_commit_count = sizeof(failing_commit_cases) / sizeof(*failing_commit_cases);
|
244
|
-
const int working_commit_count = sizeof(passing_commit_cases) / sizeof(*passing_commit_cases);
|
245
|
-
int i;
|
246
|
-
|
247
|
-
for (i = 0; i < broken_commit_count; ++i) {
|
248
|
-
git_commit *commit;
|
249
|
-
commit = (git_commit*)git__malloc(sizeof(git_commit));
|
250
|
-
memset(commit, 0x0, sizeof(git_commit));
|
251
|
-
commit->object.repo = g_repo;
|
252
|
-
|
253
|
-
cl_git_fail(git_commit__parse_buffer(
|
254
|
-
commit,
|
255
|
-
failing_commit_cases[i],
|
256
|
-
strlen(failing_commit_cases[i]))
|
257
|
-
);
|
258
|
-
|
259
|
-
git_commit__free(commit);
|
260
|
-
}
|
261
|
-
|
262
|
-
for (i = 0; i < working_commit_count; ++i) {
|
263
|
-
git_commit *commit;
|
264
|
-
|
265
|
-
commit = (git_commit*)git__malloc(sizeof(git_commit));
|
266
|
-
memset(commit, 0x0, sizeof(git_commit));
|
267
|
-
commit->object.repo = g_repo;
|
268
|
-
|
269
|
-
cl_git_pass(git_commit__parse_buffer(
|
270
|
-
commit,
|
271
|
-
passing_commit_cases[i],
|
272
|
-
strlen(passing_commit_cases[i]))
|
273
|
-
);
|
274
|
-
|
275
|
-
git_commit__free(commit);
|
276
|
-
|
277
|
-
commit = (git_commit*)git__malloc(sizeof(git_commit));
|
278
|
-
memset(commit, 0x0, sizeof(git_commit));
|
279
|
-
commit->object.repo = g_repo;
|
280
|
-
|
281
|
-
cl_git_pass(git_commit__parse_buffer(
|
282
|
-
commit,
|
283
|
-
passing_commit_cases[i],
|
284
|
-
strlen(passing_commit_cases[i]))
|
285
|
-
);
|
286
|
-
|
287
|
-
git_commit__free(commit);
|
288
|
-
}
|
289
|
-
}
|
290
|
-
|
291
|
-
|
292
|
-
// query the details on a parsed commit
|
293
|
-
void test_commit_parse__details0(void) {
|
294
|
-
static const char *commit_ids[] = {
|
295
|
-
"a4a7dce85cf63874e984719f4fdd239f5145052f", /* 0 */
|
296
|
-
"9fd738e8f7967c078dceed8190330fc8648ee56a", /* 1 */
|
297
|
-
"4a202b346bb0fb0db7eff3cffeb3c70babbd2045", /* 2 */
|
298
|
-
"c47800c7266a2be04c571c04d5a6614691ea99bd", /* 3 */
|
299
|
-
"8496071c1b46c854b31185ea97743be6a8774479", /* 4 */
|
300
|
-
"5b5b025afb0b4c913b4c338a42934a3863bf3644", /* 5 */
|
301
|
-
"a65fedf39aefe402d3bb6e24df4d4f5fe4547750", /* 6 */
|
302
|
-
};
|
303
|
-
const size_t commit_count = sizeof(commit_ids) / sizeof(const char *);
|
304
|
-
unsigned int i;
|
305
|
-
|
306
|
-
for (i = 0; i < commit_count; ++i) {
|
307
|
-
git_oid id;
|
308
|
-
git_commit *commit;
|
309
|
-
|
310
|
-
const git_signature *author, *committer;
|
311
|
-
const char *message;
|
312
|
-
git_time_t commit_time;
|
313
|
-
unsigned int parents, p;
|
314
|
-
git_commit *parent = NULL, *old_parent = NULL;
|
315
|
-
|
316
|
-
git_oid_fromstr(&id, commit_ids[i]);
|
317
|
-
|
318
|
-
cl_git_pass(git_commit_lookup(&commit, g_repo, &id));
|
319
|
-
|
320
|
-
message = git_commit_message(commit);
|
321
|
-
author = git_commit_author(commit);
|
322
|
-
committer = git_commit_committer(commit);
|
323
|
-
commit_time = git_commit_time(commit);
|
324
|
-
parents = git_commit_parentcount(commit);
|
325
|
-
|
326
|
-
cl_assert(strcmp(author->name, "Scott Chacon") == 0);
|
327
|
-
cl_assert(strcmp(author->email, "schacon@gmail.com") == 0);
|
328
|
-
cl_assert(strcmp(committer->name, "Scott Chacon") == 0);
|
329
|
-
cl_assert(strcmp(committer->email, "schacon@gmail.com") == 0);
|
330
|
-
cl_assert(message != NULL);
|
331
|
-
cl_assert(strchr(message, '\n') != NULL);
|
332
|
-
cl_assert(commit_time > 0);
|
333
|
-
cl_assert(parents <= 2);
|
334
|
-
for (p = 0;p < parents;p++) {
|
335
|
-
if (old_parent != NULL)
|
336
|
-
git_commit_free(old_parent);
|
337
|
-
|
338
|
-
old_parent = parent;
|
339
|
-
cl_git_pass(git_commit_parent(&parent, commit, p));
|
340
|
-
cl_assert(parent != NULL);
|
341
|
-
cl_assert(git_commit_author(parent) != NULL); // is it really a commit?
|
342
|
-
}
|
343
|
-
git_commit_free(old_parent);
|
344
|
-
git_commit_free(parent);
|
345
|
-
|
346
|
-
cl_git_fail(git_commit_parent(&parent, commit, parents));
|
347
|
-
git_commit_free(commit);
|
348
|
-
}
|
349
|
-
}
|
350
|
-
|