rugged 0.1.2 → 0.16.0b1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +25 -36
- data/Rakefile +20 -98
- data/ext/rugged/extconf.rb +44 -4
- data/ext/rugged/remote.c +215 -0
- data/ext/rugged/rugged.c +171 -0
- data/ext/rugged/rugged.h +126 -0
- data/ext/rugged/rugged_blob.c +99 -0
- data/ext/rugged/rugged_commit.c +224 -0
- data/ext/rugged/rugged_config.c +238 -0
- data/ext/rugged/rugged_index.c +440 -0
- data/ext/rugged/rugged_object.c +203 -0
- data/ext/rugged/rugged_reference.c +401 -0
- data/ext/rugged/rugged_repo.c +482 -0
- data/ext/rugged/rugged_revwalk.c +138 -0
- data/ext/rugged/rugged_signature.c +80 -0
- data/ext/rugged/rugged_tag.c +216 -0
- data/ext/rugged/rugged_tree.c +322 -0
- data/ext/rugged/vendor/libgit2-dist.tar.gz +0 -0
- data/ext/rugged/vendor/libgit2-dist/deps/http-parser/http_parser.c +1778 -0
- data/ext/rugged/vendor/libgit2-dist/deps/http-parser/http_parser.h +267 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/adler32.c +169 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/crc32.c +442 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/crc32.h +441 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/deflate.c +1834 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/deflate.h +342 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inffast.c +340 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inffast.h +11 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inffixed.h +94 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inflate.c +1480 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inflate.h +122 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inftrees.c +330 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/inftrees.h +62 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/trees.c +1244 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/trees.h +128 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zconf.h +54 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zlib.h +1613 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zutil.c +318 -0
- data/ext/rugged/vendor/libgit2-dist/deps/zlib/zutil.h +274 -0
- data/ext/rugged/vendor/libgit2-dist/examples/general.c +451 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/common.h +14 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/fetch.c +97 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/git2.c +58 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/index-pack.c +47 -0
- data/ext/rugged/vendor/libgit2-dist/examples/network/ls-remote.c +76 -0
- data/ext/rugged/vendor/libgit2-dist/examples/showindex.c +43 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2.h +44 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/blob.h +120 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/branch.h +15 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/commit.h +263 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/common.h +103 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/config.h +278 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/errors.h +144 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/index.h +306 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/indexer.h +76 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/inttypes.h +305 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/net.h +51 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/object.h +173 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb.h +331 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb_backend.h +100 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/oid.h +218 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/reflog.h +128 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/refs.h +309 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/refspec.h +60 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/remote.h +176 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/repository.h +290 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/revwalk.h +169 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/signature.h +65 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/status.h +63 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/stdint.h +247 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/tag.h +279 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/threads.h +48 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/tree.h +318 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/types.h +169 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/version.h +15 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/windows.h +59 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/zlib.h +40 -0
- data/ext/rugged/vendor/libgit2-dist/src/blob.c +135 -0
- data/ext/rugged/vendor/libgit2-dist/src/blob.h +23 -0
- data/ext/rugged/vendor/libgit2-dist/src/bswap.h +97 -0
- data/ext/rugged/vendor/libgit2-dist/src/buffer.c +113 -0
- data/ext/rugged/vendor/libgit2-dist/src/buffer.h +32 -0
- data/ext/rugged/vendor/libgit2-dist/src/cache.c +111 -0
- data/ext/rugged/vendor/libgit2-dist/src/cache.h +64 -0
- data/ext/rugged/vendor/libgit2-dist/src/cc-compat.h +67 -0
- data/ext/rugged/vendor/libgit2-dist/src/commit.c +299 -0
- data/ext/rugged/vendor/libgit2-dist/src/commit.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/common.h +64 -0
- data/ext/rugged/vendor/libgit2-dist/src/config.c +418 -0
- data/ext/rugged/vendor/libgit2-dist/src/config.h +24 -0
- data/ext/rugged/vendor/libgit2-dist/src/config_file.c +1210 -0
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.c +115 -0
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.h +33 -0
- data/ext/rugged/vendor/libgit2-dist/src/dir.h +47 -0
- data/ext/rugged/vendor/libgit2-dist/src/errors.c +104 -0
- data/ext/rugged/vendor/libgit2-dist/src/fetch.c +172 -0
- data/ext/rugged/vendor/libgit2-dist/src/fetch.h +18 -0
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.c +400 -0
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.h +72 -0
- data/ext/rugged/vendor/libgit2-dist/src/fileops.c +358 -0
- data/ext/rugged/vendor/libgit2-dist/src/fileops.h +151 -0
- data/ext/rugged/vendor/libgit2-dist/src/global.c +134 -0
- data/ext/rugged/vendor/libgit2-dist/src/global.h +24 -0
- data/ext/rugged/vendor/libgit2-dist/src/hash.c +74 -0
- data/ext/rugged/vendor/libgit2-dist/src/hash.h +29 -0
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.c +243 -0
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.h +80 -0
- data/ext/rugged/vendor/libgit2-dist/src/index.c +918 -0
- data/ext/rugged/vendor/libgit2-dist/src/index.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/indexer.c +401 -0
- data/ext/rugged/vendor/libgit2-dist/src/map.h +37 -0
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.c +272 -0
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.h +45 -0
- data/ext/rugged/vendor/libgit2-dist/src/netops.c +198 -0
- data/ext/rugged/vendor/libgit2-dist/src/netops.h +36 -0
- data/ext/rugged/vendor/libgit2-dist/src/object.c +295 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb.c +672 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb.h +43 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb_loose.c +855 -0
- data/ext/rugged/vendor/libgit2-dist/src/odb_pack.c +485 -0
- data/ext/rugged/vendor/libgit2-dist/src/oid.c +388 -0
- data/ext/rugged/vendor/libgit2-dist/src/pack.c +788 -0
- data/ext/rugged/vendor/libgit2-dist/src/pack.h +99 -0
- data/ext/rugged/vendor/libgit2-dist/src/path.c +270 -0
- data/ext/rugged/vendor/libgit2-dist/src/path.h +84 -0
- data/ext/rugged/vendor/libgit2-dist/src/pkt.c +426 -0
- data/ext/rugged/vendor/libgit2-dist/src/pkt.h +77 -0
- data/ext/rugged/vendor/libgit2-dist/src/posix.c +94 -0
- data/ext/rugged/vendor/libgit2-dist/src/posix.h +69 -0
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.c +70 -0
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.h +26 -0
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.c +141 -0
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.h +81 -0
- data/ext/rugged/vendor/libgit2-dist/src/protocol.c +50 -0
- data/ext/rugged/vendor/libgit2-dist/src/protocol.h +23 -0
- data/ext/rugged/vendor/libgit2-dist/src/reflog.c +318 -0
- data/ext/rugged/vendor/libgit2-dist/src/reflog.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/refs.c +1693 -0
- data/ext/rugged/vendor/libgit2-dist/src/refs.h +58 -0
- data/ext/rugged/vendor/libgit2-dist/src/refspec.c +95 -0
- data/ext/rugged/vendor/libgit2-dist/src/refspec.h +23 -0
- data/ext/rugged/vendor/libgit2-dist/src/remote.c +339 -0
- data/ext/rugged/vendor/libgit2-dist/src/remote.h +25 -0
- data/ext/rugged/vendor/libgit2-dist/src/repository.c +849 -0
- data/ext/rugged/vendor/libgit2-dist/src/repository.h +60 -0
- data/ext/rugged/vendor/libgit2-dist/src/revwalk.c +569 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1.c +280 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1.h +21 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.c +177 -0
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.h +18 -0
- data/ext/rugged/vendor/libgit2-dist/src/signature.c +335 -0
- data/ext/rugged/vendor/libgit2-dist/src/signature.h +18 -0
- data/ext/rugged/vendor/libgit2-dist/src/status.c +696 -0
- data/ext/rugged/vendor/libgit2-dist/src/tag.c +446 -0
- data/ext/rugged/vendor/libgit2-dist/src/tag.h +28 -0
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.c +55 -0
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.h +108 -0
- data/ext/rugged/vendor/libgit2-dist/src/transport.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/src/transport.h +110 -0
- data/ext/rugged/vendor/libgit2-dist/src/transports/git.c +502 -0
- data/ext/rugged/vendor/libgit2-dist/src/transports/http.c +756 -0
- data/ext/rugged/vendor/libgit2-dist/src/transports/local.c +235 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.c +201 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.h +31 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree.c +758 -0
- data/ext/rugged/vendor/libgit2-dist/src/tree.h +37 -0
- data/ext/rugged/vendor/libgit2-dist/src/tsort.c +365 -0
- data/ext/rugged/vendor/libgit2-dist/src/unix/map.c +70 -0
- data/ext/rugged/vendor/libgit2-dist/src/unix/posix.h +25 -0
- data/ext/rugged/vendor/libgit2-dist/src/util.c +381 -0
- data/ext/rugged/vendor/libgit2-dist/src/util.h +137 -0
- data/ext/rugged/vendor/libgit2-dist/src/vector.c +174 -0
- data/ext/rugged/vendor/libgit2-dist/src/vector.h +45 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/dir.c +115 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/fnmatch.c +180 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/fnmatch.h +27 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/map.c +131 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/mingw-compat.h +24 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/msvc-compat.h +38 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix.h +53 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix_w32.c +404 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.c +65 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.h +40 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.c +88 -0
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.h +17 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/buf/basic.c +29 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay.h +187 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_libgit2.h +28 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_main.c +1073 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/add.c +37 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/new.c +36 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/read.c +209 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/stress.c +39 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/write.c +77 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/dirent.c +222 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/filebuf.c +106 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/oid.c +18 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/path.c +139 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/rmdir.c +50 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/string.c +28 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/strtol.c +37 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/vector.c +66 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/index/rename.c +60 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/network/remotes.c +50 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/chars.c +52 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/compare.c +124 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/convert.c +75 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/data.h +323 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/fromstr.c +30 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/hash.c +162 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/short.c +94 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/size.c +13 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/raw/type2string.c +54 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/object/tree/frompath.c +75 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/loose.c +84 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/loose_data.h +522 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/pack_data.h +151 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/packed.c +78 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/odb/sorting.c +71 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/getters.c +68 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/init.c +104 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/open.c +54 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/single.c +38 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/status_data.h +48 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/worktree.c +124 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t00-core.c +628 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t01-data.h +322 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t01-rawobj.c +638 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t03-data.h +344 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t03-objwrite.c +255 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t04-commit.c +788 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t05-revwalk.c +140 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t06-index.c +219 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t07-hashtable.c +192 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t08-tag.c +357 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t09-tree.c +221 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t10-refs.c +1294 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t12-repo.c +174 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t13-threads.c +41 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t17-bufs.c +61 -0
- data/ext/rugged/vendor/libgit2-dist/tests/t18-status.c +448 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.c +310 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.h +83 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.c +198 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.h +54 -0
- data/ext/rugged/vendor/libgit2-dist/tests/test_main.c +89 -0
- data/lib/rugged.rb +4 -3
- data/lib/rugged/index.rb +0 -8
- data/lib/rugged/objects.rb +45 -0
- data/lib/rugged/repository.rb +29 -0
- data/lib/rugged/tree.rb +16 -6
- data/lib/rugged/version.rb +1 -1
- data/lib/rugged/walker.rb +5 -0
- data/test/blob_test.rb +18 -14
- data/test/commit_test.rb +28 -26
- data/test/coverage/HEAD.json +1 -0
- data/test/coverage/cover.rb +106 -0
- data/test/fixtures/testrepo.git/refs/heads/new_name +1 -0
- data/test/index_test.rb +101 -78
- data/test/lib_test.rb +4 -4
- data/test/object_test.rb +3 -3
- data/test/reference_test.rb +75 -0
- data/test/remote_test.rb +19 -0
- data/test/repo_pack_test.rb +4 -4
- data/test/repo_test.rb +44 -15
- data/test/tag_test.rb +7 -17
- data/test/test_helper.rb +24 -5
- data/test/tree_test.rb +30 -12
- data/test/walker_test.rb +40 -31
- metadata +273 -50
- data/lib/rugged/person.rb +0 -20
- data/lib/rugged/tree_entry.rb +0 -9
- data/test/fixtures/testrepo.git/objects/1d/83f106355e4309a293e42ad2a2c4b8bdbe77ae +0 -0
- data/test/fixtures/testrepo.git/objects/2f/3321418db5b2a841375b8b70880a8ab5a4148f +0 -0
- data/test/fixtures/testrepo.git/objects/36/9b00a7700cca3a506d79e301d6ad8bf735d9ee +0 -3
- data/test/fixtures/testrepo.git/objects/3d/b1b5ceace59ff65279757003763046fd4cbbe6 +0 -0
- data/test/fixtures/testrepo.git/objects/4c/d1604907792e2c43e03dcec1216f99d63e68c4 +0 -3
- data/test/fixtures/testrepo.git/objects/e0/f46d77041c149296549b01ed4a18b02c4b7400 +0 -0
@@ -0,0 +1,344 @@
|
|
1
|
+
|
2
|
+
typedef struct object_data {
|
3
|
+
char *id; /* object id (sha1) */
|
4
|
+
char *dir; /* object store (fan-out) directory name */
|
5
|
+
char *file; /* object store filename */
|
6
|
+
} object_data;
|
7
|
+
|
8
|
+
static object_data commit = {
|
9
|
+
"3d7f8a6af076c8c3f20071a8935cdbe8228594d1",
|
10
|
+
"test-objects/3d",
|
11
|
+
"test-objects/3d/7f8a6af076c8c3f20071a8935cdbe8228594d1",
|
12
|
+
};
|
13
|
+
|
14
|
+
static unsigned char commit_data[] = {
|
15
|
+
0x74, 0x72, 0x65, 0x65, 0x20, 0x64, 0x66, 0x66,
|
16
|
+
0x32, 0x64, 0x61, 0x39, 0x30, 0x62, 0x32, 0x35,
|
17
|
+
0x34, 0x65, 0x31, 0x62, 0x65, 0x62, 0x38, 0x38,
|
18
|
+
0x39, 0x64, 0x31, 0x66, 0x31, 0x66, 0x31, 0x32,
|
19
|
+
0x38, 0x38, 0x62, 0x65, 0x31, 0x38, 0x30, 0x33,
|
20
|
+
0x37, 0x38, 0x32, 0x64, 0x66, 0x0a, 0x61, 0x75,
|
21
|
+
0x74, 0x68, 0x6f, 0x72, 0x20, 0x41, 0x20, 0x55,
|
22
|
+
0x20, 0x54, 0x68, 0x6f, 0x72, 0x20, 0x3c, 0x61,
|
23
|
+
0x75, 0x74, 0x68, 0x6f, 0x72, 0x40, 0x65, 0x78,
|
24
|
+
0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f,
|
25
|
+
0x6d, 0x3e, 0x20, 0x31, 0x32, 0x32, 0x37, 0x38,
|
26
|
+
0x31, 0x34, 0x32, 0x39, 0x37, 0x20, 0x2b, 0x30,
|
27
|
+
0x30, 0x30, 0x30, 0x0a, 0x63, 0x6f, 0x6d, 0x6d,
|
28
|
+
0x69, 0x74, 0x74, 0x65, 0x72, 0x20, 0x43, 0x20,
|
29
|
+
0x4f, 0x20, 0x4d, 0x69, 0x74, 0x74, 0x65, 0x72,
|
30
|
+
0x20, 0x3c, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
|
31
|
+
0x74, 0x65, 0x72, 0x40, 0x65, 0x78, 0x61, 0x6d,
|
32
|
+
0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x3e,
|
33
|
+
0x20, 0x31, 0x32, 0x32, 0x37, 0x38, 0x31, 0x34,
|
34
|
+
0x32, 0x39, 0x37, 0x20, 0x2b, 0x30, 0x30, 0x30,
|
35
|
+
0x30, 0x0a, 0x0a, 0x41, 0x20, 0x6f, 0x6e, 0x65,
|
36
|
+
0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x63, 0x6f,
|
37
|
+
0x6d, 0x6d, 0x69, 0x74, 0x20, 0x73, 0x75, 0x6d,
|
38
|
+
0x6d, 0x61, 0x72, 0x79, 0x0a, 0x0a, 0x54, 0x68,
|
39
|
+
0x65, 0x20, 0x62, 0x6f, 0x64, 0x79, 0x20, 0x6f,
|
40
|
+
0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f,
|
41
|
+
0x6d, 0x6d, 0x69, 0x74, 0x20, 0x6d, 0x65, 0x73,
|
42
|
+
0x73, 0x61, 0x67, 0x65, 0x2c, 0x20, 0x63, 0x6f,
|
43
|
+
0x6e, 0x74, 0x61, 0x69, 0x6e, 0x69, 0x6e, 0x67,
|
44
|
+
0x20, 0x66, 0x75, 0x72, 0x74, 0x68, 0x65, 0x72,
|
45
|
+
0x20, 0x65, 0x78, 0x70, 0x6c, 0x61, 0x6e, 0x61,
|
46
|
+
0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x6f, 0x66, 0x20,
|
47
|
+
0x74, 0x68, 0x65, 0x20, 0x70, 0x75, 0x72, 0x70,
|
48
|
+
0x6f, 0x73, 0x65, 0x20, 0x6f, 0x66, 0x20, 0x74,
|
49
|
+
0x68, 0x65, 0x20, 0x63, 0x68, 0x61, 0x6e, 0x67,
|
50
|
+
0x65, 0x73, 0x20, 0x69, 0x6e, 0x74, 0x72, 0x6f,
|
51
|
+
0x64, 0x75, 0x63, 0x65, 0x64, 0x20, 0x62, 0x79,
|
52
|
+
0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6d,
|
53
|
+
0x6d, 0x69, 0x74, 0x2e, 0x0a, 0x0a, 0x53, 0x69,
|
54
|
+
0x67, 0x6e, 0x65, 0x64, 0x2d, 0x6f, 0x66, 0x2d,
|
55
|
+
0x62, 0x79, 0x3a, 0x20, 0x41, 0x20, 0x55, 0x20,
|
56
|
+
0x54, 0x68, 0x6f, 0x72, 0x20, 0x3c, 0x61, 0x75,
|
57
|
+
0x74, 0x68, 0x6f, 0x72, 0x40, 0x65, 0x78, 0x61,
|
58
|
+
0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d,
|
59
|
+
0x3e, 0x0a,
|
60
|
+
};
|
61
|
+
|
62
|
+
static git_rawobj commit_obj = {
|
63
|
+
commit_data,
|
64
|
+
sizeof(commit_data),
|
65
|
+
GIT_OBJ_COMMIT
|
66
|
+
};
|
67
|
+
|
68
|
+
static object_data tree = {
|
69
|
+
"dff2da90b254e1beb889d1f1f1288be1803782df",
|
70
|
+
"test-objects/df",
|
71
|
+
"test-objects/df/f2da90b254e1beb889d1f1f1288be1803782df",
|
72
|
+
};
|
73
|
+
|
74
|
+
static unsigned char tree_data[] = {
|
75
|
+
0x31, 0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x6f,
|
76
|
+
0x6e, 0x65, 0x00, 0x8b, 0x13, 0x78, 0x91, 0x79,
|
77
|
+
0x1f, 0xe9, 0x69, 0x27, 0xad, 0x78, 0xe6, 0x4b,
|
78
|
+
0x0a, 0xad, 0x7b, 0xde, 0xd0, 0x8b, 0xdc, 0x31,
|
79
|
+
0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x73, 0x6f,
|
80
|
+
0x6d, 0x65, 0x00, 0xfd, 0x84, 0x30, 0xbc, 0x86,
|
81
|
+
0x4c, 0xfc, 0xd5, 0xf1, 0x0e, 0x55, 0x90, 0xf8,
|
82
|
+
0xa4, 0x47, 0xe0, 0x1b, 0x94, 0x2b, 0xfe, 0x31,
|
83
|
+
0x30, 0x30, 0x36, 0x34, 0x34, 0x20, 0x74, 0x77,
|
84
|
+
0x6f, 0x00, 0x78, 0x98, 0x19, 0x22, 0x61, 0x3b,
|
85
|
+
0x2a, 0xfb, 0x60, 0x25, 0x04, 0x2f, 0xf6, 0xbd,
|
86
|
+
0x87, 0x8a, 0xc1, 0x99, 0x4e, 0x85, 0x31, 0x30,
|
87
|
+
0x30, 0x36, 0x34, 0x34, 0x20, 0x7a, 0x65, 0x72,
|
88
|
+
0x6f, 0x00, 0xe6, 0x9d, 0xe2, 0x9b, 0xb2, 0xd1,
|
89
|
+
0xd6, 0x43, 0x4b, 0x8b, 0x29, 0xae, 0x77, 0x5a,
|
90
|
+
0xd8, 0xc2, 0xe4, 0x8c, 0x53, 0x91,
|
91
|
+
};
|
92
|
+
|
93
|
+
static git_rawobj tree_obj = {
|
94
|
+
tree_data,
|
95
|
+
sizeof(tree_data),
|
96
|
+
GIT_OBJ_TREE
|
97
|
+
};
|
98
|
+
|
99
|
+
static object_data tag = {
|
100
|
+
"09d373e1dfdc16b129ceec6dd649739911541e05",
|
101
|
+
"test-objects/09",
|
102
|
+
"test-objects/09/d373e1dfdc16b129ceec6dd649739911541e05",
|
103
|
+
};
|
104
|
+
|
105
|
+
static unsigned char tag_data[] = {
|
106
|
+
0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x20, 0x33,
|
107
|
+
0x64, 0x37, 0x66, 0x38, 0x61, 0x36, 0x61, 0x66,
|
108
|
+
0x30, 0x37, 0x36, 0x63, 0x38, 0x63, 0x33, 0x66,
|
109
|
+
0x32, 0x30, 0x30, 0x37, 0x31, 0x61, 0x38, 0x39,
|
110
|
+
0x33, 0x35, 0x63, 0x64, 0x62, 0x65, 0x38, 0x32,
|
111
|
+
0x32, 0x38, 0x35, 0x39, 0x34, 0x64, 0x31, 0x0a,
|
112
|
+
0x74, 0x79, 0x70, 0x65, 0x20, 0x63, 0x6f, 0x6d,
|
113
|
+
0x6d, 0x69, 0x74, 0x0a, 0x74, 0x61, 0x67, 0x20,
|
114
|
+
0x76, 0x30, 0x2e, 0x30, 0x2e, 0x31, 0x0a, 0x74,
|
115
|
+
0x61, 0x67, 0x67, 0x65, 0x72, 0x20, 0x43, 0x20,
|
116
|
+
0x4f, 0x20, 0x4d, 0x69, 0x74, 0x74, 0x65, 0x72,
|
117
|
+
0x20, 0x3c, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x74,
|
118
|
+
0x74, 0x65, 0x72, 0x40, 0x65, 0x78, 0x61, 0x6d,
|
119
|
+
0x70, 0x6c, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x3e,
|
120
|
+
0x20, 0x31, 0x32, 0x32, 0x37, 0x38, 0x31, 0x34,
|
121
|
+
0x32, 0x39, 0x37, 0x20, 0x2b, 0x30, 0x30, 0x30,
|
122
|
+
0x30, 0x0a, 0x0a, 0x54, 0x68, 0x69, 0x73, 0x20,
|
123
|
+
0x69, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x74,
|
124
|
+
0x61, 0x67, 0x20, 0x6f, 0x62, 0x6a, 0x65, 0x63,
|
125
|
+
0x74, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x72, 0x65,
|
126
|
+
0x6c, 0x65, 0x61, 0x73, 0x65, 0x20, 0x76, 0x30,
|
127
|
+
0x2e, 0x30, 0x2e, 0x31, 0x0a,
|
128
|
+
};
|
129
|
+
|
130
|
+
static git_rawobj tag_obj = {
|
131
|
+
tag_data,
|
132
|
+
sizeof(tag_data),
|
133
|
+
GIT_OBJ_TAG
|
134
|
+
};
|
135
|
+
|
136
|
+
static object_data zero = {
|
137
|
+
"e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
138
|
+
"test-objects/e6",
|
139
|
+
"test-objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391",
|
140
|
+
};
|
141
|
+
|
142
|
+
static unsigned char zero_data[] = {
|
143
|
+
0x00 /* dummy data */
|
144
|
+
};
|
145
|
+
|
146
|
+
static git_rawobj zero_obj = {
|
147
|
+
zero_data,
|
148
|
+
0,
|
149
|
+
GIT_OBJ_BLOB
|
150
|
+
};
|
151
|
+
|
152
|
+
static object_data one = {
|
153
|
+
"8b137891791fe96927ad78e64b0aad7bded08bdc",
|
154
|
+
"test-objects/8b",
|
155
|
+
"test-objects/8b/137891791fe96927ad78e64b0aad7bded08bdc",
|
156
|
+
};
|
157
|
+
|
158
|
+
static unsigned char one_data[] = {
|
159
|
+
0x0a,
|
160
|
+
};
|
161
|
+
|
162
|
+
static git_rawobj one_obj = {
|
163
|
+
one_data,
|
164
|
+
sizeof(one_data),
|
165
|
+
GIT_OBJ_BLOB
|
166
|
+
};
|
167
|
+
|
168
|
+
static object_data two = {
|
169
|
+
"78981922613b2afb6025042ff6bd878ac1994e85",
|
170
|
+
"test-objects/78",
|
171
|
+
"test-objects/78/981922613b2afb6025042ff6bd878ac1994e85",
|
172
|
+
};
|
173
|
+
|
174
|
+
static unsigned char two_data[] = {
|
175
|
+
0x61, 0x0a,
|
176
|
+
};
|
177
|
+
|
178
|
+
static git_rawobj two_obj = {
|
179
|
+
two_data,
|
180
|
+
sizeof(two_data),
|
181
|
+
GIT_OBJ_BLOB
|
182
|
+
};
|
183
|
+
|
184
|
+
static object_data some = {
|
185
|
+
"fd8430bc864cfcd5f10e5590f8a447e01b942bfe",
|
186
|
+
"test-objects/fd",
|
187
|
+
"test-objects/fd/8430bc864cfcd5f10e5590f8a447e01b942bfe",
|
188
|
+
};
|
189
|
+
|
190
|
+
static unsigned char some_data[] = {
|
191
|
+
0x2f, 0x2a, 0x0a, 0x20, 0x2a, 0x20, 0x54, 0x68,
|
192
|
+
0x69, 0x73, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20,
|
193
|
+
0x69, 0x73, 0x20, 0x66, 0x72, 0x65, 0x65, 0x20,
|
194
|
+
0x73, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
195
|
+
0x3b, 0x20, 0x79, 0x6f, 0x75, 0x20, 0x63, 0x61,
|
196
|
+
0x6e, 0x20, 0x72, 0x65, 0x64, 0x69, 0x73, 0x74,
|
197
|
+
0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x20, 0x69,
|
198
|
+
0x74, 0x20, 0x61, 0x6e, 0x64, 0x2f, 0x6f, 0x72,
|
199
|
+
0x20, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x79, 0x0a,
|
200
|
+
0x20, 0x2a, 0x20, 0x69, 0x74, 0x20, 0x75, 0x6e,
|
201
|
+
0x64, 0x65, 0x72, 0x20, 0x74, 0x68, 0x65, 0x20,
|
202
|
+
0x74, 0x65, 0x72, 0x6d, 0x73, 0x20, 0x6f, 0x66,
|
203
|
+
0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e, 0x55,
|
204
|
+
0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
|
205
|
+
0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
|
206
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x2c,
|
207
|
+
0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
|
208
|
+
0x20, 0x32, 0x2c, 0x0a, 0x20, 0x2a, 0x20, 0x61,
|
209
|
+
0x73, 0x20, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73,
|
210
|
+
0x68, 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x74,
|
211
|
+
0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
|
212
|
+
0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
213
|
+
0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
|
214
|
+
0x69, 0x6f, 0x6e, 0x2e, 0x0a, 0x20, 0x2a, 0x0a,
|
215
|
+
0x20, 0x2a, 0x20, 0x49, 0x6e, 0x20, 0x61, 0x64,
|
216
|
+
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x20, 0x74,
|
217
|
+
0x6f, 0x20, 0x74, 0x68, 0x65, 0x20, 0x70, 0x65,
|
218
|
+
0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e,
|
219
|
+
0x73, 0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65,
|
220
|
+
0x20, 0x47, 0x4e, 0x55, 0x20, 0x47, 0x65, 0x6e,
|
221
|
+
0x65, 0x72, 0x61, 0x6c, 0x20, 0x50, 0x75, 0x62,
|
222
|
+
0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69, 0x63, 0x65,
|
223
|
+
0x6e, 0x73, 0x65, 0x2c, 0x0a, 0x20, 0x2a, 0x20,
|
224
|
+
0x74, 0x68, 0x65, 0x20, 0x61, 0x75, 0x74, 0x68,
|
225
|
+
0x6f, 0x72, 0x73, 0x20, 0x67, 0x69, 0x76, 0x65,
|
226
|
+
0x20, 0x79, 0x6f, 0x75, 0x20, 0x75, 0x6e, 0x6c,
|
227
|
+
0x69, 0x6d, 0x69, 0x74, 0x65, 0x64, 0x20, 0x70,
|
228
|
+
0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
|
229
|
+
0x6e, 0x20, 0x74, 0x6f, 0x20, 0x6c, 0x69, 0x6e,
|
230
|
+
0x6b, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f,
|
231
|
+
0x6d, 0x70, 0x69, 0x6c, 0x65, 0x64, 0x0a, 0x20,
|
232
|
+
0x2a, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
|
233
|
+
0x6e, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x69,
|
234
|
+
0x73, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x20, 0x69,
|
235
|
+
0x6e, 0x74, 0x6f, 0x20, 0x63, 0x6f, 0x6d, 0x62,
|
236
|
+
0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
|
237
|
+
0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x6f, 0x74,
|
238
|
+
0x68, 0x65, 0x72, 0x20, 0x70, 0x72, 0x6f, 0x67,
|
239
|
+
0x72, 0x61, 0x6d, 0x73, 0x2c, 0x0a, 0x20, 0x2a,
|
240
|
+
0x20, 0x61, 0x6e, 0x64, 0x20, 0x74, 0x6f, 0x20,
|
241
|
+
0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
|
242
|
+
0x74, 0x65, 0x20, 0x74, 0x68, 0x6f, 0x73, 0x65,
|
243
|
+
0x20, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61,
|
244
|
+
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20, 0x77, 0x69,
|
245
|
+
0x74, 0x68, 0x6f, 0x75, 0x74, 0x20, 0x61, 0x6e,
|
246
|
+
0x79, 0x20, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69,
|
247
|
+
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x20, 0x2a,
|
248
|
+
0x20, 0x63, 0x6f, 0x6d, 0x69, 0x6e, 0x67, 0x20,
|
249
|
+
0x66, 0x72, 0x6f, 0x6d, 0x20, 0x74, 0x68, 0x65,
|
250
|
+
0x20, 0x75, 0x73, 0x65, 0x20, 0x6f, 0x66, 0x20,
|
251
|
+
0x74, 0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c,
|
252
|
+
0x65, 0x2e, 0x20, 0x20, 0x28, 0x54, 0x68, 0x65,
|
253
|
+
0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
|
254
|
+
0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
|
255
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x0a,
|
256
|
+
0x20, 0x2a, 0x20, 0x72, 0x65, 0x73, 0x74, 0x72,
|
257
|
+
0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x20,
|
258
|
+
0x64, 0x6f, 0x20, 0x61, 0x70, 0x70, 0x6c, 0x79,
|
259
|
+
0x20, 0x69, 0x6e, 0x20, 0x6f, 0x74, 0x68, 0x65,
|
260
|
+
0x72, 0x20, 0x72, 0x65, 0x73, 0x70, 0x65, 0x63,
|
261
|
+
0x74, 0x73, 0x3b, 0x20, 0x66, 0x6f, 0x72, 0x20,
|
262
|
+
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2c,
|
263
|
+
0x20, 0x74, 0x68, 0x65, 0x79, 0x20, 0x63, 0x6f,
|
264
|
+
0x76, 0x65, 0x72, 0x0a, 0x20, 0x2a, 0x20, 0x6d,
|
265
|
+
0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
|
266
|
+
0x69, 0x6f, 0x6e, 0x20, 0x6f, 0x66, 0x20, 0x74,
|
267
|
+
0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65, 0x2c,
|
268
|
+
0x20, 0x61, 0x6e, 0x64, 0x20, 0x64, 0x69, 0x73,
|
269
|
+
0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f,
|
270
|
+
0x6e, 0x20, 0x77, 0x68, 0x65, 0x6e, 0x20, 0x6e,
|
271
|
+
0x6f, 0x74, 0x20, 0x6c, 0x69, 0x6e, 0x6b, 0x65,
|
272
|
+
0x64, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x0a, 0x20,
|
273
|
+
0x2a, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6d, 0x62,
|
274
|
+
0x69, 0x6e, 0x65, 0x64, 0x20, 0x65, 0x78, 0x65,
|
275
|
+
0x63, 0x75, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x2e,
|
276
|
+
0x29, 0x0a, 0x20, 0x2a, 0x0a, 0x20, 0x2a, 0x20,
|
277
|
+
0x54, 0x68, 0x69, 0x73, 0x20, 0x66, 0x69, 0x6c,
|
278
|
+
0x65, 0x20, 0x69, 0x73, 0x20, 0x64, 0x69, 0x73,
|
279
|
+
0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64,
|
280
|
+
0x20, 0x69, 0x6e, 0x20, 0x74, 0x68, 0x65, 0x20,
|
281
|
+
0x68, 0x6f, 0x70, 0x65, 0x20, 0x74, 0x68, 0x61,
|
282
|
+
0x74, 0x20, 0x69, 0x74, 0x20, 0x77, 0x69, 0x6c,
|
283
|
+
0x6c, 0x20, 0x62, 0x65, 0x20, 0x75, 0x73, 0x65,
|
284
|
+
0x66, 0x75, 0x6c, 0x2c, 0x20, 0x62, 0x75, 0x74,
|
285
|
+
0x0a, 0x20, 0x2a, 0x20, 0x57, 0x49, 0x54, 0x48,
|
286
|
+
0x4f, 0x55, 0x54, 0x20, 0x41, 0x4e, 0x59, 0x20,
|
287
|
+
0x57, 0x41, 0x52, 0x52, 0x41, 0x4e, 0x54, 0x59,
|
288
|
+
0x3b, 0x20, 0x77, 0x69, 0x74, 0x68, 0x6f, 0x75,
|
289
|
+
0x74, 0x20, 0x65, 0x76, 0x65, 0x6e, 0x20, 0x74,
|
290
|
+
0x68, 0x65, 0x20, 0x69, 0x6d, 0x70, 0x6c, 0x69,
|
291
|
+
0x65, 0x64, 0x20, 0x77, 0x61, 0x72, 0x72, 0x61,
|
292
|
+
0x6e, 0x74, 0x79, 0x20, 0x6f, 0x66, 0x0a, 0x20,
|
293
|
+
0x2a, 0x20, 0x4d, 0x45, 0x52, 0x43, 0x48, 0x41,
|
294
|
+
0x4e, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54,
|
295
|
+
0x59, 0x20, 0x6f, 0x72, 0x20, 0x46, 0x49, 0x54,
|
296
|
+
0x4e, 0x45, 0x53, 0x53, 0x20, 0x46, 0x4f, 0x52,
|
297
|
+
0x20, 0x41, 0x20, 0x50, 0x41, 0x52, 0x54, 0x49,
|
298
|
+
0x43, 0x55, 0x4c, 0x41, 0x52, 0x20, 0x50, 0x55,
|
299
|
+
0x52, 0x50, 0x4f, 0x53, 0x45, 0x2e, 0x20, 0x20,
|
300
|
+
0x53, 0x65, 0x65, 0x20, 0x74, 0x68, 0x65, 0x20,
|
301
|
+
0x47, 0x4e, 0x55, 0x0a, 0x20, 0x2a, 0x20, 0x47,
|
302
|
+
0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x50,
|
303
|
+
0x75, 0x62, 0x6c, 0x69, 0x63, 0x20, 0x4c, 0x69,
|
304
|
+
0x63, 0x65, 0x6e, 0x73, 0x65, 0x20, 0x66, 0x6f,
|
305
|
+
0x72, 0x20, 0x6d, 0x6f, 0x72, 0x65, 0x20, 0x64,
|
306
|
+
0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x0a,
|
307
|
+
0x20, 0x2a, 0x0a, 0x20, 0x2a, 0x20, 0x59, 0x6f,
|
308
|
+
0x75, 0x20, 0x73, 0x68, 0x6f, 0x75, 0x6c, 0x64,
|
309
|
+
0x20, 0x68, 0x61, 0x76, 0x65, 0x20, 0x72, 0x65,
|
310
|
+
0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x20, 0x61,
|
311
|
+
0x20, 0x63, 0x6f, 0x70, 0x79, 0x20, 0x6f, 0x66,
|
312
|
+
0x20, 0x74, 0x68, 0x65, 0x20, 0x47, 0x4e, 0x55,
|
313
|
+
0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c,
|
314
|
+
0x20, 0x50, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x20,
|
315
|
+
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x0a,
|
316
|
+
0x20, 0x2a, 0x20, 0x61, 0x6c, 0x6f, 0x6e, 0x67,
|
317
|
+
0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x74, 0x68,
|
318
|
+
0x69, 0x73, 0x20, 0x70, 0x72, 0x6f, 0x67, 0x72,
|
319
|
+
0x61, 0x6d, 0x3b, 0x20, 0x73, 0x65, 0x65, 0x20,
|
320
|
+
0x74, 0x68, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x65,
|
321
|
+
0x20, 0x43, 0x4f, 0x50, 0x59, 0x49, 0x4e, 0x47,
|
322
|
+
0x2e, 0x20, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x6f,
|
323
|
+
0x74, 0x2c, 0x20, 0x77, 0x72, 0x69, 0x74, 0x65,
|
324
|
+
0x20, 0x74, 0x6f, 0x0a, 0x20, 0x2a, 0x20, 0x74,
|
325
|
+
0x68, 0x65, 0x20, 0x46, 0x72, 0x65, 0x65, 0x20,
|
326
|
+
0x53, 0x6f, 0x66, 0x74, 0x77, 0x61, 0x72, 0x65,
|
327
|
+
0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x74,
|
328
|
+
0x69, 0x6f, 0x6e, 0x2c, 0x20, 0x35, 0x31, 0x20,
|
329
|
+
0x46, 0x72, 0x61, 0x6e, 0x6b, 0x6c, 0x69, 0x6e,
|
330
|
+
0x20, 0x53, 0x74, 0x72, 0x65, 0x65, 0x74, 0x2c,
|
331
|
+
0x20, 0x46, 0x69, 0x66, 0x74, 0x68, 0x20, 0x46,
|
332
|
+
0x6c, 0x6f, 0x6f, 0x72, 0x2c, 0x0a, 0x20, 0x2a,
|
333
|
+
0x20, 0x42, 0x6f, 0x73, 0x74, 0x6f, 0x6e, 0x2c,
|
334
|
+
0x20, 0x4d, 0x41, 0x20, 0x30, 0x32, 0x31, 0x31,
|
335
|
+
0x30, 0x2d, 0x31, 0x33, 0x30, 0x31, 0x2c, 0x20,
|
336
|
+
0x55, 0x53, 0x41, 0x2e, 0x0a, 0x20, 0x2a, 0x2f,
|
337
|
+
0x0a,
|
338
|
+
};
|
339
|
+
|
340
|
+
static git_rawobj some_obj = {
|
341
|
+
some_data,
|
342
|
+
sizeof(some_data),
|
343
|
+
GIT_OBJ_BLOB
|
344
|
+
};
|
@@ -0,0 +1,255 @@
|
|
1
|
+
/*
|
2
|
+
* This file is free software; you can redistribute it and/or modify
|
3
|
+
* it under the terms of the GNU General Public License, version 2,
|
4
|
+
* as published by the Free Software Foundation.
|
5
|
+
*
|
6
|
+
* In addition to the permissions in the GNU General Public License,
|
7
|
+
* the authors give you unlimited permission to link the compiled
|
8
|
+
* version of this file into combinations with other programs,
|
9
|
+
* and to distribute those combinations without any restriction
|
10
|
+
* coming from the use of this file. (The General Public License
|
11
|
+
* restrictions do apply in other respects; for example, they cover
|
12
|
+
* modification of the file, and distribution when not linked into
|
13
|
+
* a combined executable.)
|
14
|
+
*
|
15
|
+
* This file is distributed in the hope that it will be useful, but
|
16
|
+
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
17
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
18
|
+
* General Public License for more details.
|
19
|
+
*
|
20
|
+
* You should have received a copy of the GNU General Public License
|
21
|
+
* along with this program; see the file COPYING. If not, write to
|
22
|
+
* the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
23
|
+
* Boston, MA 02110-1301, USA.
|
24
|
+
*/
|
25
|
+
#include "test_lib.h"
|
26
|
+
#include "fileops.h"
|
27
|
+
#include "odb.h"
|
28
|
+
|
29
|
+
static char *odb_dir = "test-objects";
|
30
|
+
#include "t03-data.h"
|
31
|
+
|
32
|
+
static int make_odb_dir(void)
|
33
|
+
{
|
34
|
+
if (p_mkdir(odb_dir, GIT_OBJECT_DIR_MODE) < 0) {
|
35
|
+
int err = errno;
|
36
|
+
fprintf(stderr, "can't make directory \"%s\"", odb_dir);
|
37
|
+
if (err == EEXIST)
|
38
|
+
fprintf(stderr, " (already exists)");
|
39
|
+
fprintf(stderr, "\n");
|
40
|
+
return -1;
|
41
|
+
}
|
42
|
+
return 0;
|
43
|
+
}
|
44
|
+
|
45
|
+
static int check_object_files(object_data *d)
|
46
|
+
{
|
47
|
+
if (git_futils_exists(d->dir) < 0)
|
48
|
+
return -1;
|
49
|
+
if (git_futils_exists(d->file) < 0)
|
50
|
+
return -1;
|
51
|
+
return 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
static int cmp_objects(git_rawobj *o1, git_rawobj *o2)
|
55
|
+
{
|
56
|
+
if (o1->type != o2->type)
|
57
|
+
return -1;
|
58
|
+
if (o1->len != o2->len)
|
59
|
+
return -1;
|
60
|
+
if ((o1->len > 0) && (memcmp(o1->data, o2->data, o1->len) != 0))
|
61
|
+
return -1;
|
62
|
+
return 0;
|
63
|
+
}
|
64
|
+
|
65
|
+
static int remove_object_files(object_data *d)
|
66
|
+
{
|
67
|
+
if (p_unlink(d->file) < 0) {
|
68
|
+
fprintf(stderr, "can't delete object file \"%s\"\n", d->file);
|
69
|
+
return -1;
|
70
|
+
}
|
71
|
+
if ((p_rmdir(d->dir) < 0) && (errno != ENOTEMPTY)) {
|
72
|
+
fprintf(stderr, "can't remove directory \"%s\"\n", d->dir);
|
73
|
+
return -1;
|
74
|
+
}
|
75
|
+
|
76
|
+
if (p_rmdir(odb_dir) < 0) {
|
77
|
+
fprintf(stderr, "can't remove directory \"%s\"\n", odb_dir);
|
78
|
+
return -1;
|
79
|
+
}
|
80
|
+
|
81
|
+
return 0;
|
82
|
+
}
|
83
|
+
|
84
|
+
static int streaming_write(git_oid *oid, git_odb *odb, git_rawobj *raw)
|
85
|
+
{
|
86
|
+
git_odb_stream *stream;
|
87
|
+
int error;
|
88
|
+
|
89
|
+
if ((error = git_odb_open_wstream(&stream, odb, raw->len, raw->type)) < GIT_SUCCESS)
|
90
|
+
return error;
|
91
|
+
|
92
|
+
stream->write(stream, raw->data, raw->len);
|
93
|
+
|
94
|
+
error = stream->finalize_write(oid, stream);
|
95
|
+
stream->free(stream);
|
96
|
+
|
97
|
+
return error;
|
98
|
+
}
|
99
|
+
|
100
|
+
BEGIN_TEST(write0, "write loose commit object")
|
101
|
+
git_odb *db;
|
102
|
+
git_oid id1, id2;
|
103
|
+
git_odb_object *obj;
|
104
|
+
|
105
|
+
must_pass(make_odb_dir());
|
106
|
+
must_pass(git_odb_open(&db, odb_dir));
|
107
|
+
must_pass(git_oid_fromstr(&id1, commit.id));
|
108
|
+
|
109
|
+
must_pass(streaming_write(&id2, db, &commit_obj));
|
110
|
+
must_be_true(git_oid_cmp(&id1, &id2) == 0);
|
111
|
+
must_pass(check_object_files(&commit));
|
112
|
+
|
113
|
+
must_pass(git_odb_read(&obj, db, &id1));
|
114
|
+
must_pass(cmp_objects(&obj->raw, &commit_obj));
|
115
|
+
|
116
|
+
git_odb_object_free(obj);
|
117
|
+
git_odb_free(db);
|
118
|
+
must_pass(remove_object_files(&commit));
|
119
|
+
END_TEST
|
120
|
+
|
121
|
+
BEGIN_TEST(write1, "write loose tree object")
|
122
|
+
git_odb *db;
|
123
|
+
git_oid id1, id2;
|
124
|
+
git_odb_object *obj;
|
125
|
+
|
126
|
+
must_pass(make_odb_dir());
|
127
|
+
must_pass(git_odb_open(&db, odb_dir));
|
128
|
+
must_pass(git_oid_fromstr(&id1, tree.id));
|
129
|
+
|
130
|
+
must_pass(streaming_write(&id2, db, &tree_obj));
|
131
|
+
must_be_true(git_oid_cmp(&id1, &id2) == 0);
|
132
|
+
must_pass(check_object_files(&tree));
|
133
|
+
|
134
|
+
must_pass(git_odb_read(&obj, db, &id1));
|
135
|
+
must_pass(cmp_objects(&obj->raw, &tree_obj));
|
136
|
+
|
137
|
+
git_odb_object_free(obj);
|
138
|
+
git_odb_free(db);
|
139
|
+
must_pass(remove_object_files(&tree));
|
140
|
+
END_TEST
|
141
|
+
|
142
|
+
BEGIN_TEST(write2, "write loose tag object")
|
143
|
+
git_odb *db;
|
144
|
+
git_oid id1, id2;
|
145
|
+
git_odb_object *obj;
|
146
|
+
|
147
|
+
must_pass(make_odb_dir());
|
148
|
+
must_pass(git_odb_open(&db, odb_dir));
|
149
|
+
must_pass(git_oid_fromstr(&id1, tag.id));
|
150
|
+
|
151
|
+
must_pass(streaming_write(&id2, db, &tag_obj));
|
152
|
+
must_be_true(git_oid_cmp(&id1, &id2) == 0);
|
153
|
+
must_pass(check_object_files(&tag));
|
154
|
+
|
155
|
+
must_pass(git_odb_read(&obj, db, &id1));
|
156
|
+
must_pass(cmp_objects(&obj->raw, &tag_obj));
|
157
|
+
|
158
|
+
git_odb_object_free(obj);
|
159
|
+
git_odb_free(db);
|
160
|
+
must_pass(remove_object_files(&tag));
|
161
|
+
END_TEST
|
162
|
+
|
163
|
+
BEGIN_TEST(write3, "write zero-length object")
|
164
|
+
git_odb *db;
|
165
|
+
git_oid id1, id2;
|
166
|
+
git_odb_object *obj;
|
167
|
+
|
168
|
+
must_pass(make_odb_dir());
|
169
|
+
must_pass(git_odb_open(&db, odb_dir));
|
170
|
+
must_pass(git_oid_fromstr(&id1, zero.id));
|
171
|
+
|
172
|
+
must_pass(streaming_write(&id2, db, &zero_obj));
|
173
|
+
must_be_true(git_oid_cmp(&id1, &id2) == 0);
|
174
|
+
must_pass(check_object_files(&zero));
|
175
|
+
|
176
|
+
must_pass(git_odb_read(&obj, db, &id1));
|
177
|
+
must_pass(cmp_objects(&obj->raw, &zero_obj));
|
178
|
+
|
179
|
+
git_odb_object_free(obj);
|
180
|
+
git_odb_free(db);
|
181
|
+
must_pass(remove_object_files(&zero));
|
182
|
+
END_TEST
|
183
|
+
|
184
|
+
BEGIN_TEST(write4, "write one-byte long object")
|
185
|
+
git_odb *db;
|
186
|
+
git_oid id1, id2;
|
187
|
+
git_odb_object *obj;
|
188
|
+
|
189
|
+
must_pass(make_odb_dir());
|
190
|
+
must_pass(git_odb_open(&db, odb_dir));
|
191
|
+
must_pass(git_oid_fromstr(&id1, one.id));
|
192
|
+
|
193
|
+
must_pass(streaming_write(&id2, db, &one_obj));
|
194
|
+
must_be_true(git_oid_cmp(&id1, &id2) == 0);
|
195
|
+
must_pass(check_object_files(&one));
|
196
|
+
|
197
|
+
must_pass(git_odb_read(&obj, db, &id1));
|
198
|
+
must_pass(cmp_objects(&obj->raw, &one_obj));
|
199
|
+
|
200
|
+
git_odb_object_free(obj);
|
201
|
+
git_odb_free(db);
|
202
|
+
must_pass(remove_object_files(&one));
|
203
|
+
END_TEST
|
204
|
+
|
205
|
+
BEGIN_TEST(write5, "write two-byte long object")
|
206
|
+
git_odb *db;
|
207
|
+
git_oid id1, id2;
|
208
|
+
git_odb_object *obj;
|
209
|
+
|
210
|
+
must_pass(make_odb_dir());
|
211
|
+
must_pass(git_odb_open(&db, odb_dir));
|
212
|
+
must_pass(git_oid_fromstr(&id1, two.id));
|
213
|
+
|
214
|
+
must_pass(streaming_write(&id2, db, &two_obj));
|
215
|
+
must_be_true(git_oid_cmp(&id1, &id2) == 0);
|
216
|
+
must_pass(check_object_files(&two));
|
217
|
+
|
218
|
+
must_pass(git_odb_read(&obj, db, &id1));
|
219
|
+
must_pass(cmp_objects(&obj->raw, &two_obj));
|
220
|
+
|
221
|
+
git_odb_object_free(obj);
|
222
|
+
git_odb_free(db);
|
223
|
+
must_pass(remove_object_files(&two));
|
224
|
+
END_TEST
|
225
|
+
|
226
|
+
BEGIN_TEST(write6, "write an object which is several bytes long")
|
227
|
+
git_odb *db;
|
228
|
+
git_oid id1, id2;
|
229
|
+
git_odb_object *obj;
|
230
|
+
|
231
|
+
must_pass(make_odb_dir());
|
232
|
+
must_pass(git_odb_open(&db, odb_dir));
|
233
|
+
must_pass(git_oid_fromstr(&id1, some.id));
|
234
|
+
|
235
|
+
must_pass(streaming_write(&id2, db, &some_obj));
|
236
|
+
must_be_true(git_oid_cmp(&id1, &id2) == 0);
|
237
|
+
must_pass(check_object_files(&some));
|
238
|
+
|
239
|
+
must_pass(git_odb_read(&obj, db, &id1));
|
240
|
+
must_pass(cmp_objects(&obj->raw, &some_obj));
|
241
|
+
|
242
|
+
git_odb_object_free(obj);
|
243
|
+
git_odb_free(db);
|
244
|
+
must_pass(remove_object_files(&some));
|
245
|
+
END_TEST
|
246
|
+
|
247
|
+
BEGIN_SUITE(objwrite)
|
248
|
+
ADD_TEST(write0);
|
249
|
+
ADD_TEST(write1);
|
250
|
+
ADD_TEST(write2);
|
251
|
+
ADD_TEST(write3);
|
252
|
+
ADD_TEST(write4);
|
253
|
+
ADD_TEST(write5);
|
254
|
+
ADD_TEST(write6);
|
255
|
+
END_SUITE
|