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,183 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "buffer.h"
|
3
|
-
#include "refspec.h"
|
4
|
-
#include "transport.h"
|
5
|
-
|
6
|
-
static git_remote *_remote;
|
7
|
-
static git_repository *_repo;
|
8
|
-
static const git_refspec *_refspec;
|
9
|
-
|
10
|
-
void test_network_remotes__initialize(void)
|
11
|
-
{
|
12
|
-
cl_fixture_sandbox("testrepo.git");
|
13
|
-
|
14
|
-
cl_git_pass(git_repository_open(&_repo, "testrepo.git"));
|
15
|
-
cl_git_pass(git_remote_load(&_remote, _repo, "test"));
|
16
|
-
|
17
|
-
_refspec = git_remote_fetchspec(_remote);
|
18
|
-
cl_assert(_refspec != NULL);
|
19
|
-
}
|
20
|
-
|
21
|
-
void test_network_remotes__cleanup(void)
|
22
|
-
{
|
23
|
-
git_remote_free(_remote);
|
24
|
-
git_repository_free(_repo);
|
25
|
-
cl_fixture_cleanup("testrepo.git");
|
26
|
-
}
|
27
|
-
|
28
|
-
void test_network_remotes__parsing(void)
|
29
|
-
{
|
30
|
-
cl_assert_equal_s(git_remote_name(_remote), "test");
|
31
|
-
cl_assert_equal_s(git_remote_url(_remote), "git://github.com/libgit2/libgit2");
|
32
|
-
}
|
33
|
-
|
34
|
-
void test_network_remotes__parsing_ssh_remote(void)
|
35
|
-
{
|
36
|
-
cl_assert( git_remote_valid_url("git@github.com:libgit2/libgit2.git") );
|
37
|
-
}
|
38
|
-
|
39
|
-
void test_network_remotes__parsing_local_path_fails_if_path_not_found(void)
|
40
|
-
{
|
41
|
-
cl_assert( !git_remote_valid_url("/home/git/repos/libgit2.git") );
|
42
|
-
}
|
43
|
-
|
44
|
-
void test_network_remotes__supported_transport_methods_are_supported(void)
|
45
|
-
{
|
46
|
-
cl_assert( git_remote_supported_url("git://github.com/libgit2/libgit2") );
|
47
|
-
}
|
48
|
-
|
49
|
-
void test_network_remotes__unsupported_transport_methods_are_unsupported(void)
|
50
|
-
{
|
51
|
-
cl_assert( !git_remote_supported_url("git@github.com:libgit2/libgit2.git") );
|
52
|
-
}
|
53
|
-
|
54
|
-
void test_network_remotes__refspec_parsing(void)
|
55
|
-
{
|
56
|
-
cl_assert_equal_s(git_refspec_src(_refspec), "refs/heads/*");
|
57
|
-
cl_assert_equal_s(git_refspec_dst(_refspec), "refs/remotes/test/*");
|
58
|
-
}
|
59
|
-
|
60
|
-
void test_network_remotes__set_fetchspec(void)
|
61
|
-
{
|
62
|
-
cl_git_pass(git_remote_set_fetchspec(_remote, "refs/*:refs/*"));
|
63
|
-
_refspec = git_remote_fetchspec(_remote);
|
64
|
-
cl_assert_equal_s(git_refspec_src(_refspec), "refs/*");
|
65
|
-
cl_assert_equal_s(git_refspec_dst(_refspec), "refs/*");
|
66
|
-
}
|
67
|
-
|
68
|
-
void test_network_remotes__set_pushspec(void)
|
69
|
-
{
|
70
|
-
cl_git_pass(git_remote_set_pushspec(_remote, "refs/*:refs/*"));
|
71
|
-
_refspec = git_remote_pushspec(_remote);
|
72
|
-
cl_assert_equal_s(git_refspec_src(_refspec), "refs/*");
|
73
|
-
cl_assert_equal_s(git_refspec_dst(_refspec), "refs/*");
|
74
|
-
}
|
75
|
-
|
76
|
-
void test_network_remotes__save(void)
|
77
|
-
{
|
78
|
-
git_remote_free(_remote);
|
79
|
-
|
80
|
-
/* Set up the remote and save it to config */
|
81
|
-
cl_git_pass(git_remote_new(&_remote, _repo, "upstream", "git://github.com/libgit2/libgit2", NULL));
|
82
|
-
cl_git_pass(git_remote_set_fetchspec(_remote, "refs/heads/*:refs/remotes/upstream/*"));
|
83
|
-
cl_git_pass(git_remote_set_pushspec(_remote, "refs/heads/*:refs/heads/*"));
|
84
|
-
cl_git_pass(git_remote_save(_remote));
|
85
|
-
git_remote_free(_remote);
|
86
|
-
_remote = NULL;
|
87
|
-
|
88
|
-
/* Load it from config and make sure everything matches */
|
89
|
-
cl_git_pass(git_remote_load(&_remote, _repo, "upstream"));
|
90
|
-
|
91
|
-
_refspec = git_remote_fetchspec(_remote);
|
92
|
-
cl_assert(_refspec != NULL);
|
93
|
-
cl_assert_equal_s(git_refspec_src(_refspec), "refs/heads/*");
|
94
|
-
cl_assert_equal_s(git_refspec_dst(_refspec), "refs/remotes/upstream/*");
|
95
|
-
cl_assert(git_refspec_force(_refspec) == 0);
|
96
|
-
|
97
|
-
_refspec = git_remote_pushspec(_remote);
|
98
|
-
cl_assert(_refspec != NULL);
|
99
|
-
cl_assert_equal_s(git_refspec_src(_refspec), "refs/heads/*");
|
100
|
-
cl_assert_equal_s(git_refspec_dst(_refspec), "refs/heads/*");
|
101
|
-
}
|
102
|
-
|
103
|
-
void test_network_remotes__fnmatch(void)
|
104
|
-
{
|
105
|
-
cl_assert(git_refspec_src_matches(_refspec, "refs/heads/master"));
|
106
|
-
cl_assert(git_refspec_src_matches(_refspec, "refs/heads/multi/level/branch"));
|
107
|
-
}
|
108
|
-
|
109
|
-
void test_network_remotes__transform(void)
|
110
|
-
{
|
111
|
-
char ref[1024];
|
112
|
-
|
113
|
-
memset(ref, 0x0, sizeof(ref));
|
114
|
-
cl_git_pass(git_refspec_transform(ref, sizeof(ref), _refspec, "refs/heads/master"));
|
115
|
-
cl_assert_equal_s(ref, "refs/remotes/test/master");
|
116
|
-
}
|
117
|
-
|
118
|
-
void test_network_remotes__transform_r(void)
|
119
|
-
{
|
120
|
-
git_buf buf = GIT_BUF_INIT;
|
121
|
-
|
122
|
-
cl_git_pass(git_refspec_transform_r(&buf, _refspec, "refs/heads/master"));
|
123
|
-
cl_assert_equal_s(git_buf_cstr(&buf), "refs/remotes/test/master");
|
124
|
-
git_buf_free(&buf);
|
125
|
-
}
|
126
|
-
|
127
|
-
void test_network_remotes__missing_refspecs(void)
|
128
|
-
{
|
129
|
-
git_config *cfg;
|
130
|
-
|
131
|
-
git_remote_free(_remote);
|
132
|
-
|
133
|
-
cl_git_pass(git_repository_config(&cfg, _repo));
|
134
|
-
cl_git_pass(git_config_set_string(cfg, "remote.specless.url", "http://example.com"));
|
135
|
-
cl_git_pass(git_remote_load(&_remote, _repo, "specless"));
|
136
|
-
|
137
|
-
git_config_free(cfg);
|
138
|
-
}
|
139
|
-
|
140
|
-
void test_network_remotes__list(void)
|
141
|
-
{
|
142
|
-
git_strarray list;
|
143
|
-
git_config *cfg;
|
144
|
-
|
145
|
-
cl_git_pass(git_remote_list(&list, _repo));
|
146
|
-
cl_assert(list.count == 1);
|
147
|
-
git_strarray_free(&list);
|
148
|
-
|
149
|
-
cl_git_pass(git_repository_config(&cfg, _repo));
|
150
|
-
cl_git_pass(git_config_set_string(cfg, "remote.specless.url", "http://example.com"));
|
151
|
-
cl_git_pass(git_remote_list(&list, _repo));
|
152
|
-
cl_assert(list.count == 2);
|
153
|
-
git_strarray_free(&list);
|
154
|
-
|
155
|
-
git_config_free(cfg);
|
156
|
-
}
|
157
|
-
|
158
|
-
void test_network_remotes__loading_a_missing_remote_returns_ENOTFOUND(void)
|
159
|
-
{
|
160
|
-
cl_assert_equal_i(GIT_ENOTFOUND, git_remote_load(&_remote, _repo, "just-left-few-minutes-ago"));
|
161
|
-
}
|
162
|
-
|
163
|
-
/*
|
164
|
-
* $ git remote add addtest http://github.com/libgit2/libgit2
|
165
|
-
*
|
166
|
-
* $ cat .git/config
|
167
|
-
* [...]
|
168
|
-
* [remote "addtest"]
|
169
|
-
* url = http://github.com/libgit2/libgit2
|
170
|
-
* fetch = +refs/heads/\*:refs/remotes/addtest/\*
|
171
|
-
*/
|
172
|
-
void test_network_remotes__add(void)
|
173
|
-
{
|
174
|
-
git_remote_free(_remote);
|
175
|
-
cl_git_pass(git_remote_add(&_remote, _repo, "addtest", "http://github.com/libgit2/libgit2"));
|
176
|
-
git_remote_free(_remote);
|
177
|
-
|
178
|
-
cl_git_pass(git_remote_load(&_remote, _repo, "addtest"));
|
179
|
-
_refspec = git_remote_fetchspec(_remote);
|
180
|
-
cl_assert(!strcmp(git_refspec_src(_refspec), "refs/heads/*"));
|
181
|
-
cl_assert(git_refspec_force(_refspec) == 1);
|
182
|
-
cl_assert(!strcmp(git_refspec_dst(_refspec), "refs/remotes/addtest/*"));
|
183
|
-
}
|
@@ -1,133 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
|
3
|
-
static git_repository *_repo;
|
4
|
-
static git_signature *_sig;
|
5
|
-
|
6
|
-
void test_notes_notes__initialize(void)
|
7
|
-
{
|
8
|
-
_repo = cl_git_sandbox_init("testrepo.git");
|
9
|
-
cl_git_pass(git_signature_now(&_sig, "alice", "alice@example.com"));
|
10
|
-
}
|
11
|
-
|
12
|
-
void test_notes_notes__cleanup(void)
|
13
|
-
{
|
14
|
-
git_signature_free(_sig);
|
15
|
-
cl_git_sandbox_cleanup();
|
16
|
-
}
|
17
|
-
|
18
|
-
static void create_note(git_oid *note_oid, const char *canonical_namespace, const char *target_sha, const char *message)
|
19
|
-
{
|
20
|
-
git_oid oid;
|
21
|
-
|
22
|
-
cl_git_pass(git_oid_fromstr(&oid, target_sha));
|
23
|
-
cl_git_pass(git_note_create(note_oid, _repo, _sig, _sig, canonical_namespace, &oid, message));
|
24
|
-
}
|
25
|
-
|
26
|
-
void test_notes_notes__1(void)
|
27
|
-
{
|
28
|
-
git_oid oid, note_oid;
|
29
|
-
static git_note *note;
|
30
|
-
static git_blob *blob;
|
31
|
-
|
32
|
-
cl_git_pass(git_oid_fromstr(&oid, "8496071c1b46c854b31185ea97743be6a8774479"));
|
33
|
-
|
34
|
-
cl_git_pass(git_note_create(¬e_oid, _repo, _sig, _sig, "refs/notes/some/namespace", &oid, "hello world\n"));
|
35
|
-
cl_git_pass(git_note_create(¬e_oid, _repo, _sig, _sig, NULL, &oid, "hello world\n"));
|
36
|
-
|
37
|
-
cl_git_pass(git_note_read(¬e, _repo, NULL, &oid));
|
38
|
-
|
39
|
-
cl_assert_equal_s(git_note_message(note), "hello world\n");
|
40
|
-
cl_assert(!git_oid_cmp(git_note_oid(note), ¬e_oid));
|
41
|
-
|
42
|
-
cl_git_pass(git_blob_lookup(&blob, _repo, ¬e_oid));
|
43
|
-
cl_assert_equal_s(git_note_message(note), git_blob_rawcontent(blob));
|
44
|
-
|
45
|
-
cl_git_fail(git_note_create(¬e_oid, _repo, _sig, _sig, NULL, &oid, "hello world\n"));
|
46
|
-
cl_git_fail(git_note_create(¬e_oid, _repo, _sig, _sig, "refs/notes/some/namespace", &oid, "hello world\n"));
|
47
|
-
|
48
|
-
cl_git_pass(git_note_remove(_repo, NULL, _sig, _sig, &oid));
|
49
|
-
cl_git_pass(git_note_remove(_repo, "refs/notes/some/namespace", _sig, _sig, &oid));
|
50
|
-
|
51
|
-
cl_git_fail(git_note_remove(_repo, NULL, _sig, _sig, ¬e_oid));
|
52
|
-
cl_git_fail(git_note_remove(_repo, "refs/notes/some/namespace", _sig, _sig, &oid));
|
53
|
-
|
54
|
-
git_note_free(note);
|
55
|
-
git_blob_free(blob);
|
56
|
-
}
|
57
|
-
|
58
|
-
static struct {
|
59
|
-
const char *note_sha;
|
60
|
-
const char *annotated_object_sha;
|
61
|
-
} list_expectations[] = {
|
62
|
-
{ "1c73b1f51762155d357bcd1fd4f2c409ef80065b", "4a202b346bb0fb0db7eff3cffeb3c70babbd2045" },
|
63
|
-
{ "1c73b1f51762155d357bcd1fd4f2c409ef80065b", "9fd738e8f7967c078dceed8190330fc8648ee56a" },
|
64
|
-
{ "257b43746b6b46caa4aa788376c647cce0a33e2b", "a65fedf39aefe402d3bb6e24df4d4f5fe4547750" },
|
65
|
-
{ "1ec1c8e03f461f4f5d3f3702172483662e7223f3", "c47800c7266a2be04c571c04d5a6614691ea99bd" },
|
66
|
-
{ NULL, NULL }
|
67
|
-
};
|
68
|
-
|
69
|
-
#define EXPECTATIONS_COUNT (sizeof(list_expectations)/sizeof(list_expectations[0])) - 1
|
70
|
-
|
71
|
-
static int note_list_cb(git_note_data *note_data, void *payload)
|
72
|
-
{
|
73
|
-
git_oid expected_note_oid, expected_target_oid;
|
74
|
-
|
75
|
-
unsigned int *count = (unsigned int *)payload;
|
76
|
-
|
77
|
-
cl_assert(*count < EXPECTATIONS_COUNT);
|
78
|
-
|
79
|
-
cl_git_pass(git_oid_fromstr(&expected_note_oid, list_expectations[*count].note_sha));
|
80
|
-
cl_assert(git_oid_cmp(&expected_note_oid, ¬e_data->blob_oid) == 0);
|
81
|
-
|
82
|
-
cl_git_pass(git_oid_fromstr(&expected_target_oid, list_expectations[*count].annotated_object_sha));
|
83
|
-
cl_assert(git_oid_cmp(&expected_target_oid, ¬e_data->annotated_object_oid) == 0);
|
84
|
-
|
85
|
-
(*count)++;
|
86
|
-
|
87
|
-
return 0;
|
88
|
-
}
|
89
|
-
|
90
|
-
/*
|
91
|
-
* $ git notes --ref i-can-see-dead-notes add -m "I decorate a65f" a65fedf39aefe402d3bb6e24df4d4f5fe4547750
|
92
|
-
* $ git notes --ref i-can-see-dead-notes add -m "I decorate c478" c47800c7266a2be04c571c04d5a6614691ea99bd
|
93
|
-
* $ git notes --ref i-can-see-dead-notes add -m "I decorate 9fd7 and 4a20" 9fd738e8f7967c078dceed8190330fc8648ee56a
|
94
|
-
* $ git notes --ref i-can-see-dead-notes add -m "I decorate 9fd7 and 4a20" 4a202b346bb0fb0db7eff3cffeb3c70babbd2045
|
95
|
-
*
|
96
|
-
* $ git notes --ref i-can-see-dead-notes list
|
97
|
-
* 1c73b1f51762155d357bcd1fd4f2c409ef80065b 4a202b346bb0fb0db7eff3cffeb3c70babbd2045
|
98
|
-
* 1c73b1f51762155d357bcd1fd4f2c409ef80065b 9fd738e8f7967c078dceed8190330fc8648ee56a
|
99
|
-
* 257b43746b6b46caa4aa788376c647cce0a33e2b a65fedf39aefe402d3bb6e24df4d4f5fe4547750
|
100
|
-
* 1ec1c8e03f461f4f5d3f3702172483662e7223f3 c47800c7266a2be04c571c04d5a6614691ea99bd
|
101
|
-
*
|
102
|
-
* $ git ls-tree refs/notes/i-can-see-dead-notes
|
103
|
-
* 100644 blob 1c73b1f51762155d357bcd1fd4f2c409ef80065b 4a202b346bb0fb0db7eff3cffeb3c70babbd2045
|
104
|
-
* 100644 blob 1c73b1f51762155d357bcd1fd4f2c409ef80065b 9fd738e8f7967c078dceed8190330fc8648ee56a
|
105
|
-
* 100644 blob 257b43746b6b46caa4aa788376c647cce0a33e2b a65fedf39aefe402d3bb6e24df4d4f5fe4547750
|
106
|
-
* 100644 blob 1ec1c8e03f461f4f5d3f3702172483662e7223f3 c47800c7266a2be04c571c04d5a6614691ea99bd
|
107
|
-
*/
|
108
|
-
void test_notes_notes__can_retrieve_a_list_of_notes_for_a_given_namespace(void)
|
109
|
-
{
|
110
|
-
git_oid note_oid1, note_oid2, note_oid3, note_oid4;
|
111
|
-
unsigned int retrieved_notes = 0;
|
112
|
-
|
113
|
-
create_note(¬e_oid1, "refs/notes/i-can-see-dead-notes", "a65fedf39aefe402d3bb6e24df4d4f5fe4547750", "I decorate a65f\n");
|
114
|
-
create_note(¬e_oid2, "refs/notes/i-can-see-dead-notes", "c47800c7266a2be04c571c04d5a6614691ea99bd", "I decorate c478\n");
|
115
|
-
create_note(¬e_oid3, "refs/notes/i-can-see-dead-notes", "9fd738e8f7967c078dceed8190330fc8648ee56a", "I decorate 9fd7 and 4a20\n");
|
116
|
-
create_note(¬e_oid4, "refs/notes/i-can-see-dead-notes", "4a202b346bb0fb0db7eff3cffeb3c70babbd2045", "I decorate 9fd7 and 4a20\n");
|
117
|
-
|
118
|
-
cl_git_pass(git_note_foreach(_repo, "refs/notes/i-can-see-dead-notes", note_list_cb, &retrieved_notes));
|
119
|
-
|
120
|
-
cl_assert_equal_i(4, retrieved_notes);
|
121
|
-
}
|
122
|
-
|
123
|
-
void test_notes_notes__retrieving_a_list_of_notes_for_an_unknown_namespace_returns_ENOTFOUND(void)
|
124
|
-
{
|
125
|
-
int error;
|
126
|
-
unsigned int retrieved_notes = 0;
|
127
|
-
|
128
|
-
error = git_note_foreach(_repo, "refs/notes/i-am-not", note_list_cb, &retrieved_notes);
|
129
|
-
cl_git_fail(error);
|
130
|
-
cl_assert_equal_i(GIT_ENOTFOUND, error);
|
131
|
-
|
132
|
-
cl_assert_equal_i(0, retrieved_notes);
|
133
|
-
}
|
@@ -1,57 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
|
3
|
-
#include "notes.h"
|
4
|
-
|
5
|
-
static git_repository *_repo;
|
6
|
-
static git_note *_note;
|
7
|
-
static git_signature *_sig;
|
8
|
-
static git_config *_cfg;
|
9
|
-
|
10
|
-
void test_notes_notesref__initialize(void)
|
11
|
-
{
|
12
|
-
cl_fixture_sandbox("testrepo.git");
|
13
|
-
cl_git_pass(git_repository_open(&_repo, "testrepo.git"));
|
14
|
-
}
|
15
|
-
|
16
|
-
void test_notes_notesref__cleanup(void)
|
17
|
-
{
|
18
|
-
git_note_free(_note);
|
19
|
-
git_signature_free(_sig);
|
20
|
-
git_config_free(_cfg);
|
21
|
-
|
22
|
-
git_repository_free(_repo);
|
23
|
-
cl_fixture_cleanup("testrepo.git");
|
24
|
-
}
|
25
|
-
|
26
|
-
void test_notes_notesref__config_corenotesref(void)
|
27
|
-
{
|
28
|
-
git_oid oid, note_oid;
|
29
|
-
const char *default_ref;
|
30
|
-
|
31
|
-
cl_git_pass(git_signature_now(&_sig, "alice", "alice@example.com"));
|
32
|
-
cl_git_pass(git_oid_fromstr(&oid, "8496071c1b46c854b31185ea97743be6a8774479"));
|
33
|
-
|
34
|
-
cl_git_pass(git_repository_config(&_cfg, _repo));
|
35
|
-
|
36
|
-
cl_git_pass(git_config_set_string(_cfg, "core.notesRef", "refs/notes/mydefaultnotesref"));
|
37
|
-
|
38
|
-
cl_git_pass(git_note_create(¬e_oid, _repo, _sig, _sig, NULL, &oid, "test123test\n"));
|
39
|
-
|
40
|
-
cl_git_pass(git_note_read(&_note, _repo, NULL, &oid));
|
41
|
-
cl_assert(!strcmp(git_note_message(_note), "test123test\n"));
|
42
|
-
cl_assert(!git_oid_cmp(git_note_oid(_note), ¬e_oid));
|
43
|
-
|
44
|
-
git_note_free(_note);
|
45
|
-
|
46
|
-
cl_git_pass(git_note_read(&_note, _repo, "refs/notes/mydefaultnotesref", &oid));
|
47
|
-
cl_assert(!strcmp(git_note_message(_note), "test123test\n"));
|
48
|
-
cl_assert(!git_oid_cmp(git_note_oid(_note), ¬e_oid));
|
49
|
-
|
50
|
-
cl_git_pass(git_note_default_ref(&default_ref, _repo));
|
51
|
-
cl_assert(!strcmp(default_ref, "refs/notes/mydefaultnotesref"));
|
52
|
-
|
53
|
-
cl_git_pass(git_config_delete(_cfg, "core.notesRef"));
|
54
|
-
|
55
|
-
cl_git_pass(git_note_default_ref(&default_ref, _repo));
|
56
|
-
cl_assert(!strcmp(default_ref, GIT_NOTES_DEFAULT_REF));
|
57
|
-
}
|
@@ -1,125 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "posix.h"
|
3
|
-
#include "blob.h"
|
4
|
-
#include "filter.h"
|
5
|
-
|
6
|
-
static git_repository *g_repo = NULL;
|
7
|
-
#define NUM_TEST_OBJECTS 6
|
8
|
-
static git_oid g_oids[NUM_TEST_OBJECTS];
|
9
|
-
static const char *g_raw[NUM_TEST_OBJECTS] = {
|
10
|
-
"",
|
11
|
-
"foo\nbar\n",
|
12
|
-
"foo\rbar\r",
|
13
|
-
"foo\r\nbar\r\n",
|
14
|
-
"foo\nbar\rboth\r\nreversed\n\ragain\nproblems\r",
|
15
|
-
"123\n\000\001\002\003\004abc\255\254\253\r\n"
|
16
|
-
};
|
17
|
-
static int g_len[NUM_TEST_OBJECTS] = { -1, -1, -1, -1, -1, 17 };
|
18
|
-
static git_text_stats g_stats[NUM_TEST_OBJECTS] = {
|
19
|
-
{ 0, 0, 0, 0, 0, 0 },
|
20
|
-
{ 0, 0, 2, 0, 6, 0 },
|
21
|
-
{ 0, 2, 0, 0, 6, 0 },
|
22
|
-
{ 0, 2, 2, 2, 6, 0 },
|
23
|
-
{ 0, 4, 4, 1, 31, 0 },
|
24
|
-
{ 1, 1, 2, 1, 9, 5 }
|
25
|
-
};
|
26
|
-
static git_buf g_crlf_filtered[NUM_TEST_OBJECTS] = {
|
27
|
-
{ "", 0, 0 },
|
28
|
-
{ "foo\nbar\n", 0, 8 },
|
29
|
-
{ "foo\rbar\r", 0, 8 },
|
30
|
-
{ "foo\nbar\n", 0, 8 },
|
31
|
-
{ "foo\nbar\rboth\nreversed\n\ragain\nproblems\r", 0, 38 },
|
32
|
-
{ "123\n\000\001\002\003\004abc\255\254\253\n", 0, 16 }
|
33
|
-
};
|
34
|
-
|
35
|
-
void test_object_blob_filter__initialize(void)
|
36
|
-
{
|
37
|
-
int i;
|
38
|
-
|
39
|
-
cl_fixture_sandbox("empty_standard_repo");
|
40
|
-
cl_git_pass(p_rename(
|
41
|
-
"empty_standard_repo/.gitted", "empty_standard_repo/.git"));
|
42
|
-
cl_git_pass(git_repository_open(&g_repo, "empty_standard_repo"));
|
43
|
-
|
44
|
-
for (i = 0; i < NUM_TEST_OBJECTS; i++) {
|
45
|
-
size_t len = (g_len[i] < 0) ? strlen(g_raw[i]) : (size_t)g_len[i];
|
46
|
-
g_len[i] = (int)len;
|
47
|
-
|
48
|
-
cl_git_pass(
|
49
|
-
git_blob_create_frombuffer(&g_oids[i], g_repo, g_raw[i], len)
|
50
|
-
);
|
51
|
-
}
|
52
|
-
}
|
53
|
-
|
54
|
-
void test_object_blob_filter__cleanup(void)
|
55
|
-
{
|
56
|
-
git_repository_free(g_repo);
|
57
|
-
g_repo = NULL;
|
58
|
-
cl_fixture_cleanup("empty_standard_repo");
|
59
|
-
}
|
60
|
-
|
61
|
-
void test_object_blob_filter__unfiltered(void)
|
62
|
-
{
|
63
|
-
int i;
|
64
|
-
git_blob *blob;
|
65
|
-
|
66
|
-
for (i = 0; i < NUM_TEST_OBJECTS; i++) {
|
67
|
-
cl_git_pass(git_blob_lookup(&blob, g_repo, &g_oids[i]));
|
68
|
-
cl_assert((size_t)g_len[i] == git_blob_rawsize(blob));
|
69
|
-
cl_assert(memcmp(git_blob_rawcontent(blob), g_raw[i], g_len[i]) == 0);
|
70
|
-
git_blob_free(blob);
|
71
|
-
}
|
72
|
-
}
|
73
|
-
|
74
|
-
void test_object_blob_filter__stats(void)
|
75
|
-
{
|
76
|
-
int i;
|
77
|
-
git_blob *blob;
|
78
|
-
git_buf buf = GIT_BUF_INIT;
|
79
|
-
git_text_stats stats;
|
80
|
-
|
81
|
-
for (i = 0; i < NUM_TEST_OBJECTS; i++) {
|
82
|
-
cl_git_pass(git_blob_lookup(&blob, g_repo, &g_oids[i]));
|
83
|
-
cl_git_pass(git_blob__getbuf(&buf, blob));
|
84
|
-
git_text_gather_stats(&stats, &buf);
|
85
|
-
cl_assert(memcmp(&g_stats[i], &stats, sizeof(stats)) == 0);
|
86
|
-
git_blob_free(blob);
|
87
|
-
}
|
88
|
-
|
89
|
-
git_buf_free(&buf);
|
90
|
-
}
|
91
|
-
|
92
|
-
void test_object_blob_filter__to_odb(void)
|
93
|
-
{
|
94
|
-
git_vector filters = GIT_VECTOR_INIT;
|
95
|
-
git_config *cfg;
|
96
|
-
int i;
|
97
|
-
git_blob *blob;
|
98
|
-
git_buf orig = GIT_BUF_INIT, out = GIT_BUF_INIT;
|
99
|
-
|
100
|
-
cl_git_pass(git_repository_config(&cfg, g_repo));
|
101
|
-
cl_assert(cfg);
|
102
|
-
|
103
|
-
git_attr_cache_flush(g_repo);
|
104
|
-
cl_git_append2file("empty_standard_repo/.gitattributes", "*.txt text\n");
|
105
|
-
|
106
|
-
cl_assert(git_filters_load(
|
107
|
-
&filters, g_repo, "filename.txt", GIT_FILTER_TO_ODB) > 0);
|
108
|
-
cl_assert(filters.length == 1);
|
109
|
-
|
110
|
-
for (i = 0; i < NUM_TEST_OBJECTS; i++) {
|
111
|
-
cl_git_pass(git_blob_lookup(&blob, g_repo, &g_oids[i]));
|
112
|
-
cl_git_pass(git_blob__getbuf(&orig, blob));
|
113
|
-
|
114
|
-
cl_git_pass(git_filters_apply(&out, &orig, &filters));
|
115
|
-
cl_assert(git_buf_cmp(&out, &g_crlf_filtered[i]) == 0);
|
116
|
-
|
117
|
-
git_blob_free(blob);
|
118
|
-
}
|
119
|
-
|
120
|
-
git_filters_free(&filters);
|
121
|
-
git_buf_free(&orig);
|
122
|
-
git_buf_free(&out);
|
123
|
-
git_config_free(cfg);
|
124
|
-
}
|
125
|
-
|