bmo 0.5.0

Local-first SQLite-backed CLI issue tracker for AI agents
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
use assert_cmd::cargo;
use assert_cmd::prelude::*;
use std::path::Path;
use std::process::Command;

use predicates::str::contains;
use tempfile::TempDir;

/// Initialize a fresh bmo project in a temp directory and return the dir handle.
fn setup() -> TempDir {
    let dir = TempDir::new().unwrap();
    Command::new(cargo::cargo_bin!("bmo"))
        .current_dir(dir.path())
        .arg("init")
        .assert()
        .success();
    dir
}

fn bmo(dir: &TempDir) -> Command {
    let mut cmd = Command::new(cargo::cargo_bin!("bmo"));
    cmd.current_dir(dir.path());
    cmd
}

// ── Import from fixture ───────────────────────────────────────────────────────

#[test]
fn import_fixture_creates_correct_issue_count() {
    let dir = setup();
    let fixture = Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/sample-export.json");

    bmo(&dir)
        .args(["import", fixture.to_str().unwrap()])
        .assert()
        .success()
        .stdout(contains("3 issue(s)"))
        .stdout(contains("1 comment(s)"));
}

#[test]
fn import_fixture_titles_are_preserved() {
    let dir = setup();
    let fixture = Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/sample-export.json");

    bmo(&dir)
        .args(["import", fixture.to_str().unwrap()])
        .assert()
        .success();

    // issue list excludes done by default; filter by status to check each one
    let output = bmo(&dir)
        .args(["issue", "list", "--status", "done", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let done_titles: Vec<&str> = json["data"]
        .as_array()
        .unwrap()
        .iter()
        .map(|i| i["title"].as_str().unwrap())
        .collect();
    assert!(done_titles.contains(&"Fix login bug"));

    let output = bmo(&dir)
        .args(["issue", "list", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let titles: Vec<&str> = json["data"]
        .as_array()
        .unwrap()
        .iter()
        .map(|i| i["title"].as_str().unwrap())
        .collect();
    assert!(titles.contains(&"Add dark mode"));
    assert!(titles.contains(&"Write onboarding docs"));
}

#[test]
fn import_fixture_with_from_docket_flag() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");

    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();
}

// ── Export / import round-trip ────────────────────────────────────────────────

#[test]
fn export_import_roundtrip() {
    let dir = setup();

    // Create a couple of issues
    bmo(&dir)
        .args([
            "issue",
            "create",
            "--title",
            "Round-trip issue",
            "--priority",
            "high",
            "--kind",
            "bug",
        ])
        .assert()
        .success();

    bmo(&dir)
        .args([
            "issue",
            "create",
            "--title",
            "Second issue",
            "--priority",
            "low",
            "--kind",
            "task",
            "--assignee",
            "carol",
        ])
        .assert()
        .success();

    // Export
    let export_path = dir.path().join("export.json");
    bmo(&dir)
        .args(["export", "--output", export_path.to_str().unwrap()])
        .assert()
        .success();

    assert!(export_path.exists());

    let contents = std::fs::read_to_string(&export_path).unwrap();
    let bundle: serde_json::Value = serde_json::from_str(&contents).unwrap();
    assert_eq!(bundle["issues"].as_array().unwrap().len(), 2);
    assert_eq!(bundle["schema_version"], 1);

    // Import into a fresh project
    let dir2 = setup();
    bmo(&dir2)
        .args(["import", export_path.to_str().unwrap()])
        .assert()
        .success()
        .stdout(contains("2 issue(s)"));

    // Verify data integrity
    let output = bmo(&dir2)
        .args(["issue", "list", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let issues = json["data"].as_array().unwrap();
    assert_eq!(issues.len(), 2);

    let titles: Vec<&str> = issues
        .iter()
        .map(|i| i["title"].as_str().unwrap())
        .collect();
    assert!(titles.contains(&"Round-trip issue"));
    assert!(titles.contains(&"Second issue"));
}

#[test]
fn export_json_has_required_fields() {
    let dir = setup();
    bmo(&dir)
        .args(["issue", "create", "--title", "Schema check"])
        .assert()
        .success();

    let output = bmo(&dir).args(["export"]).output().unwrap();
    let bundle: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();

    assert!(bundle["schema_version"].is_number());
    assert!(bundle["exported_at"].is_string());
    assert!(bundle["project_name"].is_string());
    assert!(bundle["issues"].is_array());
    assert!(bundle["comments"].is_array());
    assert!(bundle["labels"].is_array());
    assert!(bundle["relations"].is_array());
}

// ── Docket migration tests ────────────────────────────────────────────────────

#[test]
fn from_docket_import_exits_zero() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();
}

#[test]
fn from_docket_import_correct_issue_count() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success()
        .stdout(contains("4 issue(s)"))
        .stdout(contains("2 comment(s)"));
}

#[test]
fn from_docket_import_issues_use_bmo_prefix() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();

    // All issues should be queryable; ids are sequential integers (BMO-1..BMO-4)
    let output = bmo(&dir)
        .args(["issue", "list", "--all", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let issues = json["data"].as_array().unwrap();
    assert_eq!(issues.len(), 4);
    // Verify each issue can be retrieved via BMO- prefixed ID
    for issue in issues {
        let numeric_id = issue["id"].as_i64().unwrap();
        let bmo_id = format!("BMO-{numeric_id}");
        bmo(&dir)
            .args(["issue", "show", &bmo_id])
            .assert()
            .success();
    }
}

#[test]
fn from_docket_import_titles_preserved() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();

    let output = bmo(&dir)
        .args(["issue", "list", "--all", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let titles: Vec<&str> = json["data"]
        .as_array()
        .unwrap()
        .iter()
        .map(|i| i["title"].as_str().unwrap())
        .collect();
    assert!(titles.contains(&"Project Alpha"));
    assert!(titles.contains(&"Set up database"));
    assert!(titles.contains(&"Build API endpoints"));
    assert!(titles.contains(&"Write integration tests"));
}

#[test]
fn from_docket_import_relations_imported() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();

    // BMO-2 should be the "Set up database" issue (second imported);
    // check its relations via issue show --json
    let output = bmo(&dir)
        .args(["issue", "show", "BMO-2", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    // The relations array should be non-empty
    let relations = json["data"]["relations"].as_array().unwrap();
    assert!(!relations.is_empty(), "Expected relations on BMO-2");
}

#[test]
fn from_docket_import_labels_on_issues() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();

    // BMO-2 ("Set up database") has labels: ["backend"] in the fixture
    let output = bmo(&dir)
        .args(["issue", "show", "BMO-2", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let labels = json["data"]["issue"]["labels"].as_array().unwrap();
    assert!(
        labels.iter().any(|l| l.as_str() == Some("backend")),
        "Expected 'backend' label on BMO-2, got: {labels:?}"
    );

    // BMO-3 ("Build API endpoints") has labels: ["backend", "api"] in the fixture
    let output = bmo(&dir)
        .args(["issue", "show", "BMO-3", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let labels = json["data"]["issue"]["labels"].as_array().unwrap();
    assert_eq!(
        labels.len(),
        2,
        "Expected 2 labels on BMO-3, got: {labels:?}"
    );
}

#[test]
fn from_docket_import_files_on_issues() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();

    // BMO-2 ("Set up database") has 2 files in the fixture
    let output = bmo(&dir)
        .args(["issue", "show", "BMO-2", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let files = json["data"]["issue"]["files"].as_array().unwrap();
    assert_eq!(files.len(), 2, "Expected 2 files on BMO-2, got: {files:?}");
    let file_paths: Vec<&str> = files.iter().map(|f| f.as_str().unwrap()).collect();
    assert!(
        file_paths.contains(&"migrations/001_initial.sql"),
        "Expected migrations/001_initial.sql in files"
    );
}

#[test]
fn from_docket_import_all_relation_types() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();

    // The fixture has 4 relations: 2x blocks, 1x depends-on, 1x relates-to.
    // We verify by checking each issue's relation list is populated:
    // BMO-2 has a "blocks" relation to BMO-3, and BMO-4 "depends-on" BMO-2.
    let output = bmo(&dir)
        .args(["issue", "show", "BMO-2", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let relations = json["data"]["relations"].as_array().unwrap();
    let kinds: Vec<&str> = relations
        .iter()
        .map(|r| r["kind"].as_str().unwrap_or(""))
        .collect();
    assert!(
        kinds.contains(&"blocks"),
        "Expected a 'blocks' relation on BMO-2, got: {kinds:?}"
    );

    // BMO-1 ("Project Alpha") has a "relates-to" relation to BMO-3
    let output = bmo(&dir)
        .args(["issue", "show", "BMO-1", "--json"])
        .output()
        .unwrap();
    let json: serde_json::Value = serde_json::from_slice(&output.stdout).unwrap();
    let relations = json["data"]["relations"].as_array().unwrap();
    let kinds: Vec<&str> = relations
        .iter()
        .map(|r| r["kind"].as_str().unwrap_or(""))
        .collect();
    assert!(
        kinds.contains(&"relates-to"),
        "Expected a 'relates-to' relation on BMO-1, got: {kinds:?}"
    );
}

#[test]
fn from_docket_import_no_dkt_ids_in_output() {
    let dir = setup();
    let fixture =
        Path::new(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/docket-export-sample.json");
    bmo(&dir)
        .args(["import", "--from-docket", fixture.to_str().unwrap()])
        .assert()
        .success();

    // JSON output of issue list must not contain any "DKT-" strings
    let output = bmo(&dir)
        .args(["issue", "list", "--all", "--json"])
        .output()
        .unwrap();
    let raw = String::from_utf8(output.stdout).unwrap();
    assert!(
        !raw.contains("DKT-"),
        "Found DKT- prefix in issue list output — IDs were not remapped to BMO-"
    );

    // issue show must also not expose DKT- strings in relation fields
    let output = bmo(&dir)
        .args(["issue", "show", "BMO-1", "--json"])
        .output()
        .unwrap();
    let raw = String::from_utf8(output.stdout).unwrap();
    assert!(
        !raw.contains("DKT-"),
        "Found DKT- prefix in issue show output — relation IDs were not remapped"
    );
}