cursus 0.3.2

Library crate for the cursus release management CLI
Documentation
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
//! Integration tests for the `change` command.

mod common;

use std::process::ExitCode;
use std::sync::Arc;

use common::{
	temp_git_repo, temp_git_repo_with_config, temp_git_repo_with_project,
	temp_git_repo_with_project_in_subfolder,
};
use cursus::command::RealCommandRunner;
use cursus::filesystem::LocalFilesystem;
use cursus::model::config::PackageManager;

#[tokio::test]
async fn change_fails_when_no_config() {
	let dir = temp_git_repo();
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"minor",
			"-m",
			"test",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_err());
	let err = result.unwrap_err();
	assert!(
		err.to_string().contains("No configuration found"),
		"Expected 'No configuration found' error, got: {err}"
	);
}

#[tokio::test]
async fn change_fails_when_no_projects_found() {
	let dir = temp_git_repo_with_config(PackageManager::Npm).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"minor",
			"-m",
			"test",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_err());
	let err = result.unwrap_err();
	assert!(
		err.to_string().contains("No projects found"),
		"Expected 'No projects found' error, got: {err}"
	);
}

#[tokio::test]
async fn change_succeeds_with_major() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"major",
			"-m",
			"test",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);

	// Verify the changeset file was created with the correct change type.
	let changeset_files: Vec<_> = std::fs::read_dir(dir.path().join(".cursus"))
		.expect("Expected .cursus/ directory to exist")
		.filter_map(|e| e.ok())
		.filter(|e| e.path().extension().is_some_and(|ext| ext == "md"))
		.collect();
	assert!(
		!changeset_files.is_empty(),
		"Expected a changeset file in .cursus/"
	);
	let content = std::fs::read_to_string(changeset_files[0].path()).unwrap();
	assert!(
		content.contains("major"),
		"Changeset should record a major change, got: {content}"
	);
}

#[tokio::test]
async fn change_succeeds_with_minor() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"minor",
			"-m",
			"test",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);

	// Verify the changeset file was created with the correct change type.
	let changeset_files: Vec<_> = std::fs::read_dir(dir.path().join(".cursus"))
		.expect("Expected .cursus/ directory to exist")
		.filter_map(|e| e.ok())
		.filter(|e| e.path().extension().is_some_and(|ext| ext == "md"))
		.collect();
	assert!(
		!changeset_files.is_empty(),
		"Expected a changeset file in .cursus/"
	);
	let content = std::fs::read_to_string(changeset_files[0].path()).unwrap();
	assert!(
		content.contains("minor"),
		"Changeset should record a minor change, got: {content}"
	);
}

#[tokio::test]
async fn change_succeeds_with_patch() {
	let dir = temp_git_repo_with_project(PackageManager::Cargo).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"patch",
			"-m",
			"test",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);
}

#[tokio::test]
async fn change_no_interactive_requires_change_type() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		["cursus", "--no-interactive", "change", "-m", "test"],
		dir.path(),
	)
	.await;

	assert!(result.is_err());
	let err = result.unwrap_err();
	assert!(
		err.to_string().contains("--change-type is required"),
		"Expected '--change-type is required' error, got: {err}"
	);
}

#[tokio::test]
async fn change_is_default_command() {
	// Running without a subcommand should behave like `change`,
	// which fails when no config exists
	let dir = temp_git_repo();
	let result = common::run_cursus(["cursus", "--no-interactive"], dir.path()).await;

	assert!(result.is_err());
	let err = result.unwrap_err();
	assert!(
		err.to_string().contains("No configuration found"),
		"Expected 'No configuration found' error (same as change command), got: {err}"
	);
}

#[tokio::test]
async fn change_with_project_flag_selects_specific_project() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"minor",
			"-p",
			"test-project",
			"-m",
			"test",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);
}

#[tokio::test]
async fn change_with_unknown_project_fails() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"minor",
			"-p",
			"nonexistent",
			"-m",
			"test",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_err());
	let err = result.unwrap_err();
	assert!(
		err.to_string().contains("Unknown project: nonexistent"),
		"Expected 'Unknown project' error, got: {err}"
	);
}

#[tokio::test]
async fn change_no_interactive_requires_message() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		["cursus", "--no-interactive", "change", "-t", "minor"],
		dir.path(),
	)
	.await;

	assert!(result.is_err());
	let err = result.unwrap_err();
	assert!(
		err.to_string().contains("--message is required"),
		"Expected '--message is required' error, got: {err}"
	);
}

#[tokio::test]
async fn change_with_message_creates_changeset_file() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"minor",
			"-m",
			"Added a new feature",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);

	// Find the changeset file (should be the only .md file in .cursus besides config)
	let cursus_dir = dir.path().join(".cursus");
	let md_files: Vec<_> = std::fs::read_dir(&cursus_dir)
		.unwrap()
		.filter_map(|e| e.ok())
		.filter(|e| e.path().extension().is_some_and(|ext| ext == "md"))
		.collect();

	assert_eq!(md_files.len(), 1, "Expected exactly one changeset file");

	let content = std::fs::read_to_string(md_files[0].path()).unwrap();
	assert!(
		content.starts_with("+++\n"),
		"Should start with TOML frontmatter delimiter"
	);
	assert!(
		content.contains("test-project = \"minor\""),
		"Should contain project with change type, got: {content}"
	);
	assert!(
		content.contains("Added a new feature"),
		"Should contain the message, got: {content}"
	);
}

#[tokio::test]
async fn change_with_message_and_project() {
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"patch",
			"-p",
			"test-project",
			"-m",
			"Fixed a bug",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);

	let cursus_dir = dir.path().join(".cursus");
	let md_files: Vec<_> = std::fs::read_dir(&cursus_dir)
		.unwrap()
		.filter_map(|e| e.ok())
		.filter(|e| e.path().extension().is_some_and(|ext| ext == "md"))
		.collect();

	assert_eq!(md_files.len(), 1);

	let content = std::fs::read_to_string(md_files[0].path()).unwrap();
	assert!(
		content.contains("test-project = \"patch\""),
		"Should contain specific project with patch type, got: {content}"
	);
	assert!(
		content.contains("Fixed a bug"),
		"Should contain the message, got: {content}"
	);
}

#[tokio::test]
async fn change_succeeds_with_npm_project_in_subfolder() {
	let dir = temp_git_repo_with_project_in_subfolder(PackageManager::Npm, "frontend").await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"minor",
			"-m",
			"test subfolder",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);
}

#[tokio::test]
async fn change_succeeds_with_cargo_project_in_subfolder() {
	let dir = temp_git_repo_with_project_in_subfolder(PackageManager::Cargo, "backend").await;
	let result = common::run_cursus(
		[
			"cursus",
			"--no-interactive",
			"change",
			"-t",
			"patch",
			"-m",
			"test subfolder",
		],
		dir.path(),
	)
	.await;

	assert!(result.is_ok());
	assert_eq!(result.unwrap(), ExitCode::SUCCESS);
}

#[tokio::test]
async fn change_interactive_with_message_does_not_open_editor() {
	// When --change-type is supplied, change::run() returns immediately without
	// entering the TUI. This means we can reach the open-editor guard in
	// cmd_change while in interactive mode (no --no-interactive) with a message
	// already provided.
	//
	// The condition `if args.message.is_none()` must NOT open the editor when a
	// message is present. The Env contains a nonexistent VISUAL binary, so any
	// call to open_editor returns an error — this catches mutations that would
	// cause the editor to be opened unnecessarily.
	let dir = temp_git_repo_with_project(PackageManager::Npm).await;
	let runner = Arc::new(RealCommandRunner) as Arc<dyn cursus::command::CommandRunner>;
	let path = cursus::path::AbsolutePath::new(dir.path()).unwrap();
	let git = Arc::new(cursus::git::GitWorkdir::new(Arc::clone(&runner), path));
	let env = cursus::Env::new(runner, Arc::new(LocalFilesystem), git)
		.with_editor("__cursus_test_nonexistent_editor__".to_string());
	let cli = clap::Parser::parse_from(["cursus", "change", "-t", "minor", "-m", "bump"]);
	let config = cursus::model::config::load(env.fs(), env.git().path())
		.await
		.unwrap();
	let result = cursus::run(cli, env, config).await;
	assert_eq!(result.expect("Expected success"), ExitCode::SUCCESS);
}