Skip to content

Commit f5ca9c7

Browse files
committed
Auto merge of #14172 - dieterplex:migrate-gitauth-snapbox, r=weihanglo
test: Migrate git_auth to snapbox Part of #14039.
2 parents a515d46 + 9d91f25 commit f5ca9c7

File tree

1 file changed

+114
-47
lines changed

1 file changed

+114
-47
lines changed

tests/testsuite/git_auth.rs

+114-47
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
//! Tests for git authentication.
22
3-
#![allow(deprecated)]
4-
53
use std::collections::HashSet;
64
use std::io::prelude::*;
75
use std::io::BufReader;
@@ -12,7 +10,7 @@ use std::thread::{self, JoinHandle};
1210

1311
use cargo_test_support::git::cargo_uses_gitoxide;
1412
use cargo_test_support::paths;
15-
use cargo_test_support::{basic_manifest, project};
13+
use cargo_test_support::{basic_manifest, project, str};
1614

1715
fn setup_failed_auth_test() -> (SocketAddr, JoinHandle<()>, Arc<AtomicUsize>) {
1816
let server = TcpListener::bind("127.0.0.1:0").unwrap();
@@ -138,10 +136,10 @@ fn http_auth_offered() {
138136
// may span multiple lines, and isn't relevant to this test.
139137
p.cargo("check")
140138
.with_status(101)
141-
.with_stderr_contains(&format!(
139+
.with_stderr_data(&format!(
142140
"\
143141
[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)`
145143
146144
Caused by:
147145
failed to load source for dependency `bar`
@@ -150,21 +148,29 @@ Caused by:
150148
Unable to update http://{addr}/foo/bar
151149
152150
Caused by:
153-
failed to clone into: [..]
151+
failed to clone into: [ROOT]/home/.cargo/git/db/bar-[HASH]
154152
155153
Caused by:
156154
failed to authenticate when downloading repository
157155
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
159157
160158
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
162160
163161
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+
}
165172
))
166173
.run();
167-
168174
assert_eq!(connections.load(SeqCst), 2);
169175
t.join().ok().unwrap();
170176
}
@@ -209,25 +215,42 @@ fn https_something_happens() {
209215

210216
p.cargo("check -v")
211217
.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!(
216219
"\
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+
217229
Caused by:
218-
{errmsg}
230+
failed to clone into: [ROOT]/home/.cargo/git/db/bar-[HASH]
231+
232+
Caused by:
233+
{errmsg}
219234
",
220235
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 ([..])"
222245
} else if cfg!(windows) {
223-
"[..]failed to send request: [..]"
246+
"[..]failed to send request: [..]\n..."
224247
} else if cfg!(target_os = "macos") {
225248
// macOS is difficult to tests as some builds may use Security.framework,
226249
// while others may use OpenSSL. In that case, let's just not verify the error
227250
// message here.
228-
"[..]"
251+
"..."
229252
} else {
230-
"[..]SSL error: [..]"
253+
"[..]SSL [ERROR][..]"
231254
}
232255
))
233256
.run();
@@ -264,7 +287,7 @@ fn ssh_something_happens() {
264287
.file("src/main.rs", "")
265288
.build();
266289

267-
let (expected_ssh_message, expected_update) = if cargo_uses_gitoxide() {
290+
let expected = if cargo_uses_gitoxide() {
268291
// Due to the usage of `ssh` and `ssh.exe` respectively, the messages change.
269292
// This will be adjusted to use `ssh2` to get rid of this dependency and have uniform messaging.
270293
let message = if cfg!(windows) {
@@ -281,27 +304,47 @@ fn ssh_something_happens() {
281304
} else {
282305
"[..]Connection [..] by [..]"
283306
};
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+
"
287314
)
288315
} else {
289-
(
316+
format!(
290317
"\
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+
291321
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+
"
295338
)
296339
};
297340
p.cargo("check -v")
298341
.with_status(101)
299-
.with_stderr_contains(&expected_update)
300-
.with_stderr_contains(expected_ssh_message)
342+
.with_stderr_data(expected)
301343
.run();
302344
t.join().ok().unwrap();
303345
}
304346

347+
#[allow(deprecated)]
305348
#[cargo_test]
306349
fn net_err_suggests_fetch_with_cli() {
307350
let p = project()
@@ -323,13 +366,13 @@ fn net_err_suggests_fetch_with_cli() {
323366

324367
p.cargo("check -v")
325368
.with_status(101)
326-
.with_stderr(format!(
369+
.with_stderr_data(format!(
327370
"\
328371
[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)`
333376
334377
Caused by:
335378
failed to load source for dependency `foo`
@@ -338,20 +381,23 @@ Caused by:
338381
Unable to update ssh://needs-proxy.invalid/git
339382
340383
Caused by:
341-
failed to clone into: [..]
384+
failed to clone into: [ROOT]/home/.cargo/git/db/git-[HASH]
342385
343386
Caused by:
344387
network failure seems to have happened
345388
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
347390
348391
Caused by:
349-
{trailer}
392+
{trailer}
350393
",
351394
trailer = if cargo_uses_gitoxide() {
352-
"An IO error occurred when talking to the server\n\nCaused 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[..]"
353399
} else {
354-
"failed to resolve address for needs-proxy.invalid[..]"
400+
" failed to resolve address for needs-proxy.invalid: [..] known[..]; class=Net (12)"
355401
}
356402
))
357403
.run();
@@ -366,7 +412,29 @@ Caused by:
366412

367413
p.cargo("check -v")
368414
.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+
"#]])
370438
.with_stderr_does_not_contain("[..]try enabling `git-fetch-with-cli`[..]")
371439
.run();
372440
}
@@ -401,10 +469,10 @@ fn instead_of_url_printed() {
401469

402470
p.cargo("check")
403471
.with_status(101)
404-
.with_stderr(&format!(
472+
.with_stderr_data(&format!(
405473
"\
406474
[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)`
408476
409477
Caused by:
410478
failed to load source for dependency `bar`
@@ -413,20 +481,19 @@ Caused by:
413481
Unable to update https://foo.bar/foo/bar
414482
415483
Caused by:
416-
failed to clone into: [..]
484+
failed to clone into: [ROOT]/home/.cargo/git/db/bar-[HASH]
417485
418486
Caused by:
419487
failed to authenticate when downloading repository: http://{addr}/foo/bar
420488
421489
* attempted to find username/password via `credential.helper`, but maybe the found credentials were incorrect
422490
423491
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
425493
426494
Caused by:
427-
[..]
428-
{trailer}",
429-
trailer = if cargo_uses_gitoxide() { "\nCaused by:\n [..]" } else { "" }
495+
...
496+
"
430497
))
431498
.run();
432499

0 commit comments

Comments
 (0)