aboutsummaryrefslogtreecommitdiffstats
path: root/common_test.go
Commit message (Collapse)AuthorAgeFilesLines
* *: Add test for paths starting with tildericci25112023-07-071-0/+20
|
* git: Fix fetching after shallow clone. Fixes #305Arieh Schneier2023-05-241-0/+35
| | | | Signed-off-by: Arieh Schneier <15041913+AriehSchneier@users.noreply.github.com>
* git: Testing, Fix tests not cleaning temp foldersArieh Schneier2023-05-111-8/+16
| | | | Signed-off-by: Arieh Schneier <15041913+AriehSchneier@users.noreply.github.com>
* Remove unused variables/types/functionsAbhinav Gupta2021-11-271-3/+1
| | | | | | | | [staticcheck](https://staticcheck.io/) reported a number of unused fields, functions, types, and variables across the code. Where possible, use them (assert unchecked errors in tests, for example) and otherwise remove them.
* git: add --follow-tags option for pushesJohn Cai2021-10-051-0/+8
| | | | This PR adds support for the --follow-tags option for pushes.
* *: use go-billy instead of os callsMáximo Cuadros2021-05-021-0/+31
|
* *: migration from go-git-fixtures/v4 and go-git/gcfgMáximo Cuadros2020-03-101-4/+3
|
* *: migration from gopkg to go modulesMáximo Cuadros2020-03-101-10/+10
|
* Expose Storage cache.kuba--2018-09-071-8/+3
| | | | Signed-off-by: kuba-- <kuba@sourced.tech>
* *: use parser to populate non writable storages and bug fixesMiguel Molina2018-08-071-8/+1
| | | | Signed-off-by: Miguel Molina <miguel@erizocosmi.co>
* all: simplificationferhat elmas2017-11-291-1/+1
| | | | | | | | | | - no length for map initialization - don't check for boolean/error return - don't format string - use string method of bytes buffer instead of converting bytes to string - use `strings.Contains` instead of `strings.Index` - use `bytes.Equal` instead of `bytes.Compare`
* update to go-billy.v4 and go-git-fixtures.v3Máximo Cuadros2017-11-231-4/+4
| | | | Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
* remote: push, update remote refs on pushMáximo Cuadros2017-07-221-0/+11
|
* worktree: test improvemnts on empty worktreeMáximo Cuadros2017-07-131-4/+51
|
* *: upgrade to go-billy.v3, mergeMáximo Cuadros2017-06-181-4/+4
|
* do not convert local paths to URLSantiago M. Mola2017-04-281-3/+1
| | | | | | | * Do not convert local paths to URLs, just keep them as they are. * This way we add support for Windows without taking care of Windows path-to-URL conversion.
* use go-billy.v2 versionAntonio Jesus Navarro Perez2017-03-101-2/+2
|
* project: move imports from srcd.works to gopkg.inAntonio Jesus Navarro Perez2017-03-071-7/+7
| | | | To be able to fix #261 we will move again to gopkg.in before v4 stable release.
* *: update tests to meet new submodule fixtureMáximo Cuadros2017-02-211-12/+0
|
* git: make Storer public in Repository.Santiago M. Mola2017-02-091-3/+0
|
* new srcd.works/go-git.v4 pathMáximo Cuadros2017-01-301-7/+7
|
* new git fixture pathMáximo Cuadros2017-01-301-1/+1
|
* rename billy importsMáximo Cuadros2017-01-301-4/+4
|
* test and comments improvementsMáximo Cuadros2017-01-301-2/+1
|
* worktree, status implementationMáximo Cuadros2017-01-291-1/+0
|
* new repository constructors and worktreeMáximo Cuadros2017-01-281-4/+23
|
* test: restore default protocol. (#215)Santiago M. Mola2017-01-181-3/+15
| | | | | | BaseSuite sets the https protocol to nil. This can affect other unrelated suites. This commit changes BaseSuite to restore the https protocol during the tear down phase.
* move plumbing from top level package to plumbing (#183)Santiago M. Mola2016-12-141-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * plumbing: rename Object -> EncodedObject. * plumbing/storer: rename ObjectStorer -> EncodedObjectStorer. * move difftree to plumbing/difftree. * move diff -> utils/diff * make Object/Tag/Blob/Tree/Commit/File depend on storer. * Object and its implementations now depend only on storer.EncodedObjectStorer, not git.Repository. * Tests are decoupled accordingly. * move Object/Commit/File/Tag/Tree to plumbing/object. * move Object/Commit/File/Tag/Tree to plumbing/object. * move checkClose to utils/ioutil. * move RevListObjects to plumbing/revlist.Objects. * move DiffTree to plumbing/difftree package. * rename files with plural nouns to singular * plumbing/object: add GetBlob/GetCommit/GetTag/GetTree.
* BaseSuite improvements, usage of file:// protoMáximo Cuadros2016-12-021-154/+36
|
* capabilities: full integration (#151)Máximo Cuadros2016-12-011-0/+7
| | | | | | | | | | | | | | | | | | * format/pktline: fix readPayloadLen err handling * protocol/pakp: UploadReq validation and creation of capabilities * protocol/pakp: AdvRef tests * protocol/pakp: capability.List.Delete * protocol: filter unsupported capabilities * remote capability negociation * transport: UploadRequest validation * requested changes
* protocol/packp: capabilities new Capability entity and List struct, test ↵Máximo Cuadros2016-11-291-2/+3
| | | | | | | | | | improvements (#144) * protocol/pakp: capabilities new Capability entity and List struct, test improvements * etc: example cloud-config file * removing sorting from List.String
* remove old types from transport and use packp (#142)Santiago M. Mola2016-11-281-12/+11
| | | | | | | | | | * protocol: move UploadPackRequest to protocol. * UploadPackRequest is now defined as an embedding of UploadRequest and UploadHaves. * Move http encoding specific code from UploadPackRequest to transport/http. * rename UlReq to UploadRequest * packp: move AdvRefs Encoder/Decoder to Encode/Decode methods. * packp: move UploadRequest Encoder/Decoder to Encode/Decode methods. * packp: Remove transport.UploadPackInfo in favor of packp. AdvRefs.
* move: format/packp -> protocol/packp (#141)Santiago M. Mola2016-11-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | * move: format/packp -> protocol/packp * format/packp -> protocol/packp * format/packp/pktline -> format/pktline. * move: protocol/packp/ulreq/* -> protocol/packp/* * protocol/packp: rename UlReq types to make them unique. * * protocol/packp: namespace UlReq encoder. * protocol/packp: namespace UlReq decoder. * protocol/packp: fix example names * move: protocol/packp/advrefs/* -> protocol/packp/* * further ulreq namespacing * protocol/packp: namespace AdvRefs types.
* transport: create Client interface (#132)Santiago M. Mola2016-11-231-31/+35
| | | | | | | | | | | | | | | * plumbing: move plumbing/client package to plumbing/transport. * transport: create Client interface. * A Client can instantiate any client transport service. * InstallProtocol installs a Client for a given protocol, instead of just a UploadPackService. * A Client can open a session for fetch-pack or send-pack for a specific Endpoint. * Adapt ssh and http clients to the new client interface. * updated doc
* new plumbing package (#118)Máximo Cuadros2016-11-081-13/+13
| | | * plumbing: now core was renamed to core, and formats and clients moved inside
* global storage interface refactor (#112)Máximo Cuadros2016-11-071-2/+2
| | | | | | | | | | | * core: ObjectStorage, ReferenceStorage renamed to ObjectStorer and ReferenceStorer * rebase * general, changes request by @alcortes * general, changes request by @alcortes
* remote, fix fetch tagsMáximo Cuadros2016-10-271-0/+1
|
* fix fixtures usageMáximo Cuadros2016-10-261-1/+1
|
* Use advrefs in gituploadpackinfo (#92)Alberto Cortés2016-10-261-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add advrefs encoder and parser * modify advrefs encoder to resemble json encoder * turn advrefs parser into a decoder * clean code * improve documentation * improve documentation * clean code * upgrade to new pktline.Add and add Flush const to easy integration * gometalinter * Use packp/advrefs for GitUploadPackInfo parsing - GitUploadPackInfo now uses packp/advrefs instead of parsing the message by itself. - Capabilities has been moved from clients/common to packp to avoid a circular import. - Cleaning of advrefs_test code. - Add support for prefix encoding and decoding in advrefs. * clean advrefs test code * clean advrefs test code * clean advrefs test code * gometalinter * add pktline encoder * change pktline.EncodeFlush to pktline.Flush * make scanner tests use the encoder instead of Pktlines * check errors on flush and clean constants * ubstitute the PktLines type with a pktline.Encoder * use pktline.Encoder in all go-git * add example of pktline.Encodef() * add package overview * documentation * support symbolic links other than HEAD * simplify decoding of shallows * packp: fix mcuadros comments - all abbreviates removed (by visual inspection, some may remain) - all empty maps are initialized using make - simplify readRef with a switch - make decodeShallow malformed error more verbose - add pktline.Encoder.encodeLine - remove infamous panic in checkPayloadLength by refactoring out the whole function
* test coverage improved, Remote.Refs and Repository.Refs returns error, ↵Máximo Cuadros2016-09-221-1/+1
| | | | TreeWalker -> TreeIter
* cleanup old fixturesMáximo Cuadros2016-09-221-4/+5
|
* dotgit: synced write packfile and index generationMáximo Cuadros2016-09-151-3/+5
|
* fixtures: new fixture package being use in all packagesMáximo Cuadros2016-09-121-7/+58
|
* format: packfile based on ObjectStorage and CRC32 calculationMáximo Cuadros2016-09-081-1/+0
|
* format: packfile new interfaceMáximo Cuadros2016-09-071-9/+9
|
* core: ObjectStorage.Begin and TxObjectStorageMáximo Cuadros2016-09-051-2/+2
|
* clients: default Auth methodsMáximo Cuadros2016-08-311-2/+1
|
* Repository: Clone protection if non empty object storage, Remote: ↵Máximo Cuadros2016-08-251-3/+7
| | | | NoErrAlreadyUpToDate
* ForEach review and Commit.Tree err returnMáximo Cuadros2016-08-221-1/+7
|
* options renamed and some text fixesMáximo Cuadros2016-08-221-1/+1
|