summaryrefslogtreecommitdiff
path: root/test/git/test_odb.py
Commit message (Collapse)AuthorAgeFilesLines
* Added basic channel implementation including testSebastian Thiel2010-06-051-307/+0
| | | | restructured odb tests, they are now in an own module to keep the modules small
* Removed compression flag from IStream and OStream types, as a valid object ↵Sebastian Thiel2010-06-051-6/+49
| | | | | | will always be compressed if generated by the system ( even future memory db's will compress it ) loose db: implemented direct stream copy, indicated by a sha set in the IStream, including test. This will be the case once Packs are exploded for instance
* Implemented stream tests, found a bug on the way, slowly a test-framework ↵Sebastian Thiel2010-06-041-2/+200
| | | | for streams starts to show up, but its not yet there
* Fixed implementation after design change to deal with it - all tests run, ↵Sebastian Thiel2010-06-041-19/+33
| | | | but next there will have to be more through testing
* initial version of new odb design to facilitate a channel based ↵Sebastian Thiel2010-06-041-5/+5
| | | | multi-threading implementation of all odb functions
* added frame for object reading, including simple testSebastian Thiel2010-06-021-0/+13
|
* initial version of loose object writing and simple cached object lookup ↵Sebastian Thiel2010-06-021-2/+29
| | | | appears to be working
* Added first design and frame for object database. In a first step, loose ↵Sebastian Thiel2010-06-021-0/+12
objects will be written using our utilities, and certain object retrieval functionality moves into the GitObjectDatabase which is used by the repo instance Added performance test for object database access, which shows quite respectable tree parsing performance, and okay blob access. Nonetheless, it will be hard to beat the c performance using a pure python implementation, but it can be a nice practice to write it anyway to allow more direct pack manipulations. Some could benefit from the ability to write packs as these can serve as local cache if alternates are used