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,235 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "fileops.h"
|
3
|
-
|
4
|
-
typedef struct name_data {
|
5
|
-
int count; /* return count */
|
6
|
-
char *name; /* filename */
|
7
|
-
} name_data;
|
8
|
-
|
9
|
-
typedef struct walk_data {
|
10
|
-
char *sub; /* sub-directory name */
|
11
|
-
name_data *names; /* name state data */
|
12
|
-
git_buf path;
|
13
|
-
} walk_data;
|
14
|
-
|
15
|
-
|
16
|
-
static char *top_dir = "dir-walk";
|
17
|
-
static walk_data *state_loc;
|
18
|
-
|
19
|
-
static void setup(walk_data *d)
|
20
|
-
{
|
21
|
-
name_data *n;
|
22
|
-
|
23
|
-
cl_must_pass(p_mkdir(top_dir, 0777));
|
24
|
-
|
25
|
-
cl_must_pass(p_chdir(top_dir));
|
26
|
-
|
27
|
-
if (strcmp(d->sub, ".") != 0)
|
28
|
-
cl_must_pass(p_mkdir(d->sub, 0777));
|
29
|
-
|
30
|
-
cl_git_pass(git_buf_sets(&d->path, d->sub));
|
31
|
-
|
32
|
-
state_loc = d;
|
33
|
-
|
34
|
-
for (n = d->names; n->name; n++) {
|
35
|
-
git_file fd = p_creat(n->name, 0666);
|
36
|
-
cl_assert(fd >= 0);
|
37
|
-
p_close(fd);
|
38
|
-
n->count = 0;
|
39
|
-
}
|
40
|
-
}
|
41
|
-
|
42
|
-
static void dirent_cleanup__cb(void *_d)
|
43
|
-
{
|
44
|
-
walk_data *d = _d;
|
45
|
-
name_data *n;
|
46
|
-
|
47
|
-
for (n = d->names; n->name; n++) {
|
48
|
-
cl_must_pass(p_unlink(n->name));
|
49
|
-
}
|
50
|
-
|
51
|
-
if (strcmp(d->sub, ".") != 0)
|
52
|
-
cl_must_pass(p_rmdir(d->sub));
|
53
|
-
|
54
|
-
cl_must_pass(p_chdir(".."));
|
55
|
-
|
56
|
-
cl_must_pass(p_rmdir(top_dir));
|
57
|
-
|
58
|
-
git_buf_free(&d->path);
|
59
|
-
}
|
60
|
-
|
61
|
-
static void check_counts(walk_data *d)
|
62
|
-
{
|
63
|
-
name_data *n;
|
64
|
-
|
65
|
-
for (n = d->names; n->name; n++) {
|
66
|
-
cl_assert(n->count == 1);
|
67
|
-
}
|
68
|
-
}
|
69
|
-
|
70
|
-
static int one_entry(void *state, git_buf *path)
|
71
|
-
{
|
72
|
-
walk_data *d = (walk_data *) state;
|
73
|
-
name_data *n;
|
74
|
-
|
75
|
-
if (state != state_loc)
|
76
|
-
return GIT_ERROR;
|
77
|
-
|
78
|
-
if (path != &d->path)
|
79
|
-
return GIT_ERROR;
|
80
|
-
|
81
|
-
for (n = d->names; n->name; n++) {
|
82
|
-
if (!strcmp(n->name, path->ptr)) {
|
83
|
-
n->count++;
|
84
|
-
return 0;
|
85
|
-
}
|
86
|
-
}
|
87
|
-
|
88
|
-
return GIT_ERROR;
|
89
|
-
}
|
90
|
-
|
91
|
-
static int dont_call_me(void *state, git_buf *path)
|
92
|
-
{
|
93
|
-
GIT_UNUSED(state);
|
94
|
-
GIT_UNUSED(path);
|
95
|
-
return GIT_ERROR;
|
96
|
-
}
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
static name_data dot_names[] = {
|
101
|
-
{ 0, "./a" },
|
102
|
-
{ 0, "./asdf" },
|
103
|
-
{ 0, "./pack-foo.pack" },
|
104
|
-
{ 0, NULL }
|
105
|
-
};
|
106
|
-
static walk_data dot = {
|
107
|
-
".",
|
108
|
-
dot_names,
|
109
|
-
GIT_BUF_INIT
|
110
|
-
};
|
111
|
-
|
112
|
-
/* make sure that the '.' folder is not traversed */
|
113
|
-
void test_core_dirent__dont_traverse_dot(void)
|
114
|
-
{
|
115
|
-
cl_set_cleanup(&dirent_cleanup__cb, &dot);
|
116
|
-
setup(&dot);
|
117
|
-
|
118
|
-
cl_git_pass(git_path_direach(&dot.path,
|
119
|
-
one_entry,
|
120
|
-
&dot));
|
121
|
-
|
122
|
-
check_counts(&dot);
|
123
|
-
}
|
124
|
-
|
125
|
-
|
126
|
-
static name_data sub_names[] = {
|
127
|
-
{ 0, "sub/a" },
|
128
|
-
{ 0, "sub/asdf" },
|
129
|
-
{ 0, "sub/pack-foo.pack" },
|
130
|
-
{ 0, NULL }
|
131
|
-
};
|
132
|
-
static walk_data sub = {
|
133
|
-
"sub",
|
134
|
-
sub_names,
|
135
|
-
GIT_BUF_INIT
|
136
|
-
};
|
137
|
-
|
138
|
-
/* traverse a subfolder */
|
139
|
-
void test_core_dirent__traverse_subfolder(void)
|
140
|
-
{
|
141
|
-
cl_set_cleanup(&dirent_cleanup__cb, &sub);
|
142
|
-
setup(&sub);
|
143
|
-
|
144
|
-
cl_git_pass(git_path_direach(&sub.path,
|
145
|
-
one_entry,
|
146
|
-
&sub));
|
147
|
-
|
148
|
-
check_counts(&sub);
|
149
|
-
}
|
150
|
-
|
151
|
-
|
152
|
-
static walk_data sub_slash = {
|
153
|
-
"sub/",
|
154
|
-
sub_names,
|
155
|
-
GIT_BUF_INIT
|
156
|
-
};
|
157
|
-
|
158
|
-
/* traverse a slash-terminated subfolder */
|
159
|
-
void test_core_dirent__traverse_slash_terminated_folder(void)
|
160
|
-
{
|
161
|
-
cl_set_cleanup(&dirent_cleanup__cb, &sub_slash);
|
162
|
-
setup(&sub_slash);
|
163
|
-
|
164
|
-
cl_git_pass(git_path_direach(&sub_slash.path,
|
165
|
-
one_entry,
|
166
|
-
&sub_slash));
|
167
|
-
|
168
|
-
check_counts(&sub_slash);
|
169
|
-
}
|
170
|
-
|
171
|
-
|
172
|
-
static name_data empty_names[] = {
|
173
|
-
{ 0, NULL }
|
174
|
-
};
|
175
|
-
static walk_data empty = {
|
176
|
-
"empty",
|
177
|
-
empty_names,
|
178
|
-
GIT_BUF_INIT
|
179
|
-
};
|
180
|
-
|
181
|
-
/* make sure that empty folders are not traversed */
|
182
|
-
void test_core_dirent__dont_traverse_empty_folders(void)
|
183
|
-
{
|
184
|
-
cl_set_cleanup(&dirent_cleanup__cb, &empty);
|
185
|
-
setup(&empty);
|
186
|
-
|
187
|
-
cl_git_pass(git_path_direach(&empty.path,
|
188
|
-
one_entry,
|
189
|
-
&empty));
|
190
|
-
|
191
|
-
check_counts(&empty);
|
192
|
-
|
193
|
-
/* make sure callback not called */
|
194
|
-
cl_git_pass(git_path_direach(&empty.path,
|
195
|
-
dont_call_me,
|
196
|
-
&empty));
|
197
|
-
}
|
198
|
-
|
199
|
-
static name_data odd_names[] = {
|
200
|
-
{ 0, "odd/.a" },
|
201
|
-
{ 0, "odd/..c" },
|
202
|
-
/* the following don't work on cygwin/win32 */
|
203
|
-
/* { 0, "odd/.b." }, */
|
204
|
-
/* { 0, "odd/..d.." }, */
|
205
|
-
{ 0, NULL }
|
206
|
-
};
|
207
|
-
static walk_data odd = {
|
208
|
-
"odd",
|
209
|
-
odd_names,
|
210
|
-
GIT_BUF_INIT
|
211
|
-
};
|
212
|
-
|
213
|
-
/* make sure that strange looking filenames ('..c') are traversed */
|
214
|
-
void test_core_dirent__traverse_weird_filenames(void)
|
215
|
-
{
|
216
|
-
cl_set_cleanup(&dirent_cleanup__cb, &odd);
|
217
|
-
setup(&odd);
|
218
|
-
|
219
|
-
cl_git_pass(git_path_direach(&odd.path,
|
220
|
-
one_entry,
|
221
|
-
&odd));
|
222
|
-
|
223
|
-
check_counts(&odd);
|
224
|
-
}
|
225
|
-
|
226
|
-
/* test filename length limits */
|
227
|
-
void test_core_dirent__length_limits(void)
|
228
|
-
{
|
229
|
-
char *big_filename = (char *)git__malloc(FILENAME_MAX + 1);
|
230
|
-
memset(big_filename, 'a', FILENAME_MAX + 1);
|
231
|
-
big_filename[FILENAME_MAX] = 0;
|
232
|
-
|
233
|
-
cl_must_fail(p_creat(big_filename, 0666));
|
234
|
-
git__free(big_filename);
|
235
|
-
}
|
@@ -1,115 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "fileops.h"
|
3
|
-
#include "path.h"
|
4
|
-
|
5
|
-
#ifdef GIT_WIN32
|
6
|
-
static char *env_userprofile = NULL;
|
7
|
-
static char *env_programfiles = NULL;
|
8
|
-
#else
|
9
|
-
static char *env_home = NULL;
|
10
|
-
#endif
|
11
|
-
|
12
|
-
void test_core_env__initialize(void)
|
13
|
-
{
|
14
|
-
#ifdef GIT_WIN32
|
15
|
-
env_userprofile = cl_getenv("USERPROFILE");
|
16
|
-
env_programfiles = cl_getenv("PROGRAMFILES");
|
17
|
-
#else
|
18
|
-
env_home = cl_getenv("HOME");
|
19
|
-
#endif
|
20
|
-
}
|
21
|
-
|
22
|
-
void test_core_env__cleanup(void)
|
23
|
-
{
|
24
|
-
#ifdef GIT_WIN32
|
25
|
-
cl_setenv("USERPROFILE", env_userprofile);
|
26
|
-
git__free(env_userprofile);
|
27
|
-
cl_setenv("PROGRAMFILES", env_programfiles);
|
28
|
-
git__free(env_programfiles);
|
29
|
-
#else
|
30
|
-
cl_setenv("HOME", env_home);
|
31
|
-
#endif
|
32
|
-
}
|
33
|
-
|
34
|
-
void test_core_env__0(void)
|
35
|
-
{
|
36
|
-
static char *home_values[] = {
|
37
|
-
"fake_home",
|
38
|
-
"fáke_hõme", /* all in latin-1 supplement */
|
39
|
-
"fĀke_Ĥome", /* latin extended */
|
40
|
-
"fακε_hοmέ", /* having fun with greek */
|
41
|
-
"faงe_นome", /* now I have no idea, but thai characters */
|
42
|
-
"f\xe1\x9cx80ke_\xe1\x9c\x91ome", /* tagalog characters */
|
43
|
-
"\xe1\xb8\x9fẢke_hoṁe", /* latin extended additional */
|
44
|
-
"\xf0\x9f\x98\x98\xf0\x9f\x98\x82", /* emoticons */
|
45
|
-
NULL
|
46
|
-
};
|
47
|
-
git_buf path = GIT_BUF_INIT, found = GIT_BUF_INIT;
|
48
|
-
char **val;
|
49
|
-
char *check;
|
50
|
-
|
51
|
-
for (val = home_values; *val != NULL; val++) {
|
52
|
-
|
53
|
-
if (p_mkdir(*val, 0777) == 0) {
|
54
|
-
/* if we can't make the directory, let's just assume
|
55
|
-
* we are on a filesystem that doesn't support the
|
56
|
-
* characters in question and skip this test...
|
57
|
-
*/
|
58
|
-
cl_git_pass(git_path_prettify(&path, *val, NULL));
|
59
|
-
|
60
|
-
#ifdef GIT_WIN32
|
61
|
-
cl_git_pass(cl_setenv("USERPROFILE", path.ptr));
|
62
|
-
|
63
|
-
/* do a quick check that it was set correctly */
|
64
|
-
check = cl_getenv("USERPROFILE");
|
65
|
-
cl_assert_equal_s(path.ptr, check);
|
66
|
-
git__free(check);
|
67
|
-
#else
|
68
|
-
cl_git_pass(cl_setenv("HOME", path.ptr));
|
69
|
-
|
70
|
-
/* do a quick check that it was set correctly */
|
71
|
-
check = cl_getenv("HOME");
|
72
|
-
cl_assert_equal_s(path.ptr, check);
|
73
|
-
#endif
|
74
|
-
|
75
|
-
cl_git_pass(git_buf_puts(&path, "/testfile"));
|
76
|
-
cl_git_mkfile(path.ptr, "find me");
|
77
|
-
|
78
|
-
cl_git_pass(git_futils_find_global_file(&found, "testfile"));
|
79
|
-
}
|
80
|
-
}
|
81
|
-
|
82
|
-
git_buf_free(&path);
|
83
|
-
git_buf_free(&found);
|
84
|
-
}
|
85
|
-
|
86
|
-
void test_core_env__1(void)
|
87
|
-
{
|
88
|
-
git_buf path = GIT_BUF_INIT;
|
89
|
-
|
90
|
-
cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
|
91
|
-
|
92
|
-
#ifdef GIT_WIN32
|
93
|
-
cl_git_pass(cl_setenv("USERPROFILE", "doesnotexist"));
|
94
|
-
#else
|
95
|
-
cl_git_pass(cl_setenv("HOME", "doesnotexist"));
|
96
|
-
#endif
|
97
|
-
|
98
|
-
cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
|
99
|
-
|
100
|
-
#ifdef GIT_WIN32
|
101
|
-
cl_git_pass(cl_setenv("USERPROFILE", NULL));
|
102
|
-
#else
|
103
|
-
cl_git_pass(cl_setenv("HOME", NULL));
|
104
|
-
#endif
|
105
|
-
|
106
|
-
cl_assert(git_futils_find_global_file(&path, "nonexistentfile") == -1);
|
107
|
-
|
108
|
-
cl_assert(git_futils_find_system_file(&path, "nonexistentfile") == GIT_ENOTFOUND);
|
109
|
-
|
110
|
-
#ifdef GIT_WIN32
|
111
|
-
cl_git_pass(cl_setenv("PROGRAMFILES", NULL));
|
112
|
-
|
113
|
-
cl_assert(git_futils_find_system_file(&path, "nonexistentfile") == -1);
|
114
|
-
#endif
|
115
|
-
}
|
@@ -1,60 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "common.h"
|
3
|
-
#include "util.h"
|
4
|
-
#include "posix.h"
|
5
|
-
|
6
|
-
void test_core_errors__new_school(void)
|
7
|
-
{
|
8
|
-
char *str_in_error;
|
9
|
-
|
10
|
-
giterr_clear();
|
11
|
-
cl_assert(giterr_last() == NULL);
|
12
|
-
|
13
|
-
giterr_set_oom(); /* internal fn */
|
14
|
-
|
15
|
-
cl_assert(giterr_last() != NULL);
|
16
|
-
cl_assert(giterr_last()->klass == GITERR_NOMEMORY);
|
17
|
-
str_in_error = strstr(giterr_last()->message, "memory");
|
18
|
-
cl_assert(str_in_error != NULL);
|
19
|
-
|
20
|
-
giterr_clear();
|
21
|
-
|
22
|
-
giterr_set(GITERR_REPOSITORY, "This is a test"); /* internal fn */
|
23
|
-
|
24
|
-
cl_assert(giterr_last() != NULL);
|
25
|
-
str_in_error = strstr(giterr_last()->message, "This is a test");
|
26
|
-
cl_assert(str_in_error != NULL);
|
27
|
-
|
28
|
-
giterr_clear();
|
29
|
-
cl_assert(giterr_last() == NULL);
|
30
|
-
|
31
|
-
do {
|
32
|
-
struct stat st;
|
33
|
-
memset(&st, 0, sizeof(st));
|
34
|
-
cl_assert(p_lstat("this_file_does_not_exist", &st) < 0);
|
35
|
-
GIT_UNUSED(st);
|
36
|
-
} while (false);
|
37
|
-
giterr_set(GITERR_OS, "stat failed"); /* internal fn */
|
38
|
-
|
39
|
-
cl_assert(giterr_last() != NULL);
|
40
|
-
str_in_error = strstr(giterr_last()->message, "stat failed");
|
41
|
-
cl_assert(str_in_error != NULL);
|
42
|
-
cl_assert(git__prefixcmp(str_in_error, "stat failed: ") == 0);
|
43
|
-
cl_assert(strlen(str_in_error) > strlen("stat failed: "));
|
44
|
-
|
45
|
-
#ifdef GIT_WIN32
|
46
|
-
giterr_clear();
|
47
|
-
|
48
|
-
/* The MSDN docs use this to generate a sample error */
|
49
|
-
cl_assert(GetProcessId(NULL) == 0);
|
50
|
-
giterr_set(GITERR_OS, "GetProcessId failed"); /* internal fn */
|
51
|
-
|
52
|
-
cl_assert(giterr_last() != NULL);
|
53
|
-
str_in_error = strstr(giterr_last()->message, "GetProcessId failed");
|
54
|
-
cl_assert(str_in_error != NULL);
|
55
|
-
cl_assert(git__prefixcmp(str_in_error, "GetProcessId failed: ") == 0);
|
56
|
-
cl_assert(strlen(str_in_error) > strlen("GetProcessId failed: "));
|
57
|
-
#endif
|
58
|
-
|
59
|
-
giterr_clear();
|
60
|
-
}
|
@@ -1,92 +0,0 @@
|
|
1
|
-
#include "clar_libgit2.h"
|
2
|
-
#include "filebuf.h"
|
3
|
-
|
4
|
-
/* make sure git_filebuf_open doesn't delete an existing lock */
|
5
|
-
void test_core_filebuf__0(void)
|
6
|
-
{
|
7
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
8
|
-
int fd;
|
9
|
-
char test[] = "test", testlock[] = "test.lock";
|
10
|
-
|
11
|
-
fd = p_creat(testlock, 0744); //-V536
|
12
|
-
|
13
|
-
cl_must_pass(fd);
|
14
|
-
cl_must_pass(p_close(fd));
|
15
|
-
|
16
|
-
cl_git_fail(git_filebuf_open(&file, test, 0));
|
17
|
-
cl_assert(git_path_exists(testlock));
|
18
|
-
|
19
|
-
cl_must_pass(p_unlink(testlock));
|
20
|
-
}
|
21
|
-
|
22
|
-
|
23
|
-
/* make sure GIT_FILEBUF_APPEND works as expected */
|
24
|
-
void test_core_filebuf__1(void)
|
25
|
-
{
|
26
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
27
|
-
int fd;
|
28
|
-
char test[] = "test";
|
29
|
-
|
30
|
-
fd = p_creat(test, 0666); //-V536
|
31
|
-
cl_must_pass(fd);
|
32
|
-
cl_must_pass(p_write(fd, "libgit2 rocks\n", 14));
|
33
|
-
cl_must_pass(p_close(fd));
|
34
|
-
|
35
|
-
cl_git_pass(git_filebuf_open(&file, test, GIT_FILEBUF_APPEND));
|
36
|
-
cl_git_pass(git_filebuf_printf(&file, "%s\n", "libgit2 rocks"));
|
37
|
-
cl_git_pass(git_filebuf_commit(&file, 0666));
|
38
|
-
|
39
|
-
cl_must_pass(p_unlink(test));
|
40
|
-
}
|
41
|
-
|
42
|
-
|
43
|
-
/* make sure git_filebuf_write writes large buffer correctly */
|
44
|
-
void test_core_filebuf__2(void)
|
45
|
-
{
|
46
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
47
|
-
char test[] = "test";
|
48
|
-
unsigned char buf[4096 * 4]; /* 2 * WRITE_BUFFER_SIZE */
|
49
|
-
|
50
|
-
memset(buf, 0xfe, sizeof(buf));
|
51
|
-
|
52
|
-
cl_git_pass(git_filebuf_open(&file, test, 0));
|
53
|
-
cl_git_pass(git_filebuf_write(&file, buf, sizeof(buf)));
|
54
|
-
cl_git_pass(git_filebuf_commit(&file, 0666));
|
55
|
-
|
56
|
-
cl_must_pass(p_unlink(test));
|
57
|
-
}
|
58
|
-
|
59
|
-
/* make sure git_filebuf_cleanup clears the buffer */
|
60
|
-
void test_core_filebuf__4(void)
|
61
|
-
{
|
62
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
63
|
-
char test[] = "test";
|
64
|
-
|
65
|
-
cl_assert(file.buffer == NULL);
|
66
|
-
|
67
|
-
cl_git_pass(git_filebuf_open(&file, test, 0));
|
68
|
-
cl_assert(file.buffer != NULL);
|
69
|
-
|
70
|
-
git_filebuf_cleanup(&file);
|
71
|
-
cl_assert(file.buffer == NULL);
|
72
|
-
}
|
73
|
-
|
74
|
-
|
75
|
-
/* make sure git_filebuf_commit clears the buffer */
|
76
|
-
void test_core_filebuf__5(void)
|
77
|
-
{
|
78
|
-
git_filebuf file = GIT_FILEBUF_INIT;
|
79
|
-
char test[] = "test";
|
80
|
-
|
81
|
-
cl_assert(file.buffer == NULL);
|
82
|
-
|
83
|
-
cl_git_pass(git_filebuf_open(&file, test, 0));
|
84
|
-
cl_assert(file.buffer != NULL);
|
85
|
-
cl_git_pass(git_filebuf_printf(&file, "%s\n", "libgit2 rocks"));
|
86
|
-
cl_assert(file.buffer != NULL);
|
87
|
-
|
88
|
-
cl_git_pass(git_filebuf_commit(&file, 0666));
|
89
|
-
cl_assert(file.buffer == NULL);
|
90
|
-
|
91
|
-
cl_must_pass(p_unlink(test));
|
92
|
-
}
|