@@ -31,32 +31,32 @@ type RemoteSuite struct {
31
31
var _ = Suite (& RemoteSuite {})
32
32
33
33
func (s * RemoteSuite ) TestFetchInvalidEndpoint (c * C ) {
34
- r := newRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"http://\\ " }})
34
+ r := NewRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"http://\\ " }})
35
35
err := r .Fetch (& FetchOptions {RemoteName : "foo" })
36
36
c .Assert (err , ErrorMatches , ".*invalid character.*" )
37
37
}
38
38
39
39
func (s * RemoteSuite ) TestFetchNonExistentEndpoint (c * C ) {
40
- r := newRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"ssh://non-existent/foo.git" }})
40
+ r := NewRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"ssh://non-existent/foo.git" }})
41
41
err := r .Fetch (& FetchOptions {})
42
42
c .Assert (err , NotNil )
43
43
}
44
44
45
45
func (s * RemoteSuite ) TestFetchInvalidSchemaEndpoint (c * C ) {
46
- r := newRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"qux://foo" }})
46
+ r := NewRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"qux://foo" }})
47
47
err := r .Fetch (& FetchOptions {})
48
48
c .Assert (err , ErrorMatches , ".*unsupported scheme.*" )
49
49
}
50
50
51
51
func (s * RemoteSuite ) TestFetchInvalidFetchOptions (c * C ) {
52
- r := newRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"qux://foo" }})
52
+ r := NewRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"qux://foo" }})
53
53
invalid := config .RefSpec ("^*$ñ" )
54
54
err := r .Fetch (& FetchOptions {RefSpecs : []config.RefSpec {invalid }})
55
55
c .Assert (err , Equals , config .ErrRefSpecMalformedSeparator )
56
56
}
57
57
58
58
func (s * RemoteSuite ) TestFetchWildcard (c * C ) {
59
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
59
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
60
60
URLs : []string {s .GetBasicLocalRepositoryURL ()},
61
61
})
62
62
@@ -72,7 +72,7 @@ func (s *RemoteSuite) TestFetchWildcard(c *C) {
72
72
}
73
73
74
74
func (s * RemoteSuite ) TestFetchWildcardTags (c * C ) {
75
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
75
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
76
76
URLs : []string {s .GetLocalRepositoryURL (fixtures .ByTag ("tags" ).One ())},
77
77
})
78
78
@@ -91,7 +91,7 @@ func (s *RemoteSuite) TestFetchWildcardTags(c *C) {
91
91
}
92
92
93
93
func (s * RemoteSuite ) TestFetch (c * C ) {
94
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
94
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
95
95
URLs : []string {s .GetLocalRepositoryURL (fixtures .ByTag ("tags" ).One ())},
96
96
})
97
97
@@ -105,7 +105,7 @@ func (s *RemoteSuite) TestFetch(c *C) {
105
105
}
106
106
107
107
func (s * RemoteSuite ) TestFetchNonExistantReference (c * C ) {
108
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
108
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
109
109
URLs : []string {s .GetLocalRepositoryURL (fixtures .ByTag ("tags" ).One ())},
110
110
})
111
111
@@ -119,7 +119,7 @@ func (s *RemoteSuite) TestFetchNonExistantReference(c *C) {
119
119
}
120
120
121
121
func (s * RemoteSuite ) TestFetchContext (c * C ) {
122
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
122
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
123
123
URLs : []string {s .GetLocalRepositoryURL (fixtures .ByTag ("tags" ).One ())},
124
124
})
125
125
@@ -135,7 +135,7 @@ func (s *RemoteSuite) TestFetchContext(c *C) {
135
135
}
136
136
137
137
func (s * RemoteSuite ) TestFetchWithAllTags (c * C ) {
138
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
138
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
139
139
URLs : []string {s .GetLocalRepositoryURL (fixtures .ByTag ("tags" ).One ())},
140
140
})
141
141
@@ -155,7 +155,7 @@ func (s *RemoteSuite) TestFetchWithAllTags(c *C) {
155
155
}
156
156
157
157
func (s * RemoteSuite ) TestFetchWithNoTags (c * C ) {
158
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
158
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
159
159
URLs : []string {s .GetLocalRepositoryURL (fixtures .ByTag ("tags" ).One ())},
160
160
})
161
161
@@ -171,7 +171,7 @@ func (s *RemoteSuite) TestFetchWithNoTags(c *C) {
171
171
}
172
172
173
173
func (s * RemoteSuite ) TestFetchWithDepth (c * C ) {
174
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
174
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
175
175
URLs : []string {s .GetBasicLocalRepositoryURL ()},
176
176
})
177
177
@@ -212,7 +212,7 @@ func (s *RemoteSuite) TestFetchWithProgress(c *C) {
212
212
sto := memory .NewStorage ()
213
213
buf := bytes .NewBuffer (nil )
214
214
215
- r := newRemote (sto , & config.RemoteConfig {Name : "foo" , URLs : []string {url }})
215
+ r := NewRemote (sto , & config.RemoteConfig {Name : "foo" , URLs : []string {url }})
216
216
217
217
refspec := config .RefSpec ("+refs/heads/*:refs/remotes/origin/*" )
218
218
err := r .Fetch (& FetchOptions {
@@ -248,7 +248,7 @@ func (s *RemoteSuite) TestFetchWithPackfileWriter(c *C) {
248
248
mock := & mockPackfileWriter {Storer : fss }
249
249
250
250
url := s .GetBasicLocalRepositoryURL ()
251
- r := newRemote (mock , & config.RemoteConfig {Name : "foo" , URLs : []string {url }})
251
+ r := NewRemote (mock , & config.RemoteConfig {Name : "foo" , URLs : []string {url }})
252
252
253
253
refspec := config .RefSpec ("+refs/heads/*:refs/remotes/origin/*" )
254
254
err = r .Fetch (& FetchOptions {
@@ -276,7 +276,7 @@ func (s *RemoteSuite) TestFetchNoErrAlreadyUpToDate(c *C) {
276
276
}
277
277
278
278
func (s * RemoteSuite ) TestFetchNoErrAlreadyUpToDateButStillUpdateLocalRemoteRefs (c * C ) {
279
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {
279
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {
280
280
URLs : []string {s .GetBasicLocalRepositoryURL ()},
281
281
})
282
282
@@ -313,7 +313,7 @@ func (s *RemoteSuite) TestFetchNoErrAlreadyUpToDateWithNonCommitObjects(c *C) {
313
313
}
314
314
315
315
func (s * RemoteSuite ) doTestFetchNoErrAlreadyUpToDate (c * C , url string ) {
316
- r := newRemote (memory .NewStorage (), & config.RemoteConfig {URLs : []string {url }})
316
+ r := NewRemote (memory .NewStorage (), & config.RemoteConfig {URLs : []string {url }})
317
317
318
318
o := & FetchOptions {
319
319
RefSpecs : []config.RefSpec {
@@ -328,7 +328,7 @@ func (s *RemoteSuite) doTestFetchNoErrAlreadyUpToDate(c *C, url string) {
328
328
}
329
329
330
330
func (s * RemoteSuite ) testFetchFastForward (c * C , sto storage.Storer ) {
331
- r := newRemote (sto , & config.RemoteConfig {
331
+ r := NewRemote (sto , & config.RemoteConfig {
332
332
URLs : []string {s .GetBasicLocalRepositoryURL ()},
333
333
})
334
334
@@ -386,7 +386,7 @@ func (s *RemoteSuite) TestFetchFastForwardFS(c *C) {
386
386
}
387
387
388
388
func (s * RemoteSuite ) TestString (c * C ) {
389
- r := newRemote (nil , & config.RemoteConfig {
389
+ r := NewRemote (nil , & config.RemoteConfig {
390
390
Name : "foo" ,
391
391
URLs : []string {"https://github.com/git-fixtures/basic.git" },
392
392
})
@@ -405,7 +405,7 @@ func (s *RemoteSuite) TestPushToEmptyRepository(c *C) {
405
405
srcFs := fixtures .Basic ().One ().DotGit ()
406
406
sto := filesystem .NewStorage (srcFs , cache .NewObjectLRUDefault ())
407
407
408
- r := newRemote (sto , & config.RemoteConfig {
408
+ r := NewRemote (sto , & config.RemoteConfig {
409
409
Name : DefaultRemoteName ,
410
410
URLs : []string {url },
411
411
})
@@ -442,7 +442,7 @@ func (s *RemoteSuite) TestPushContext(c *C) {
442
442
fs := fixtures .ByURL ("https://github.com/git-fixtures/tags.git" ).One ().DotGit ()
443
443
sto := filesystem .NewStorage (fs , cache .NewObjectLRUDefault ())
444
444
445
- r := newRemote (sto , & config.RemoteConfig {
445
+ r := NewRemote (sto , & config.RemoteConfig {
446
446
Name : DefaultRemoteName ,
447
447
URLs : []string {url },
448
448
})
@@ -471,7 +471,7 @@ func (s *RemoteSuite) TestPushTags(c *C) {
471
471
fs := fixtures .ByURL ("https://github.com/git-fixtures/tags.git" ).One ().DotGit ()
472
472
sto := filesystem .NewStorage (fs , cache .NewObjectLRUDefault ())
473
473
474
- r := newRemote (sto , & config.RemoteConfig {
474
+ r := NewRemote (sto , & config.RemoteConfig {
475
475
Name : DefaultRemoteName ,
476
476
URLs : []string {url },
477
477
})
@@ -494,7 +494,7 @@ func (s *RemoteSuite) TestPushNoErrAlreadyUpToDate(c *C) {
494
494
fs := fixtures .Basic ().One ().DotGit ()
495
495
sto := filesystem .NewStorage (fs , cache .NewObjectLRUDefault ())
496
496
497
- r := newRemote (sto , & config.RemoteConfig {
497
+ r := NewRemote (sto , & config.RemoteConfig {
498
498
Name : DefaultRemoteName ,
499
499
URLs : []string {fs .Root ()},
500
500
})
@@ -564,7 +564,7 @@ func (s *RemoteSuite) TestPushForce(c *C) {
564
564
dstSto := filesystem .NewStorage (dstFs , cache .NewObjectLRUDefault ())
565
565
566
566
url := dstFs .Root ()
567
- r := newRemote (sto , & config.RemoteConfig {
567
+ r := NewRemote (sto , & config.RemoteConfig {
568
568
Name : DefaultRemoteName ,
569
569
URLs : []string {url },
570
570
})
@@ -654,32 +654,32 @@ func (s *RemoteSuite) TestPushNewReferenceAndDeleteInBatch(c *C) {
654
654
}
655
655
656
656
func (s * RemoteSuite ) TestPushInvalidEndpoint (c * C ) {
657
- r := newRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"http://\\ " }})
657
+ r := NewRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"http://\\ " }})
658
658
err := r .Push (& PushOptions {RemoteName : "foo" })
659
659
c .Assert (err , ErrorMatches , ".*invalid character.*" )
660
660
}
661
661
662
662
func (s * RemoteSuite ) TestPushNonExistentEndpoint (c * C ) {
663
- r := newRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"ssh://non-existent/foo.git" }})
663
+ r := NewRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"ssh://non-existent/foo.git" }})
664
664
err := r .Push (& PushOptions {})
665
665
c .Assert (err , NotNil )
666
666
}
667
667
668
668
func (s * RemoteSuite ) TestPushInvalidSchemaEndpoint (c * C ) {
669
- r := newRemote (nil , & config.RemoteConfig {Name : "origin" , URLs : []string {"qux://foo" }})
669
+ r := NewRemote (nil , & config.RemoteConfig {Name : "origin" , URLs : []string {"qux://foo" }})
670
670
err := r .Push (& PushOptions {})
671
671
c .Assert (err , ErrorMatches , ".*unsupported scheme.*" )
672
672
}
673
673
674
674
func (s * RemoteSuite ) TestPushInvalidFetchOptions (c * C ) {
675
- r := newRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"qux://foo" }})
675
+ r := NewRemote (nil , & config.RemoteConfig {Name : "foo" , URLs : []string {"qux://foo" }})
676
676
invalid := config .RefSpec ("^*$ñ" )
677
677
err := r .Push (& PushOptions {RefSpecs : []config.RefSpec {invalid }})
678
678
c .Assert (err , Equals , config .ErrRefSpecMalformedSeparator )
679
679
}
680
680
681
681
func (s * RemoteSuite ) TestPushInvalidRefSpec (c * C ) {
682
- r := newRemote (nil , & config.RemoteConfig {
682
+ r := NewRemote (nil , & config.RemoteConfig {
683
683
Name : DefaultRemoteName ,
684
684
URLs : []string {"some-url" },
685
685
})
@@ -692,7 +692,7 @@ func (s *RemoteSuite) TestPushInvalidRefSpec(c *C) {
692
692
}
693
693
694
694
func (s * RemoteSuite ) TestPushWrongRemoteName (c * C ) {
695
- r := newRemote (nil , & config.RemoteConfig {
695
+ r := NewRemote (nil , & config.RemoteConfig {
696
696
Name : DefaultRemoteName ,
697
697
URLs : []string {"some-url" },
698
698
})
@@ -729,7 +729,7 @@ func (s *RemoteSuite) TestGetHaves(c *C) {
729
729
730
730
func (s * RemoteSuite ) TestList (c * C ) {
731
731
repo := fixtures .Basic ().One ()
732
- remote := newRemote (memory .NewStorage (), & config.RemoteConfig {
732
+ remote := NewRemote (memory .NewStorage (), & config.RemoteConfig {
733
733
Name : DefaultRemoteName ,
734
734
URLs : []string {repo .URL },
735
735
})
@@ -784,7 +784,7 @@ func (s *RemoteSuite) TestUpdateShallows(c *C) {
784
784
{nil , hashes [0 :6 ]},
785
785
}
786
786
787
- remote := newRemote (memory .NewStorage (), & config.RemoteConfig {
787
+ remote := NewRemote (memory .NewStorage (), & config.RemoteConfig {
788
788
Name : DefaultRemoteName ,
789
789
})
790
790
@@ -817,7 +817,7 @@ func (s *RemoteSuite) TestUseRefDeltas(c *C) {
817
817
fs := fixtures .ByURL ("https://github.com/git-fixtures/tags.git" ).One ().DotGit ()
818
818
sto := filesystem .NewStorage (fs , cache .NewObjectLRUDefault ())
819
819
820
- r := newRemote (sto , & config.RemoteConfig {
820
+ r := NewRemote (sto , & config.RemoteConfig {
821
821
Name : DefaultRemoteName ,
822
822
URLs : []string {url },
823
823
})
0 commit comments