1
1
//! Tests for git authentication.
2
2
3
- #![ allow( deprecated) ]
4
-
5
3
use std:: collections:: HashSet ;
6
4
use std:: io:: prelude:: * ;
7
5
use std:: io:: BufReader ;
@@ -12,7 +10,7 @@ use std::thread::{self, JoinHandle};
12
10
13
11
use cargo_test_support:: git:: cargo_uses_gitoxide;
14
12
use cargo_test_support:: paths;
15
- use cargo_test_support:: { basic_manifest, project} ;
13
+ use cargo_test_support:: { basic_manifest, project, str } ;
16
14
17
15
fn setup_failed_auth_test ( ) -> ( SocketAddr , JoinHandle < ( ) > , Arc < AtomicUsize > ) {
18
16
let server = TcpListener :: bind ( "127.0.0.1:0" ) . unwrap ( ) ;
@@ -138,10 +136,10 @@ fn http_auth_offered() {
138
136
// may span multiple lines, and isn't relevant to this test.
139
137
p. cargo ( "check" )
140
138
. with_status ( 101 )
141
- . with_stderr_contains ( & format ! (
139
+ . with_stderr_data ( & format ! (
142
140
"\
143
141
[UPDATING] git repository `http://{addr}/foo/bar`
144
- [ERROR] failed to get `bar` as a dependency of package `foo v0.0.1 [..] `
142
+ [ERROR] failed to get `bar` as a dependency of package `foo v0.0.1 ([ROOT]/foo) `
145
143
146
144
Caused by:
147
145
failed to load source for dependency `bar`
@@ -150,21 +148,29 @@ Caused by:
150
148
Unable to update http://{addr}/foo/bar
151
149
152
150
Caused by:
153
- failed to clone into: [.. ]
151
+ failed to clone into: [ROOT]/home/.cargo/git/db/bar-[HASH ]
154
152
155
153
Caused by:
156
154
failed to authenticate when downloading repository
157
155
158
- * attempted to find username/password via `credential.helper`, but [..]
156
+ * attempted to find username/password via `credential.helper`, but maybe the found credentials were incorrect
159
157
160
158
if the git CLI succeeds then `net.git-fetch-with-cli` may help here
161
- https://[..]
159
+ https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
162
160
163
161
Caused by:
164
- "
162
+ {trailer}
163
+ " ,
164
+ trailer = if cargo_uses_gitoxide( ) {
165
+ format!( r#"[CREDENTIAL]s provided for "http://{addr}/foo/bar" were not accepted by the remote
166
+
167
+ Caused by:
168
+ Received HTTP status 401"# )
169
+ } else {
170
+ " no authentication methods succeeded" . to_string( )
171
+ }
165
172
) )
166
173
. run ( ) ;
167
-
168
174
assert_eq ! ( connections. load( SeqCst ) , 2 ) ;
169
175
t. join ( ) . ok ( ) . unwrap ( ) ;
170
176
}
@@ -209,25 +215,42 @@ fn https_something_happens() {
209
215
210
216
p. cargo ( "check -v" )
211
217
. with_status ( 101 )
212
- . with_stderr_contains ( & format ! (
213
- "[UPDATING] git repository `https://{addr}/foo/bar`"
214
- ) )
215
- . with_stderr_contains ( & format ! (
218
+ . with_stderr_data ( & format ! (
216
219
"\
220
+ [UPDATING] git repository `https://{addr}/foo/bar`
221
+ [ERROR] failed to get `bar` as a dependency of package `foo v0.0.1 ([ROOT]/foo)`
222
+
223
+ Caused by:
224
+ failed to load source for dependency `bar`
225
+
226
+ Caused by:
227
+ Unable to update https://{addr}/foo/bar
228
+
217
229
Caused by:
218
- {errmsg}
230
+ failed to clone into: [ROOT]/home/.cargo/git/db/bar-[HASH]
231
+
232
+ Caused by:
233
+ {errmsg}
219
234
" ,
220
235
errmsg = if cargo_uses_gitoxide( ) {
221
- "[..]SSL connect error [..]"
236
+ r" network failure seems to have happened
237
+ if a proxy or similar is necessary `net.git-fetch-with-cli` may help here
238
+ https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
239
+
240
+ Caused by:
241
+ An IO error occurred when talking to the server
242
+
243
+ Caused by:
244
+ [35] SSL connect error ([..])"
222
245
} else if cfg!( windows) {
223
- "[..]failed to send request: [..]"
246
+ "[..]failed to send request: [..]\n ... "
224
247
} else if cfg!( target_os = "macos" ) {
225
248
// macOS is difficult to tests as some builds may use Security.framework,
226
249
// while others may use OpenSSL. In that case, let's just not verify the error
227
250
// message here.
228
- "[..] "
251
+ "... "
229
252
} else {
230
- "[..]SSL error: [..]"
253
+ "[..]SSL [ERROR] [..]"
231
254
}
232
255
) )
233
256
. run ( ) ;
@@ -264,7 +287,7 @@ fn ssh_something_happens() {
264
287
. file ( "src/main.rs" , "" )
265
288
. build ( ) ;
266
289
267
- let ( expected_ssh_message , expected_update ) = if cargo_uses_gitoxide ( ) {
290
+ let expected = if cargo_uses_gitoxide ( ) {
268
291
// Due to the usage of `ssh` and `ssh.exe` respectively, the messages change.
269
292
// This will be adjusted to use `ssh2` to get rid of this dependency and have uniform messaging.
270
293
let message = if cfg ! ( windows) {
@@ -281,27 +304,47 @@ fn ssh_something_happens() {
281
304
} else {
282
305
"[..]Connection [..] by [..]"
283
306
} ;
284
- (
285
- message,
286
- format ! ( "[..]Unable to update ssh://{addr}/foo/bar" ) ,
307
+ format ! (
308
+ "\
309
+ [UPDATING] git repository `ssh://{addr}/foo/bar`
310
+ ...
311
+ {message}
312
+ ...
313
+ "
287
314
)
288
315
} else {
289
- (
316
+ format ! (
290
317
"\
318
+ [UPDATING] git repository `ssh://{addr}/foo/bar`
319
+ [ERROR] failed to get `bar` as a dependency of package `foo v0.0.1 ([ROOT]/foo)`
320
+
291
321
Caused by:
292
- [..]failed to start SSH session: Failed getting banner[..]
293
- " ,
294
- format ! ( "[UPDATING] git repository `ssh://{addr}/foo/bar`" ) ,
322
+ failed to load source for dependency `bar`
323
+
324
+ Caused by:
325
+ Unable to update ssh://{addr}/foo/bar
326
+
327
+ Caused by:
328
+ failed to clone into: [ROOT]/home/.cargo/git/db/bar-[HASH]
329
+
330
+ Caused by:
331
+ network failure seems to have happened
332
+ if a proxy or similar is necessary `net.git-fetch-with-cli` may help here
333
+ https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
334
+
335
+ Caused by:
336
+ failed to start SSH session: Failed getting banner; class=Ssh (23)
337
+ "
295
338
)
296
339
} ;
297
340
p. cargo ( "check -v" )
298
341
. with_status ( 101 )
299
- . with_stderr_contains ( & expected_update)
300
- . with_stderr_contains ( expected_ssh_message)
342
+ . with_stderr_data ( expected)
301
343
. run ( ) ;
302
344
t. join ( ) . ok ( ) . unwrap ( ) ;
303
345
}
304
346
347
+ #[ allow( deprecated) ]
305
348
#[ cargo_test]
306
349
fn net_err_suggests_fetch_with_cli ( ) {
307
350
let p = project ( )
@@ -323,13 +366,13 @@ fn net_err_suggests_fetch_with_cli() {
323
366
324
367
p. cargo ( "check -v" )
325
368
. with_status ( 101 )
326
- . with_stderr ( format ! (
369
+ . with_stderr_data ( format ! (
327
370
"\
328
371
[UPDATING] git repository `ssh://needs-proxy.invalid/git`
329
- warning: spurious network error[..]
330
- warning: spurious network error[..]
331
- warning: spurious network error[..]
332
- [ERROR] failed to get `foo` as a dependency of package `foo v0.0.0 [..] `
372
+ [WARNING] spurious network error (3 tries remaining): [..] resolve [..] needs-proxy.invalid: [..] known [..]
373
+ [WARNING] spurious network error (2 tries remaining): [..] resolve [..] needs-proxy.invalid: [..] known [..]
374
+ [WARNING] spurious network error (1 tries remaining): [..] resolve [..] needs-proxy.invalid: [..] known [..]
375
+ [ERROR] failed to get `foo` as a dependency of package `foo v0.0.0 ([ROOT]/foo) `
333
376
334
377
Caused by:
335
378
failed to load source for dependency `foo`
@@ -338,20 +381,23 @@ Caused by:
338
381
Unable to update ssh://needs-proxy.invalid/git
339
382
340
383
Caused by:
341
- failed to clone into: [.. ]
384
+ failed to clone into: [ROOT]/home/.cargo/git/db/git-[HASH ]
342
385
343
386
Caused by:
344
387
network failure seems to have happened
345
388
if a proxy or similar is necessary `net.git-fetch-with-cli` may help here
346
- https://[..]
389
+ https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
347
390
348
391
Caused by:
349
- {trailer}
392
+ {trailer}
350
393
" ,
351
394
trailer = if cargo_uses_gitoxide( ) {
352
- "An IO error occurred when talking to the server\n \n Caused by:\n ssh: Could not resolve hostname needs-proxy.invalid[..]"
395
+ r" An IO error occurred when talking to the server
396
+
397
+ Caused by:
398
+ ssh: Could not resolve hostname needs-proxy.invalid[..]"
353
399
} else {
354
- "failed to resolve address for needs-proxy.invalid[..]"
400
+ " failed to resolve address for needs-proxy.invalid: [..] known[..]; class=Net (12) "
355
401
}
356
402
) )
357
403
. run ( ) ;
@@ -366,7 +412,29 @@ Caused by:
366
412
367
413
p. cargo ( "check -v" )
368
414
. with_status ( 101 )
369
- . with_stderr_contains ( "[..]Unable to update[..]" )
415
+ . with_stderr_data ( str![ [ r#"
416
+ [UPDATING] git repository `ssh://needs-proxy.invalid/git`
417
+ [RUNNING] `git fetch --verbose --force --update-head-ok [..]ssh://needs-proxy.invalid/git[..] [..]+HEAD:refs/remotes/origin/HEAD[..]`
418
+ ssh: Could not resolve hostname needs-proxy.invalid: [..] not known
419
+ fatal: Could not read from remote repository.
420
+
421
+ Please make sure you have the correct access rights
422
+ and the repository exists.
423
+ [ERROR] failed to get `foo` as a dependency of package `foo v0.0.0 ([ROOT]/foo)`
424
+
425
+ Caused by:
426
+ failed to load source for dependency `foo`
427
+
428
+ Caused by:
429
+ Unable to update ssh://needs-proxy.invalid/git
430
+
431
+ Caused by:
432
+ failed to fetch into: [ROOT]/home/.cargo/git/db/git-[HASH]
433
+
434
+ Caused by:
435
+ process didn't exit successfully: `git fetch --verbose --force --update-head-ok [..]ssh://needs-proxy.invalid/git[..] [..]+HEAD:refs/remotes/origin/HEAD[..]` ([EXIT_STATUS]: 128)
436
+
437
+ "# ] ] )
370
438
. with_stderr_does_not_contain ( "[..]try enabling `git-fetch-with-cli`[..]" )
371
439
. run ( ) ;
372
440
}
@@ -401,10 +469,10 @@ fn instead_of_url_printed() {
401
469
402
470
p. cargo ( "check" )
403
471
. with_status ( 101 )
404
- . with_stderr ( & format ! (
472
+ . with_stderr_data ( & format ! (
405
473
"\
406
474
[UPDATING] git repository `https://foo.bar/foo/bar`
407
- [ERROR] failed to get `bar` as a dependency of package `foo [..] `
475
+ [ERROR] failed to get `bar` as a dependency of package `foo v0.0.1 ([ROOT]/foo) `
408
476
409
477
Caused by:
410
478
failed to load source for dependency `bar`
@@ -413,20 +481,19 @@ Caused by:
413
481
Unable to update https://foo.bar/foo/bar
414
482
415
483
Caused by:
416
- failed to clone into: [.. ]
484
+ failed to clone into: [ROOT]/home/.cargo/git/db/bar-[HASH ]
417
485
418
486
Caused by:
419
487
failed to authenticate when downloading repository: http://{addr}/foo/bar
420
488
421
489
* attempted to find username/password via `credential.helper`, but maybe the found credentials were incorrect
422
490
423
491
if the git CLI succeeds then `net.git-fetch-with-cli` may help here
424
- https://[..]
492
+ https://doc.rust-lang.org/cargo/reference/config.html#netgit-fetch-with-cli
425
493
426
494
Caused by:
427
- [..]
428
- {trailer}" ,
429
- trailer = if cargo_uses_gitoxide( ) { "\n Caused by:\n [..]" } else { "" }
495
+ ...
496
+ "
430
497
) )
431
498
. run ( ) ;
432
499
0 commit comments