jjj 0.4.1

Distributed project management and code review for Jujutsu
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
mod test_helpers;

use test_helpers::{jj_available, run_jjj, run_jjj_success, setup_test_repo};

#[test]
fn test_problem_new_creates_problem() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    let stdout = run_jjj_success(&dir, &["problem", "new", "Test Problem"]);
    assert!(
        stdout.contains("Test Problem"),
        "Expected title in output: {}",
        stdout
    );
    // Should contain "Created problem" message
    assert!(
        stdout.contains("Created problem") || stdout.contains("Test Problem"),
        "Expected creation confirmation: {}",
        stdout
    );
}

#[test]
fn test_problem_new_with_priority() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(
        &dir,
        &["problem", "new", "Critical Bug", "--priority", "critical"],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "Critical Bug"]);
    assert!(
        stdout.contains("critical"),
        "Expected critical priority: {}",
        stdout
    );
}

#[test]
fn test_problem_new_with_parent() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Parent Problem"]);
    run_jjj_success(
        &dir,
        &[
            "problem",
            "new",
            "Child Problem",
            "--parent",
            "Parent Problem",
        ],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "Child Problem"]);
    assert!(
        stdout.contains("Parent Problem") || stdout.contains("Parent"),
        "Expected parent reference in output: {}",
        stdout
    );
}

#[test]
fn test_problem_list_shows_all_problems() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "First Problem"]);
    run_jjj_success(&dir, &["problem", "new", "Second Problem"]);
    run_jjj_success(&dir, &["problem", "new", "Third Problem"]);

    let stdout = run_jjj_success(&dir, &["problem", "list"]);
    assert!(
        stdout.contains("First Problem"),
        "Expected First Problem: {}",
        stdout
    );
    assert!(
        stdout.contains("Second Problem"),
        "Expected Second Problem: {}",
        stdout
    );
    assert!(
        stdout.contains("Third Problem"),
        "Expected Third Problem: {}",
        stdout
    );
}

#[test]
fn test_problem_list_filter_by_status() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Open Problem"]);
    run_jjj_success(&dir, &["problem", "new", "Solved Problem"]);
    // Create a solution and accept it (auto-solves Solved Problem)
    run_jjj_success(
        &dir,
        &["solution", "new", "Solution", "--problem", "Solved Problem"],
    );
    run_jjj_success(&dir, &["solution", "submit", "Solution"]);
    run_jjj_success(&dir, &["solution", "approve", "Solution"]);

    let stdout = run_jjj_success(&dir, &["problem", "list", "--status", "open"]);
    assert!(
        stdout.contains("Open Problem"),
        "Expected Open Problem in open list: {}",
        stdout
    );
    assert!(
        !stdout.contains("Solved Problem"),
        "Solved Problem should not be in open list: {}",
        stdout
    );

    let stdout = run_jjj_success(&dir, &["problem", "list", "--status", "solved"]);
    assert!(
        stdout.contains("Solved Problem"),
        "Expected Solved Problem in solved list: {}",
        stdout
    );
}

#[test]
fn test_problem_list_json_output() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "JSON Problem"]);

    let stdout = run_jjj_success(&dir, &["problem", "list", "--json"]);
    let json: serde_json::Value =
        serde_json::from_str(&stdout).expect("Failed to parse JSON output");
    assert!(json.is_array(), "Expected JSON array");
    let arr = json.as_array().unwrap();
    assert_eq!(arr.len(), 1, "Expected 1 problem");
    assert_eq!(arr[0]["title"], "JSON Problem");
    // ID should exist but we don't assert specific value
    assert!(arr[0]["id"].is_string(), "Expected id to be a string");
}

#[test]
fn test_problem_show_displays_details() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(
        &dir,
        &["problem", "new", "Detailed Problem", "--priority", "high"],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "Detailed Problem"]);
    assert!(
        stdout.contains("Detailed Problem"),
        "Expected title: {}",
        stdout
    );
    assert!(
        stdout.contains("high"),
        "Expected high priority: {}",
        stdout
    );
    assert!(
        stdout.contains("Status") || stdout.contains("open"),
        "Expected status: {}",
        stdout
    );
}

#[test]
fn test_problem_show_json_output() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "JSON Show Problem"]);

    let stdout = run_jjj_success(&dir, &["problem", "show", "JSON Show Problem", "--json"]);
    let json: serde_json::Value =
        serde_json::from_str(&stdout).expect("Failed to parse JSON output");
    // ID should exist but we don't assert specific value
    assert!(json["id"].is_string(), "Expected id to be a string");
    assert_eq!(json["title"], "JSON Show Problem");
    assert_eq!(json["status"], "open");
}

#[test]
fn test_problem_show_nonexistent_fails() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    let output = run_jjj(&dir, &["problem", "show", "nonexistent-problem-xyz"]);
    assert!(
        !output.status.success(),
        "Expected failure for nonexistent problem"
    );
}

#[test]
fn test_problem_edit_title() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Original Title"]);
    run_jjj_success(
        &dir,
        &[
            "problem",
            "edit",
            "Original Title",
            "--title",
            "Updated Title",
        ],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "Updated Title"]);
    assert!(
        stdout.contains("Updated Title"),
        "Expected updated title: {}",
        stdout
    );
}

#[test]
fn test_problem_edit_priority() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Low Priority"]);
    run_jjj_success(
        &dir,
        &["problem", "edit", "Low Priority", "--priority", "critical"],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "Low Priority"]);
    assert!(
        stdout.contains("critical"),
        "Expected critical priority: {}",
        stdout
    );
}

#[test]
fn test_problem_dissolve() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "False Problem"]);
    run_jjj_success(
        &dir,
        &[
            "problem",
            "dissolve",
            "False Problem",
            "--reason",
            "Based on misunderstanding",
        ],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "False Problem"]);
    assert!(
        stdout.contains("dissolved"),
        "Expected dissolved status: {}",
        stdout
    );
    assert!(
        stdout.contains("Based on misunderstanding"),
        "Expected dissolve reason: {}",
        stdout
    );
}

#[test]
fn test_problem_tree_view() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Root Problem"]);
    run_jjj_success(
        &dir,
        &["problem", "new", "Child 1", "--parent", "Root Problem"],
    );
    run_jjj_success(
        &dir,
        &["problem", "new", "Child 2", "--parent", "Root Problem"],
    );

    let stdout = run_jjj_success(&dir, &["problem", "list", "--tree"]);
    // Tree view should show hierarchy
    assert!(stdout.contains("Root Problem"), "Expected root: {}", stdout);
    assert!(stdout.contains("Child 1"), "Expected child 1: {}", stdout);
    assert!(stdout.contains("Child 2"), "Expected child 2: {}", stdout);
}

#[test]
fn test_problem_solve_requires_accepted_solution() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Need Solution"]);

    // Try to solve without any solution - should fail
    let output = run_jjj(&dir, &["problem", "solve", "Need Solution"]);
    assert!(
        !output.status.success(),
        "Expected failure when solving without accepted solution"
    );

    // Add a solution and accept it (auto-solves the problem)
    run_jjj_success(
        &dir,
        &["solution", "new", "Fix", "--problem", "Need Solution"],
    );
    run_jjj_success(&dir, &["solution", "submit", "Fix"]);
    run_jjj_success(&dir, &["solution", "approve", "Fix"]);

    // Problem is already auto-solved; explicit solve is idempotent (succeeds).
    let output = run_jjj(&dir, &["problem", "solve", "Need Solution"]);
    assert!(
        output.status.success(),
        "Expected idempotent success when problem is already solved"
    );

    // Verify problem is in solved state
    let stdout = run_jjj_success(&dir, &["problem", "list", "--status", "solved"]);
    assert!(
        stdout.contains("Need Solution"),
        "Expected problem in solved list: {}",
        stdout
    );
}

#[test]
fn test_problem_assign() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Assign Me"]);
    run_jjj_success(&dir, &["problem", "assign", "Assign Me", "--to", "alice"]);

    let stdout = run_jjj_success(&dir, &["problem", "show", "Assign Me"]);
    assert!(
        stdout.contains("alice"),
        "Expected assignee alice: {}",
        stdout
    );
}

#[test]
fn test_problem_new_with_tags() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(
        &dir,
        &["problem", "new", "Tagged Problem", "--tags", "backend,auth"],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "Tagged Problem"]);
    assert!(
        stdout.contains("Tags:") && stdout.contains("auth") && stdout.contains("backend"),
        "Expected tags in show output: {}",
        stdout
    );
}

#[test]
fn test_problem_edit_add_tag() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Tag Edit Test"]);
    run_jjj_success(
        &dir,
        &["problem", "edit", "Tag Edit Test", "--add-tag", "backend"],
    );

    let stdout = run_jjj_success(&dir, &["problem", "show", "Tag Edit Test"]);
    assert!(
        stdout.contains("backend"),
        "Expected tag backend in output: {}",
        stdout
    );

    // Remove the tag
    run_jjj_success(
        &dir,
        &[
            "problem",
            "edit",
            "Tag Edit Test",
            "--remove-tag",
            "backend",
        ],
    );
    let stdout = run_jjj_success(&dir, &["problem", "show", "Tag Edit Test"]);
    assert!(
        !stdout.contains("Tags:"),
        "Expected no tags after removal: {}",
        stdout
    );
}

#[test]
fn test_problem_list_filter_by_tag() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Tagged One", "--tags", "backend"]);
    run_jjj_success(&dir, &["problem", "new", "Untagged One", "-f"]);

    let stdout = run_jjj_success(&dir, &["problem", "list", "--tag", "backend"]);
    assert!(
        stdout.contains("Tagged One"),
        "Expected tagged problem in filtered list: {}",
        stdout
    );
    assert!(
        !stdout.contains("Untagged One"),
        "Expected untagged problem excluded: {}",
        stdout
    );
}

#[test]
fn test_problem_edit_set_tags() {
    if !jj_available() {
        return;
    }
    let dir = setup_test_repo();

    run_jjj_success(&dir, &["problem", "new", "Set Tags Test", "--tags", "old"]);

    // Replace all tags atomically
    run_jjj_success(
        &dir,
        &[
            "problem",
            "edit",
            "Set Tags Test",
            "--set-tags",
            "alpha,beta",
        ],
    );
    let stdout = run_jjj_success(&dir, &["problem", "show", "Set Tags Test"]);
    assert!(
        stdout.contains("alpha") && stdout.contains("beta"),
        "Expected new tags: {}",
        stdout
    );
    assert!(
        !stdout.contains("old"),
        "Expected old tag removed: {}",
        stdout
    );

    // Clear all tags with empty --set-tags
    run_jjj_success(
        &dir,
        &["problem", "edit", "Set Tags Test", "--set-tags", ""],
    );
    let stdout = run_jjj_success(&dir, &["problem", "show", "Set Tags Test"]);
    assert!(
        !stdout.contains("Tags:"),
        "Expected no tags after clear: {}",
        stdout
    );
}