diffy-imara 0.3.2

Tools for finding and manipulating differences between files
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
use super::*;

fn assert_merge(
    merge_options: Option<&MergeOptions>,
    original: &str,
    ours: &str,
    theirs: &str,
    expected: Result<&str, &str>,
    msg: &str,
) {
    let opts = match merge_options {
        None => &Default::default(),
        Some(opts) => opts,
    };
    let solution = opts.merge(original, ours, theirs);

    assert!(
        same_merge(expected, &solution),
        "{msg}\nexpected={expected:#?}\nactual={solution:#?}"
    );

    let expected_bytes = expected.map(str::as_bytes).map_err(str::as_bytes);
    let solution_bytes = opts.merge_bytes(original.as_bytes(), ours.as_bytes(), theirs.as_bytes());

    assert!(
        same_merge_bytes(expected_bytes, &solution_bytes),
        "{msg}\nexpected={expected_bytes:#?}\nactual={solution_bytes:#?}"
    );
}

fn same_merge(expected: Result<&str, &str>, actual: &Result<String, String>) -> bool {
    match (expected, actual) {
        (Ok(expected), Ok(actual)) => expected == actual,
        (Err(expected), Err(actual)) => expected == actual,
        (_, _) => false,
    }
}

fn same_merge_bytes(expected: Result<&[u8], &[u8]>, actual: &Result<Vec<u8>, Vec<u8>>) -> bool {
    match (expected, actual) {
        (Ok(expected), Ok(actual)) => expected == &actual[..],
        (Err(expected), Err(actual)) => expected == &actual[..],
        (_, _) => false,
    }
}

#[test]
fn test_merge() {
    let original = "\
carrots
garlic
onions
salmon
mushrooms
tomatoes
salt
";
    let a = "\
carrots
salmon
mushrooms
tomatoes
garlic
onions
salt
";
    let b = "\
carrots
salmon
garlic
onions
mushrooms
tomatoes
salt
";

    #[rustfmt::skip]
    assert_merge( None, original, original, original, Ok(original), "Equal case #1",);
    assert_merge(None, original, a, a, Ok(a), "Equal case #2");
    assert_merge(None, original, b, b, Ok(b), "Equal case #3");

    let expected = "\
carrots
<<<<<<< ours
salmon
||||||| original
garlic
onions
salmon
=======
salmon
garlic
onions
>>>>>>> theirs
mushrooms
tomatoes
garlic
onions
salt
";

    assert_merge(None, original, a, b, Err(expected), "Single Conflict case");

    let expected = "\
carrots
<<<<<<< ours
salmon
garlic
onions
||||||| original
garlic
onions
salmon
=======
salmon
>>>>>>> theirs
mushrooms
tomatoes
garlic
onions
salt
";

    assert_merge(
        None,
        original,
        b,
        a,
        Err(expected),
        "Reverse Single Conflict case",
    );
}

#[test]
fn test_merge_multiple_conflicts() {
    let original = "\
carrots
garlic
onions
salmon
tomatoes
salt
";
    let a = "\
carrots
salmon
tomatoes
garlic
onions
salt
";
    let b = "\
carrots
salmon
garlic
onions
tomatoes
salt
";
    let expected_myers = "\
carrots
<<<<<<< ours
salmon
||||||| original
garlic
onions
salmon
=======
salmon
garlic
onions
>>>>>>> theirs
tomatoes
garlic
onions
salt
";
    let opts_myers = MergeOptions {
        algorithm: Algorithm::Myers,
        ..Default::default()
    };
    assert_merge(
        Some(&opts_myers),
        original,
        a,
        b,
        Err(expected_myers),
        "Multiple Conflict case",
    );
    let expected_histogram = expected_myers;

    assert_merge(
        None,
        original,
        a,
        b,
        Err(expected_histogram),
        "Multiple Conflict case",
    );

    let expected_myers = "\
carrots
<<<<<<< ours
salmon
garlic
onions
||||||| original
garlic
onions
salmon
=======
salmon
>>>>>>> theirs
tomatoes
garlic
onions
salt
";
    assert_merge(
        Some(&opts_myers),
        original,
        b,
        a,
        Err(expected_myers),
        "Reverse Multiple Conflict case",
    );

    let expected_histogram = expected_myers;
    assert_merge(
        None,
        original,
        b,
        a,
        Err(expected_histogram),
        "Reverse Multiple Conflict case",
    );
}

#[test]
fn diffy_vs_git() {
    let original = "\
void Chunk_copy(Chunk *src, size_t src_start, Chunk *dst, size_t dst_start, size_t n)
{
    if (!Chunk_bounds_check(src, src_start, n)) return;
    if (!Chunk_bounds_check(dst, dst_start, n)) return;

    memcpy(dst->data + dst_start, src->data + src_start, n);
}

int Chunk_bounds_check(Chunk *chunk, size_t start, size_t n)
{
    if (chunk == NULL) return 0;

    return start <= chunk->length && n <= chunk->length - start;
}
";
    let a = "\
int Chunk_bounds_check(Chunk *chunk, size_t start, size_t n)
{
    if (chunk == NULL) return 0;

    return start <= chunk->length && n <= chunk->length - start;
}

void Chunk_copy(Chunk *src, size_t src_start, Chunk *dst, size_t dst_start, size_t n)
{
    if (!Chunk_bounds_check(src, src_start, n)) return;
    if (!Chunk_bounds_check(dst, dst_start, n)) return;

    memcpy(dst->data + dst_start, src->data + src_start, n);
}
";
    let b = "\
void Chunk_copy(Chunk *src, size_t src_start, Chunk *dst, size_t dst_start, size_t n)
{
    if (!Chunk_bounds_check(src, src_start, n)) return;
    if (!Chunk_bounds_check(dst, dst_start, n)) return;

    // copy the bytes
    memcpy(dst->data + dst_start, src->data + src_start, n);
}

int Chunk_bounds_check(Chunk *chunk, size_t start, size_t n)
{
    if (chunk == NULL) return 0;

    return start <= chunk->length && n <= chunk->length - start;
}
";

    let expected_myers = "\
int Chunk_bounds_check(Chunk *chunk, size_t start, size_t n)
{
    if (chunk == NULL) return 0;

<<<<<<< ours
    return start <= chunk->length && n <= chunk->length - start;
||||||| original
    memcpy(dst->data + dst_start, src->data + src_start, n);
=======
    // copy the bytes
    memcpy(dst->data + dst_start, src->data + src_start, n);
>>>>>>> theirs
}

void Chunk_copy(Chunk *src, size_t src_start, Chunk *dst, size_t dst_start, size_t n)
{
    if (!Chunk_bounds_check(src, src_start, n)) return;
    if (!Chunk_bounds_check(dst, dst_start, n)) return;

    memcpy(dst->data + dst_start, src->data + src_start, n);
}
";
    let opts_myers = MergeOptions {
        algorithm: Algorithm::Myers,
        ..Default::default()
    };
    assert_merge(
        Some(&opts_myers),
        original,
        a,
        b,
        Err(expected_myers),
        "Myers diffy merge",
    );

    let expected_histogram = "\
int Chunk_bounds_check(Chunk *chunk, size_t start, size_t n)
{
    if (chunk == NULL) return 0;

    return start <= chunk->length && n <= chunk->length - start;
}

void Chunk_copy(Chunk *src, size_t src_start, Chunk *dst, size_t dst_start, size_t n)
{
    if (!Chunk_bounds_check(src, src_start, n)) return;
    if (!Chunk_bounds_check(dst, dst_start, n)) return;

    // copy the bytes
    memcpy(dst->data + dst_start, src->data + src_start, n);
}
";

    assert_merge(
        None,
        original,
        a,
        b,
        Ok(expected_histogram),
        "Histogram diffy merge",
    );
}

#[test]
fn correct_range_is_used_for_both_case() {
    let base = r#"
class GithubCall(db.Model):

`url`: URL of request Example.`https://api.github.com`
"#;

    let theirs = r#"
class GithubCall(db.Model):

`repo`: String field. Github repository fields. Example: `amitu/python`
"#;

    let ours = r#"
class Call(models.Model):
`body`: String field. The payload of the webhook call from the github.

`repo`: String field. Github repository fields. Example: `amitu/python`
"#;

    let expected = r#"
class Call(models.Model):
`body`: String field. The payload of the webhook call from the github.

`repo`: String field. Github repository fields. Example: `amitu/python`
"#;

    assert_merge(
        None,
        base,
        ours,
        theirs,
        Ok(expected),
        "MergeRange::Both case",
    );
}

#[test]
fn delete_and_insert_conflict() {
    let base = r#"
{
    int a = 2;
}
"#;

    let ours = r#"
{
}
"#;

    let theirs = r#"
{
    int a = 2;
    int b = 3;
}
"#;

    let expected = r#"
{
<<<<<<< ours
||||||| original
    int a = 2;
=======
    int a = 2;
    int b = 3;
>>>>>>> theirs
}
"#;

    assert_merge(
        None,
        base,
        ours,
        theirs,
        Err(expected),
        "MergeRange (Ours::delete, Theirs::insert) conflict",
    );

    let expected = r#"
{
<<<<<<< ours
    int a = 2;
    int b = 3;
||||||| original
    int a = 2;
=======
>>>>>>> theirs
}
"#;

    assert_merge(
        None,
        base,
        theirs,
        ours,
        Err(expected),
        "MergeRange (Theirs::delete, Ours::insert) conflict",
    );
}

#[test]
fn one_line() {
    let base = "[1, 2]";
    let ours = "[1]";
    let theirs = "[2]";

    let expected = "\
<<<<<<< ours
[1]
||||||| original
[1, 2]
=======
[2]
>>>>>>> theirs";

    assert_merge(None, base, ours, theirs, Err(expected), "One-line");

    let expected = "\
<<<<<<< ours
[2]
||||||| original
[1, 2]
=======
[1]
>>>>>>> theirs";

    assert_merge(None, base, theirs, ours, Err(expected), "One-line reverse");
}

#[test]
fn no_newline_at_the_end() {
    // meanings of the used shortenings:
    // - wo              - without final newline
    // - w               - with final newline
    // - expected_w_wo_w - expected from base_w, left_wo, right_w
    let base_wo = "\
object Foo:
    def bar(input: String) = input";
    let base_w = "\
object Foo:
    def bar(input: String) = input
";

    let ours_wo = "\
object Foo:
    def bar(newname: String) = newname";
    let ours_w = "\
object Foo:
    def bar(newname: String) = newname
";

    let theirs_wo = "\
object Foo:
    def baz(input: String) = input";
    let theirs_w = "\
object Foo:
    def baz(input: String) = input
";

    let expected_wo_wo_wo = "\
object Foo:
<<<<<<< ours
    def bar(newname: String) = newname
||||||| original
    def bar(input: String) = input
=======
    def baz(input: String) = input
>>>>>>> theirs";

    assert_merge(
        None,
        base_wo,
        ours_wo,
        theirs_wo,
        Err(expected_wo_wo_wo),
        "without/without/without",
    );

    let expected_wo_w_wo = "\
object Foo:
<<<<<<< ours
    def bar(newname: String) = newname

||||||| original
    def bar(input: String) = input
=======
    def baz(input: String) = input
>>>>>>> theirs";

    assert_merge(
        None,
        base_wo,
        ours_w,
        theirs_wo,
        Err(expected_wo_w_wo),
        "without/with/without",
    );

    // wo_wo_w case should be symmetrical to wo_w_wo

    let expected_wo_w_w = "\
object Foo:
<<<<<<< ours
    def bar(newname: String) = newname

||||||| original
    def bar(input: String) = input
=======
    def baz(input: String) = input

>>>>>>> theirs";

    assert_merge(
        None,
        base_wo,
        ours_w,
        theirs_w,
        Err(expected_wo_w_w),
        "without/with/with",
    );

    let expected_w_wo_wo = "\
object Foo:
<<<<<<< ours
    def bar(newname: String) = newname
||||||| original
    def bar(input: String) = input

=======
    def baz(input: String) = input
>>>>>>> theirs";

    assert_merge(
        None,
        base_w,
        ours_wo,
        theirs_wo,
        Err(expected_w_wo_wo),
        "with/without/without",
    );

    let expected_w_w_wo = "\
object Foo:
<<<<<<< ours
    def bar(newname: String) = newname

||||||| original
    def bar(input: String) = input

=======
    def baz(input: String) = input
>>>>>>> theirs";

    assert_merge(
        None,
        base_w,
        ours_w,
        theirs_wo,
        Err(expected_w_w_wo),
        "with/with/without",
    );

    // w_wo_w should be symmetrical to w_w_wo

    let expected_w_w_w = "\
object Foo:
<<<<<<< ours
    def bar(newname: String) = newname
||||||| original
    def bar(input: String) = input
=======
    def baz(input: String) = input
>>>>>>> theirs
";

    assert_merge(
        None,
        base_w,
        ours_w,
        theirs_w,
        Err(expected_w_w_w),
        "with/with/with",
    );
}