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,85 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "pool.h"
|
3
|
-
#include "git2/oid.h"
|
4
|
-
|
5
|
-
void test_core_pool__0(void)
|
6
|
-
{
|
7
|
-
int i;
|
8
|
-
git_pool p;
|
9
|
-
void *ptr;
|
10
|
-
|
11
|
-
cl_git_pass(git_pool_init(&p, 1, 4000));
|
12
|
-
|
13
|
-
for (i = 1; i < 10000; i *= 2) {
|
14
|
-
ptr = git_pool_malloc(&p, i);
|
15
|
-
cl_assert(ptr != NULL);
|
16
|
-
cl_assert(git_pool__ptr_in_pool(&p, ptr));
|
17
|
-
cl_assert(!git_pool__ptr_in_pool(&p, &i));
|
18
|
-
}
|
19
|
-
|
20
|
-
/* 1+2+4+8+16+32+64+128+256+512+1024 -> original block */
|
21
|
-
/* 2048 -> 1 block */
|
22
|
-
/* 4096 -> 1 block */
|
23
|
-
/* 8192 -> 1 block */
|
24
|
-
|
25
|
-
cl_assert(git_pool__open_pages(&p) + git_pool__full_pages(&p) == 4);
|
26
|
-
|
27
|
-
git_pool_clear(&p);
|
28
|
-
}
|
29
|
-
|
30
|
-
void test_core_pool__1(void)
|
31
|
-
{
|
32
|
-
int i;
|
33
|
-
git_pool p;
|
34
|
-
|
35
|
-
cl_git_pass(git_pool_init(&p, 1, 4000));
|
36
|
-
|
37
|
-
for (i = 2010; i > 0; i--)
|
38
|
-
cl_assert(git_pool_malloc(&p, i) != NULL);
|
39
|
-
|
40
|
-
/* with fixed page size, allocation must end up with these values */
|
41
|
-
cl_assert(git_pool__open_pages(&p) == 1);
|
42
|
-
cl_assert(git_pool__full_pages(&p) == 505);
|
43
|
-
|
44
|
-
git_pool_clear(&p);
|
45
|
-
|
46
|
-
cl_git_pass(git_pool_init(&p, 1, 4100));
|
47
|
-
|
48
|
-
for (i = 2010; i > 0; i--)
|
49
|
-
cl_assert(git_pool_malloc(&p, i) != NULL);
|
50
|
-
|
51
|
-
/* with fixed page size, allocation must end up with these values */
|
52
|
-
cl_assert(git_pool__open_pages(&p) == 1);
|
53
|
-
cl_assert(git_pool__full_pages(&p) == 492);
|
54
|
-
|
55
|
-
git_pool_clear(&p);
|
56
|
-
}
|
57
|
-
|
58
|
-
static char to_hex[] = "0123456789abcdef";
|
59
|
-
|
60
|
-
void test_core_pool__2(void)
|
61
|
-
{
|
62
|
-
git_pool p;
|
63
|
-
char oid_hex[GIT_OID_HEXSZ];
|
64
|
-
git_oid *oid;
|
65
|
-
int i, j;
|
66
|
-
|
67
|
-
memset(oid_hex, '0', sizeof(oid_hex));
|
68
|
-
|
69
|
-
cl_git_pass(git_pool_init(&p, sizeof(git_oid), 100));
|
70
|
-
|
71
|
-
for (i = 1000; i < 10000; i++) {
|
72
|
-
oid = git_pool_malloc(&p, 1);
|
73
|
-
cl_assert(oid != NULL);
|
74
|
-
|
75
|
-
for (j = 0; j < 8; j++)
|
76
|
-
oid_hex[j] = to_hex[(i >> (4 * j)) & 0x0f];
|
77
|
-
cl_git_pass(git_oid_fromstr(oid, oid_hex));
|
78
|
-
}
|
79
|
-
|
80
|
-
/* with fixed page size, allocation must end up with these values */
|
81
|
-
cl_assert(git_pool__open_pages(&p) == 0);
|
82
|
-
cl_assert(git_pool__full_pages(&p) == 90);
|
83
|
-
|
84
|
-
git_pool_clear(&p);
|
85
|
-
}
|
@@ -1,68 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "fileops.h"
|
3
|
-
|
4
|
-
static const char *empty_tmp_dir = "test_gitfo_rmdir_recurs_test";
|
5
|
-
|
6
|
-
void test_core_rmdir__initialize(void)
|
7
|
-
{
|
8
|
-
git_buf path = GIT_BUF_INIT;
|
9
|
-
|
10
|
-
cl_must_pass(p_mkdir(empty_tmp_dir, 0777));
|
11
|
-
|
12
|
-
cl_git_pass(git_buf_joinpath(&path, empty_tmp_dir, "/one"));
|
13
|
-
cl_must_pass(p_mkdir(path.ptr, 0777));
|
14
|
-
|
15
|
-
cl_git_pass(git_buf_joinpath(&path, empty_tmp_dir, "/one/two_one"));
|
16
|
-
cl_must_pass(p_mkdir(path.ptr, 0777));
|
17
|
-
|
18
|
-
cl_git_pass(git_buf_joinpath(&path, empty_tmp_dir, "/one/two_two"));
|
19
|
-
cl_must_pass(p_mkdir(path.ptr, 0777));
|
20
|
-
|
21
|
-
cl_git_pass(git_buf_joinpath(&path, empty_tmp_dir, "/one/two_two/three"));
|
22
|
-
cl_must_pass(p_mkdir(path.ptr, 0777));
|
23
|
-
|
24
|
-
cl_git_pass(git_buf_joinpath(&path, empty_tmp_dir, "/two"));
|
25
|
-
cl_must_pass(p_mkdir(path.ptr, 0777));
|
26
|
-
|
27
|
-
git_buf_free(&path);
|
28
|
-
}
|
29
|
-
|
30
|
-
/* make sure empty dir can be deleted recusively */
|
31
|
-
void test_core_rmdir__delete_recursive(void)
|
32
|
-
{
|
33
|
-
cl_git_pass(git_futils_rmdir_r(empty_tmp_dir, GIT_DIRREMOVAL_EMPTY_HIERARCHY));
|
34
|
-
}
|
35
|
-
|
36
|
-
/* make sure non-empty dir cannot be deleted recusively */
|
37
|
-
void test_core_rmdir__fail_to_delete_non_empty_dir(void)
|
38
|
-
{
|
39
|
-
git_buf file = GIT_BUF_INIT;
|
40
|
-
|
41
|
-
cl_git_pass(git_buf_joinpath(&file, empty_tmp_dir, "/two/file.txt"));
|
42
|
-
|
43
|
-
cl_git_mkfile(git_buf_cstr(&file), "dummy");
|
44
|
-
|
45
|
-
cl_git_fail(git_futils_rmdir_r(empty_tmp_dir, GIT_DIRREMOVAL_EMPTY_HIERARCHY));
|
46
|
-
|
47
|
-
cl_must_pass(p_unlink(file.ptr));
|
48
|
-
cl_git_pass(git_futils_rmdir_r(empty_tmp_dir, GIT_DIRREMOVAL_EMPTY_HIERARCHY));
|
49
|
-
|
50
|
-
git_buf_free(&file);
|
51
|
-
}
|
52
|
-
|
53
|
-
void test_core_rmdir__can_skip__non_empty_dir(void)
|
54
|
-
{
|
55
|
-
git_buf file = GIT_BUF_INIT;
|
56
|
-
|
57
|
-
cl_git_pass(git_buf_joinpath(&file, empty_tmp_dir, "/two/file.txt"));
|
58
|
-
|
59
|
-
cl_git_mkfile(git_buf_cstr(&file), "dummy");
|
60
|
-
|
61
|
-
cl_git_pass(git_futils_rmdir_r(empty_tmp_dir, GIT_DIRREMOVAL_ONLY_EMPTY_DIRS));
|
62
|
-
cl_assert(git_path_exists(git_buf_cstr(&file)) == true);
|
63
|
-
|
64
|
-
cl_git_pass(git_futils_rmdir_r(empty_tmp_dir, GIT_DIRREMOVAL_FILES_AND_DIRS));
|
65
|
-
cl_assert(git_path_exists(empty_tmp_dir) == false);
|
66
|
-
|
67
|
-
git_buf_free(&file);
|
68
|
-
}
|
@@ -1,28 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
|
3
|
-
/* compare prefixes */
|
4
|
-
void test_core_string__0(void)
|
5
|
-
{
|
6
|
-
cl_assert(git__prefixcmp("", "") == 0);
|
7
|
-
cl_assert(git__prefixcmp("a", "") == 0);
|
8
|
-
cl_assert(git__prefixcmp("", "a") < 0);
|
9
|
-
cl_assert(git__prefixcmp("a", "b") < 0);
|
10
|
-
cl_assert(git__prefixcmp("b", "a") > 0);
|
11
|
-
cl_assert(git__prefixcmp("ab", "a") == 0);
|
12
|
-
cl_assert(git__prefixcmp("ab", "ac") < 0);
|
13
|
-
cl_assert(git__prefixcmp("ab", "aa") > 0);
|
14
|
-
}
|
15
|
-
|
16
|
-
/* compare suffixes */
|
17
|
-
void test_core_string__1(void)
|
18
|
-
{
|
19
|
-
cl_assert(git__suffixcmp("", "") == 0);
|
20
|
-
cl_assert(git__suffixcmp("a", "") == 0);
|
21
|
-
cl_assert(git__suffixcmp("", "a") < 0);
|
22
|
-
cl_assert(git__suffixcmp("a", "b") < 0);
|
23
|
-
cl_assert(git__suffixcmp("b", "a") > 0);
|
24
|
-
cl_assert(git__suffixcmp("ba", "a") == 0);
|
25
|
-
cl_assert(git__suffixcmp("zaa", "ac") < 0);
|
26
|
-
cl_assert(git__suffixcmp("zaz", "ac") > 0);
|
27
|
-
}
|
28
|
-
|
@@ -1,102 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "strmap.h"
|
3
|
-
|
4
|
-
GIT__USE_STRMAP;
|
5
|
-
|
6
|
-
void test_core_strmap__0(void)
|
7
|
-
{
|
8
|
-
git_strmap *table = git_strmap_alloc();
|
9
|
-
cl_assert(table != NULL);
|
10
|
-
cl_assert(git_strmap_num_entries(table) == 0);
|
11
|
-
git_strmap_free(table);
|
12
|
-
}
|
13
|
-
|
14
|
-
static void insert_strings(git_strmap *table, int count)
|
15
|
-
{
|
16
|
-
int i, j, over, err;
|
17
|
-
char *str;
|
18
|
-
|
19
|
-
for (i = 0; i < count; ++i) {
|
20
|
-
str = malloc(10);
|
21
|
-
for (j = 0; j < 10; ++j)
|
22
|
-
str[j] = 'a' + (i % 26);
|
23
|
-
str[9] = '\0';
|
24
|
-
|
25
|
-
/* if > 26, then encode larger value in first letters */
|
26
|
-
for (j = 0, over = i / 26; over > 0; j++, over = over / 26)
|
27
|
-
str[j] = 'A' + (over % 26);
|
28
|
-
|
29
|
-
git_strmap_insert(table, str, str, err);
|
30
|
-
cl_assert(err >= 0);
|
31
|
-
}
|
32
|
-
|
33
|
-
cl_assert((int)git_strmap_num_entries(table) == count);
|
34
|
-
}
|
35
|
-
|
36
|
-
void test_core_strmap__1(void)
|
37
|
-
{
|
38
|
-
int i;
|
39
|
-
char *str;
|
40
|
-
git_strmap *table = git_strmap_alloc();
|
41
|
-
cl_assert(table != NULL);
|
42
|
-
|
43
|
-
insert_strings(table, 20);
|
44
|
-
|
45
|
-
cl_assert(git_strmap_exists(table, "aaaaaaaaa"));
|
46
|
-
cl_assert(git_strmap_exists(table, "ggggggggg"));
|
47
|
-
cl_assert(!git_strmap_exists(table, "aaaaaaaab"));
|
48
|
-
cl_assert(!git_strmap_exists(table, "abcdefghi"));
|
49
|
-
|
50
|
-
i = 0;
|
51
|
-
git_strmap_foreach_value(table, str, { i++; free(str); });
|
52
|
-
cl_assert(i == 20);
|
53
|
-
|
54
|
-
git_strmap_free(table);
|
55
|
-
}
|
56
|
-
|
57
|
-
void test_core_strmap__2(void)
|
58
|
-
{
|
59
|
-
khiter_t pos;
|
60
|
-
int i;
|
61
|
-
char *str;
|
62
|
-
git_strmap *table = git_strmap_alloc();
|
63
|
-
cl_assert(table != NULL);
|
64
|
-
|
65
|
-
insert_strings(table, 20);
|
66
|
-
|
67
|
-
cl_assert(git_strmap_exists(table, "aaaaaaaaa"));
|
68
|
-
cl_assert(git_strmap_exists(table, "ggggggggg"));
|
69
|
-
cl_assert(!git_strmap_exists(table, "aaaaaaaab"));
|
70
|
-
cl_assert(!git_strmap_exists(table, "abcdefghi"));
|
71
|
-
|
72
|
-
cl_assert(git_strmap_exists(table, "bbbbbbbbb"));
|
73
|
-
pos = git_strmap_lookup_index(table, "bbbbbbbbb");
|
74
|
-
cl_assert(git_strmap_valid_index(table, pos));
|
75
|
-
cl_assert_equal_s(git_strmap_value_at(table, pos), "bbbbbbbbb");
|
76
|
-
free(git_strmap_value_at(table, pos));
|
77
|
-
git_strmap_delete_at(table, pos);
|
78
|
-
|
79
|
-
cl_assert(!git_strmap_exists(table, "bbbbbbbbb"));
|
80
|
-
|
81
|
-
i = 0;
|
82
|
-
git_strmap_foreach_value(table, str, { i++; free(str); });
|
83
|
-
cl_assert(i == 19);
|
84
|
-
|
85
|
-
git_strmap_free(table);
|
86
|
-
}
|
87
|
-
|
88
|
-
void test_core_strmap__3(void)
|
89
|
-
{
|
90
|
-
int i;
|
91
|
-
char *str;
|
92
|
-
git_strmap *table = git_strmap_alloc();
|
93
|
-
cl_assert(table != NULL);
|
94
|
-
|
95
|
-
insert_strings(table, 10000);
|
96
|
-
|
97
|
-
i = 0;
|
98
|
-
git_strmap_foreach_value(table, str, { i++; free(str); });
|
99
|
-
cl_assert(i == 10000);
|
100
|
-
|
101
|
-
git_strmap_free(table);
|
102
|
-
}
|
@@ -1,37 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
|
3
|
-
void test_core_strtol__int32(void)
|
4
|
-
{
|
5
|
-
int32_t i;
|
6
|
-
|
7
|
-
cl_git_pass(git__strtol32(&i, "123", NULL, 10));
|
8
|
-
cl_assert(i == 123);
|
9
|
-
cl_git_pass(git__strtol32(&i, " +123 ", NULL, 10));
|
10
|
-
cl_assert(i == 123);
|
11
|
-
cl_git_pass(git__strtol32(&i, " +2147483647 ", NULL, 10));
|
12
|
-
cl_assert(i == 2147483647);
|
13
|
-
cl_git_pass(git__strtol32(&i, " -2147483648 ", NULL, 10));
|
14
|
-
cl_assert(i == -2147483648LL);
|
15
|
-
|
16
|
-
cl_git_fail(git__strtol32(&i, " 2147483657 ", NULL, 10));
|
17
|
-
cl_git_fail(git__strtol32(&i, " -2147483657 ", NULL, 10));
|
18
|
-
}
|
19
|
-
|
20
|
-
void test_core_strtol__int64(void)
|
21
|
-
{
|
22
|
-
int64_t i;
|
23
|
-
|
24
|
-
cl_git_pass(git__strtol64(&i, "123", NULL, 10));
|
25
|
-
cl_assert(i == 123);
|
26
|
-
cl_git_pass(git__strtol64(&i, " +123 ", NULL, 10));
|
27
|
-
cl_assert(i == 123);
|
28
|
-
cl_git_pass(git__strtol64(&i, " +2147483647 ", NULL, 10));
|
29
|
-
cl_assert(i == 2147483647);
|
30
|
-
cl_git_pass(git__strtol64(&i, " -2147483648 ", NULL, 10));
|
31
|
-
cl_assert(i == -2147483648LL);
|
32
|
-
cl_git_pass(git__strtol64(&i, " 2147483657 ", NULL, 10));
|
33
|
-
cl_assert(i == 2147483657LL);
|
34
|
-
cl_git_pass(git__strtol64(&i, " -2147483657 ", NULL, 10));
|
35
|
-
cl_assert(i == -2147483657LL);
|
36
|
-
}
|
37
|
-
|
@@ -1,191 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "vector.h"
|
3
|
-
|
4
|
-
/* initial size of 1 would cause writing past array bounds */
|
5
|
-
void test_core_vector__0(void)
|
6
|
-
{
|
7
|
-
git_vector x;
|
8
|
-
int i;
|
9
|
-
git_vector_init(&x, 1, NULL);
|
10
|
-
for (i = 0; i < 10; ++i) {
|
11
|
-
git_vector_insert(&x, (void*) 0xabc);
|
12
|
-
}
|
13
|
-
git_vector_free(&x);
|
14
|
-
}
|
15
|
-
|
16
|
-
|
17
|
-
/* don't read past array bounds on remove() */
|
18
|
-
void test_core_vector__1(void)
|
19
|
-
{
|
20
|
-
git_vector x;
|
21
|
-
// make initial capacity exact for our insertions.
|
22
|
-
git_vector_init(&x, 3, NULL);
|
23
|
-
git_vector_insert(&x, (void*) 0xabc);
|
24
|
-
git_vector_insert(&x, (void*) 0xdef);
|
25
|
-
git_vector_insert(&x, (void*) 0x123);
|
26
|
-
|
27
|
-
git_vector_remove(&x, 0); // used to read past array bounds.
|
28
|
-
git_vector_free(&x);
|
29
|
-
}
|
30
|
-
|
31
|
-
|
32
|
-
static int test_cmp(const void *a, const void *b)
|
33
|
-
{
|
34
|
-
return *(const int *)a - *(const int *)b;
|
35
|
-
}
|
36
|
-
|
37
|
-
/* remove duplicates */
|
38
|
-
void test_core_vector__2(void)
|
39
|
-
{
|
40
|
-
git_vector x;
|
41
|
-
int *ptrs[2];
|
42
|
-
|
43
|
-
ptrs[0] = git__malloc(sizeof(int));
|
44
|
-
ptrs[1] = git__malloc(sizeof(int));
|
45
|
-
|
46
|
-
*ptrs[0] = 2;
|
47
|
-
*ptrs[1] = 1;
|
48
|
-
|
49
|
-
cl_git_pass(git_vector_init(&x, 5, test_cmp));
|
50
|
-
cl_git_pass(git_vector_insert(&x, ptrs[0]));
|
51
|
-
cl_git_pass(git_vector_insert(&x, ptrs[1]));
|
52
|
-
cl_git_pass(git_vector_insert(&x, ptrs[1]));
|
53
|
-
cl_git_pass(git_vector_insert(&x, ptrs[0]));
|
54
|
-
cl_git_pass(git_vector_insert(&x, ptrs[1]));
|
55
|
-
cl_assert(x.length == 5);
|
56
|
-
|
57
|
-
git_vector_uniq(&x);
|
58
|
-
cl_assert(x.length == 2);
|
59
|
-
|
60
|
-
git_vector_free(&x);
|
61
|
-
|
62
|
-
git__free(ptrs[0]);
|
63
|
-
git__free(ptrs[1]);
|
64
|
-
}
|
65
|
-
|
66
|
-
|
67
|
-
static int compare_them(const void *a, const void *b)
|
68
|
-
{
|
69
|
-
return (int)((long)a - (long)b);
|
70
|
-
}
|
71
|
-
|
72
|
-
/* insert_sorted */
|
73
|
-
void test_core_vector__3(void)
|
74
|
-
{
|
75
|
-
git_vector x;
|
76
|
-
long i;
|
77
|
-
git_vector_init(&x, 1, &compare_them);
|
78
|
-
|
79
|
-
for (i = 0; i < 10; i += 2) {
|
80
|
-
git_vector_insert_sorted(&x, (void*)(i + 1), NULL);
|
81
|
-
}
|
82
|
-
|
83
|
-
for (i = 9; i > 0; i -= 2) {
|
84
|
-
git_vector_insert_sorted(&x, (void*)(i + 1), NULL);
|
85
|
-
}
|
86
|
-
|
87
|
-
cl_assert(x.length == 10);
|
88
|
-
for (i = 0; i < 10; ++i) {
|
89
|
-
cl_assert(git_vector_get(&x, i) == (void*)(i + 1));
|
90
|
-
}
|
91
|
-
|
92
|
-
git_vector_free(&x);
|
93
|
-
}
|
94
|
-
|
95
|
-
/* insert_sorted with duplicates */
|
96
|
-
void test_core_vector__4(void)
|
97
|
-
{
|
98
|
-
git_vector x;
|
99
|
-
long i;
|
100
|
-
git_vector_init(&x, 1, &compare_them);
|
101
|
-
|
102
|
-
for (i = 0; i < 10; i += 2) {
|
103
|
-
git_vector_insert_sorted(&x, (void*)(i + 1), NULL);
|
104
|
-
}
|
105
|
-
|
106
|
-
for (i = 9; i > 0; i -= 2) {
|
107
|
-
git_vector_insert_sorted(&x, (void*)(i + 1), NULL);
|
108
|
-
}
|
109
|
-
|
110
|
-
for (i = 0; i < 10; i += 2) {
|
111
|
-
git_vector_insert_sorted(&x, (void*)(i + 1), NULL);
|
112
|
-
}
|
113
|
-
|
114
|
-
for (i = 9; i > 0; i -= 2) {
|
115
|
-
git_vector_insert_sorted(&x, (void*)(i + 1), NULL);
|
116
|
-
}
|
117
|
-
|
118
|
-
cl_assert(x.length == 20);
|
119
|
-
for (i = 0; i < 20; ++i) {
|
120
|
-
cl_assert(git_vector_get(&x, i) == (void*)(i / 2 + 1));
|
121
|
-
}
|
122
|
-
|
123
|
-
git_vector_free(&x);
|
124
|
-
}
|
125
|
-
|
126
|
-
typedef struct {
|
127
|
-
int content;
|
128
|
-
int count;
|
129
|
-
} my_struct;
|
130
|
-
|
131
|
-
static int _struct_count = 0;
|
132
|
-
|
133
|
-
static int compare_structs(const void *a, const void *b)
|
134
|
-
{
|
135
|
-
return ((const my_struct *)a)->content -
|
136
|
-
((const my_struct *)b)->content;
|
137
|
-
}
|
138
|
-
|
139
|
-
static int merge_structs(void **old_raw, void *new)
|
140
|
-
{
|
141
|
-
my_struct *old = *(my_struct **)old_raw;
|
142
|
-
cl_assert(((my_struct *)old)->content == ((my_struct *)new)->content);
|
143
|
-
((my_struct *)old)->count += 1;
|
144
|
-
git__free(new);
|
145
|
-
_struct_count--;
|
146
|
-
return GIT_EEXISTS;
|
147
|
-
}
|
148
|
-
|
149
|
-
static my_struct *alloc_struct(int value)
|
150
|
-
{
|
151
|
-
my_struct *st = git__malloc(sizeof(my_struct));
|
152
|
-
st->content = value;
|
153
|
-
st->count = 0;
|
154
|
-
_struct_count++;
|
155
|
-
return st;
|
156
|
-
}
|
157
|
-
|
158
|
-
/* insert_sorted with duplicates and special handling */
|
159
|
-
void test_core_vector__5(void)
|
160
|
-
{
|
161
|
-
git_vector x;
|
162
|
-
int i;
|
163
|
-
|
164
|
-
git_vector_init(&x, 1, &compare_structs);
|
165
|
-
|
166
|
-
for (i = 0; i < 10; i += 2)
|
167
|
-
git_vector_insert_sorted(&x, alloc_struct(i), &merge_structs);
|
168
|
-
|
169
|
-
for (i = 9; i > 0; i -= 2)
|
170
|
-
git_vector_insert_sorted(&x, alloc_struct(i), &merge_structs);
|
171
|
-
|
172
|
-
cl_assert(x.length == 10);
|
173
|
-
cl_assert(_struct_count == 10);
|
174
|
-
|
175
|
-
for (i = 0; i < 10; i += 2)
|
176
|
-
git_vector_insert_sorted(&x, alloc_struct(i), &merge_structs);
|
177
|
-
|
178
|
-
for (i = 9; i > 0; i -= 2)
|
179
|
-
git_vector_insert_sorted(&x, alloc_struct(i), &merge_structs);
|
180
|
-
|
181
|
-
cl_assert(x.length == 10);
|
182
|
-
cl_assert(_struct_count == 10);
|
183
|
-
|
184
|
-
for (i = 0; i < 10; ++i) {
|
185
|
-
cl_assert(((my_struct *)git_vector_get(&x, i))->content == i);
|
186
|
-
git__free(git_vector_get(&x, i));
|
187
|
-
_struct_count--;
|
188
|
-
}
|
189
|
-
|
190
|
-
git_vector_free(&x);
|
191
|
-
}
|