aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/internal/dotgit/dotgit_test.go
Commit message (Collapse)AuthorAgeFilesLines
* dotgit: Move package outside internal.Antonio Jesus Navarro Perez2018-06-051-683/+0
| | | | Signed-off-by: Antonio Jesus Navarro Perez <antnavper@gmail.com>
* Merge pull request #807 from keybase/strib/src-d-ignore-non-hash-filesMáximo Cuadros2018-04-171-1/+13
|\ | | | | dotgit: ignore filenames that don't match a hash
| * dotgit: add test for bad file in pack directoryJeremy Stribling2018-04-161-1/+13
| | | | | | | | | | | | | | Suggested by mcuadros. Issue: src-d/go-git#807 Signed-off-by: Jeremy Stribling <strib@alum.mit.edu>
* | storage: dotgit, init fixtures in benchmark. Fixes #770Javi Fontan2018-04-161-0/+1
|/ | | | | | | fixtures is not initialized in BenchmarkRefMultipleTimes and caused panic. Signed-off-by: Javi Fontan <jfontan@gmail.com>
* storage: filesystem, add support for git alternates (#663)Sunny2017-12-061-0/+53
| | | | This change adds a new method Alternates() in DotGit to check and query alternate source.
* filesystem: implement PackRefs()Jeremy Stribling2017-11-291-0/+72
| | | | | | | | | | Currently this implementation is only valid for kbfsgit, since it assumes some things about the filesystem not being updated during the packing, and about conflict resolution rules. In the future, it would be nice to replace this with a more general one, and move this kbfsgit-optimized implementation into kbfsgit. Issue: KBFS-2517
* dotgit: add CheckAndSetReference testsJeremy Stribling2017-11-281-3/+18
|
* Merge remote-tracking branch 'src-d/master' into gh-fast-forward-fetchJeremy Stribling2017-11-281-0/+40
|\
| * dotgit: don't list references twiceJeremy Stribling2017-11-271-1/+12
| | | | | | | | Restore the `seen` map that avoided listing packed-refs twice.
| * dotgit: add a test for removing a ref from a file and packed-refsJeremy Stribling2017-11-271-0/+29
| |
* | Use optionally locking when updating refsTaru Karttunen2017-11-271-3/+3
|/
* all: fixes for ineffective assignferhat elmas2017-11-261-0/+1
|
* update to go-billy.v4 and go-git-fixtures.v3Máximo Cuadros2017-11-231-2/+2
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* dotgit: rewrite the way references are looked upMiguel Molina2017-08-261-0/+18
| | | | | | Now there's only two ways of getting a reference, by checking under refs/ directory or in packed-refs. refs/ directory is checked using a direct read by reference name and packed refs are cached until they have been changed. Signed-off-by: Miguel Molina <miguel@erizocosmi.co>
* storage: dotgit, fix test not closing filesMáximo Cuadros2017-07-191-0/+1
|
* Fixed modules directory pathCromel-PC\Cromel2017-06-281-1/+1
|
* fix merge commitMáximo Cuadros2017-06-181-4/+0
|
* *: upgrade to go-billy.v3, mergeMáximo Cuadros2017-06-181-0/+4
|\
| * test: more Windows path handlingSantiago M. Mola2017-06-021-2/+2
| |
* | *: upgrade to go-billy.v3, mergeMáximo Cuadros2017-06-181-13/+14
|/
* storage: filesystem, initialize the default folder scaffoldingMáximo Cuadros2017-05-211-0/+25
|
* use go-billy.v2 versionAntonio Jesus Navarro Perez2017-03-101-1/+1
|
* project: move imports from srcd.works to gopkg.inAntonio Jesus Navarro Perez2017-03-071-2/+2
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* documentation and API improvementsMáximo Cuadros2017-02-211-0/+99
|
* new srcd.works/go-git.v4 pathMáximo Cuadros2017-01-301-1/+1
|
* new git fixture pathMáximo Cuadros2017-01-301-1/+1
|
* rename billy importsMáximo Cuadros2017-01-301-2/+1
|
* storage: IndexStorer implementationMáximo Cuadros2017-01-281-0/+32
|
* Extract billy (#173)Sergio Arbeo2016-12-191-1/+2
| | | | | | | | | | | | | | | * Extract billy Billy is a new library directly extracted from go-git. It abstract several storages systems in a filesystem interface. More in github.com/src-d/billy * Fix grouping in imports block * Update billy to v1 * Re-remove fs_implementation example
* storage: shallow storage (#180)Máximo Cuadros2016-12-151-0/+67
| | | | | | | | * storage: shallow storage * changes * changes
* revision based on goreportcard.comMáximo Cuadros2016-12-061-0/+1
|
* new plumbing package (#118)Máximo Cuadros2016-11-081-13/+13
| | | * plumbing: now core was renamed to core, and formats and clients moved inside
* utils: fs, new memory filesystem (#108)Máximo Cuadros2016-11-041-2/+2
| | | | | | | | * utils: fs, new memory filesystem * utils: fs, renamed os.NewOS to os.New * utils: fs, memory changes requested by @alcortes
* storage/filesystem: implement missing functionality. (#110)Santiago M. Mola2016-11-031-0/+25
| | | | | | | * storage/filesystem: added ObjectStorage Set. * storage/filesystem: now passes all tests, except those specific to transactions. * formats/config: Encoder now encodes subsections with no options. * formats/config: add HasSubsection on Section. * dotgit: add Ref method to get specific reference.
* utils/fs: move 'os' and 'test' to separate packages. (#93)Santiago M. Mola2016-10-241-3/+3
| | | | | | * create utils/fs/test package to expose generic test suite to 3rd party fs implementations. * move 'os' to its own package to avoid cyclic dependency (test -> fs -> test, becomes test -> fs, os -> test, os -> fs). * remove TestCreateAndWrite: some of our implementations cannot read a file that was just created, written and not closed yet.
* formats: objfile idomatic reader/writerMáximo Cuadros2016-09-251-78/+60
|
* dotgit: synced write packfile and index generationMáximo Cuadros2016-09-151-0/+45
|
* fixtures: new fixture package being use in all packagesMáximo Cuadros2016-09-121-30/+12
|
* storage: filessytem read multiple packfiles support and index decodingMáximo Cuadros2016-09-091-103/+65
|
* format: packfile new interfaceMáximo Cuadros2016-09-071-2/+2
|
* storage: filesystem idx generation (wip)Máximo Cuadros2016-09-061-238/+134
|
* Support non packed objects (#68)sona-tar2016-08-301-2/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Support non packed git objects * Support non packed git objects for Iterator * Fix error handling from Writer() in FillObject() * Fix format in func (r *Reader) FillObject(obj core.Object) error * Fix to return d.addRefsFromPackedRefs() error And if packed-refs dosen't exist not to return error in d.addRefsFromPackedRefs * Remove debug code * Add GoDoc for func (d *DotGit) Objectfile(h core.Hash) (fs.FS, string, error) * Add GoDoc for func (r *Reader) FillObject(obj core.Object) error * Add GoDoc for func (d *DotGit) Objectfiles() (fs.FS, []core.Hash, error) * Fix format in func (d *DotGit) Objectfile(h core.Hash) (fs.FS, string, error) * Rename value dotGitobjcts -> objsDir * Change regexp.Compile -> regexp.MustCompile * Move regexp to variable initialization * Rename regexp value to be more coherent * Fix object directory name and object file name to correct character * Faster Objectfiles func * Add test for FillObject * Add GoDoc for func (s *ObjectStorage) Get(h core.Hash) (core.Object, error) * defer Close() * Return name values for defer function overwrite the error value. * Fix error handling in func (s *ObjectStorage) Get() Return error that gets error except for ErrObjfileNotFound from getFromUnpacked() * Rename getFromObject -> getFromUnpacked * Add test for func (d *DotGit) Objectfile(h core.Hash) (fs.FS, string, error) * Add test for func (d *DotGit) Objectfiles() (fs.FS, []core.Hash, error) * Faster check git object name * Faster dotgit_test.go * Fix Godoc for Objectfiles func * Refactor variable name in Objectfiles func * Fix GoDoc for objectfile func * Fix TestObjectfile func and TestObjectfiles func * Rename fixobj -> fixObj in Test Objectfile func * Fix test compare method * Refactor Get func in object.go * Refactor getFromUnpacked func in object.go * Fix GoDoc for ErrObjfileNotFound * Fix TestObjectfiles for not guarantee the slice order * Change error no such file or directory to target file not found * Change spec func (s *ObjectStorage) Get(h core.Hash) (core.Object, error) return core.ErrObjectNotFound, if index pointer is nil. * Add space * storage: Add object type hint parameter to ObjectStorage.getFromUnpacked
* storage: support ConfigStorage, memory done, fs wipMáximo Cuadros2016-08-201-0/+8
|
* storage: Storage entity support, and DotGit support for ReferencesMáximo Cuadros2016-08-121-0/+224