summaryrefslogtreecommitdiff
path: root/gitdb/test
Commit message (Collapse)AuthorAgeFilesLines
* Removed plenty of code which went into git-python. This is just for ↵gitdbmergerSebastian Thiel2011-05-0515-1634/+20
| | | | completeness, gitdb doesn't need to be worked on anymore
* Fixed remaining tests as far as possible/necessary before the actual work ↵fetch_n_pushSebastian Thiel2011-05-052-23/+25
| | | | starts. Oh my ...
* Fixed all remaining db testsSebastian Thiel2011-05-056-12/+12
|
* Fixed db/test_gitSebastian Thiel2011-05-051-3/+3
|
* First rename session, db/test_base.py works, but there is much more work to doSebastian Thiel2011-05-047-15/+21
|
* Moved plenty of code around to separate pure python implementation from ↵Sebastian Thiel2011-04-292-9/+5
| | | | future ones. This will change plenty of imports, which still needs to be fixed. Fortunately, this is a good foundation for getting all the tests fixed one again. Another step is to make the tests more flexible by allowing to run them with different object database easily.
* Applied more fixes and an implementation for the RepositoryPathsMixin. This ↵Sebastian Thiel2011-04-292-4/+4
| | | | showed that we need to distinguish between plain object dbs with a respective interface and full repositories, which have references and remotes. Ideally, the ones that require only odbs use the odb member, others use the repo member
* Fixed reference tests - symbolic refs now need to be created with a ↵Sebastian Thiel2011-04-262-11/+11
| | | | git_dir() providing repository. Currently there is no separate interface for this, which might have to be added at some point just for the sake of completeness
* Fixed ref test up to the point where there is an issue resolving objects in ↵Sebastian Thiel2011-04-262-16/+21
| | | | the database for some reason.
* Fixed a few broken tests. test_refs is still not working as it needs more ↵Sebastian Thiel2011-04-255-9/+159
| | | | | | throrough changes based on the interfaces actually available in gitdb. This should work though as all references have iter_* methods which do the actual work. Added git config parser to the mix, including working test - the module is not very interdependent, fortunately.
* Initial version of objects. The submodule implementation is left in ↵Sebastian Thiel2011-04-074-0/+469
| | | | git-python for now as it requires plenty of additional features which are currently only available via the git command
* Added ref implementation and tried to fix it so that it has a chance of ↵Sebastian Thiel2011-04-073-11/+570
| | | | running. Currently it requires an object implementation which will be ported next. None of the tests is expected to run yet.
* Added first scetch of a transport DB interface which should be enough to ↵Sebastian Thiel2011-04-041-0/+18
| | | | allow an own implementation of the git protocol without breaking clients. It also includes interfaces for the fetchinfo and pushinfo types
* Fixed _perf module, which built, but didn't link dynamically. All the time, ↵Sebastian Thiel2011-03-311-0/+43
| | | | | | I think it never successfully imported, but its hard to believe this slipped by. Added performance test for pack-writing, which isn't really showing what I want as it currently read data from a densly compressed pack which takes most of the time in the nearly pure python implementation. Compared to c++, all the measured performance is just below anything I'd want to use. But we shouldn't forget this is just a test implementation, writing packs is quite simple actually, if you leave out the delta compression part and the delta logic
* crc needs to be done on the pack object header as well, of courseSebastian Thiel2011-03-311-1/+1
|
* Implemented remainder of the test, and it already shows that something is ↵Sebastian Thiel2011-03-312-12/+29
| | | | wrong with my packs. Probably something stupid ;)
* initial version of pack writing, which seems to work, but still needs some ↵Sebastian Thiel2011-03-311-13/+38
| | | | more testing and verification
* Added stub for pack writing implementation which should work for pack ↵Sebastian Thiel2011-03-311-4/+30
| | | | streaming over a transport as well
* preprended all modules with licensing informationSebastian Thiel2011-02-2318-0/+72
|
* Fixed unittestsSebastian Thiel2010-11-304-5/+4
|
* moved all relevant files into the gitdb folder.Sebastian Thiel2010-11-3025-0/+1539
Submodule relinked to point to new github location, and moved as well