-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrun.rs
175 lines (155 loc) · 4.77 KB
/
run.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#![cfg(test)]
use std::process::Command;
use assert_cmd::prelude::*;
use copy_dir::copy_dir;
use predicates::prelude::*;
use tempfile::{TempDir, tempdir};
fn initialize(repository: &str, branch: &str, pull_requests: &[&str], patches: &[&str]) -> TempDir {
let temp_dir = tempdir().expect("tempdir failed");
Command::new("git")
.args(["init"])
.current_dir(temp_dir.path())
.output()
.expect("git init failed");
std::fs::write(temp_dir.path().join("file.txt"), "content").expect("writing file.txt failed");
Command::new("git")
.args(["config", "user.name", "GitHub Actions"])
.current_dir(temp_dir.path())
.output()
.expect("git config user.name failed");
Command::new("git")
.args(["config", "user.email", "user@example.com"])
.current_dir(temp_dir.path())
.output()
.expect("git config user.email failed");
Command::new("git")
.args(["add", "README.md"])
.current_dir(temp_dir.path())
.output()
.expect("git add README.md failed");
Command::new("git")
.args(["commit", "-m", "Initial commit with README"])
.current_dir(temp_dir.path())
.output()
.expect("git commit failed");
copy_dir("tests/fixtures/patches", temp_dir.path().join(".patchy")).expect("copy_dir failed");
std::fs::write(
temp_dir.path().join(".patchy").join("config.toml"),
format!(
"
repo = \"{repository}\"
remote-branch = \"{branch}\"
local-branch = \"patchy\"
pull-requests = {pull_requests:?}
patches = {patches:?}
"
),
)
.expect("writing config.toml failed");
Command::new("git")
.args(["add", ".patchy"])
.current_dir(temp_dir.path())
.output()
.expect("git add failed");
Command::new("git")
.args(["commit", "--allow-empty", "-n", "-m=initial commit"])
.current_dir(temp_dir.path())
.output()
.expect("git commit failed");
temp_dir
}
#[test]
fn test_helix_remove_tab() {
let tmp = initialize(
"helix-editor/helix",
"master @ 1bd7a3901cf73a9219470dafc65f3c7119e96cc0",
&[],
&["helix-remove-tab"],
);
Command::cargo_bin("patchy")
.unwrap()
.args(["run", "--yes"])
.current_dir(tmp.as_ref())
.assert()
.success()
.stdout(predicate::str::contains(
"✓ Applied patch helix-remove-tab feat: remove tab keybindings",
))
.stdout(predicate::str::contains("Success!"));
}
#[test]
#[ignore]
fn test_conflicting_patches() {
let tmp = initialize(
"helix-editor/helix",
"master @ 1bd7a3901cf73a9219470dafc65f3c7119e96cc0",
&[],
&[
"helix-readme-all-every",
"helix-readme-all-most",
// "helix-readme-all-some",
],
);
std::process::Command::cargo_bin("patchy")
.unwrap()
.args(["run", "--yes"])
.current_dir(tmp.path())
.assert()
.failure()
.stdout(predicate::str::contains(
"✓ Applied patch helix-readme-all-every patch-every",
))
.stderr(predicate::str::contains(
"✗ Could not apply patch helix-readme-all-most, skipping",
))
.stdout(predicate::str::contains("Success!").not());
}
#[test]
fn test_sequential_patches() {
let tmp = initialize(
"helix-editor/helix",
"master @ 1bd7a3901cf73a9219470dafc65f3c7119e96cc0",
&[],
&[
"helix-readme-all-some",
"helix-readme-some-most",
"helix-readme-most-every",
],
);
std::process::Command::cargo_bin("patchy")
.unwrap()
.args(["run", "--yes"])
.current_dir(tmp.path())
.assert()
// This should pass, as the patches are applied in order
.success()
.stdout(predicate::str::contains(
"✓ Applied patch helix-readme-all-some patch-some",
))
.stdout(predicate::str::contains(
"✓ Applied patch helix-readme-some-most patch-most",
))
.stdout(predicate::str::contains(
"✓ Applied patch helix-readme-most-every patch-every",
))
.stdout(predicate::str::contains("Success!"));
}
#[test]
fn test_nonexistent_patch() {
let tmp = initialize(
"helix-editor/helix",
"master @ 1bd7a3901cf73a9219470dafc65f3c7119e96cc0",
&[],
&["foo"],
);
std::process::Command::cargo_bin("patchy")
.unwrap()
.args(["run", "--yes"])
.current_dir(tmp.path())
.assert()
.success()
.stderr(predicate::str::contains(
"✗ Could not find patch foo, skipping",
))
.stdout(predicate::str::contains("Success!"));
}