aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_cargo_watch/src/conv/test.rs
blob: 6817245c2bde518855f9cc726dd42c927eb8470b (plain)
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
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
//! This module contains the large and verbose snapshot tests for the
//! conversions between `cargo check` json and LSP diagnostics.
use crate::*;

fn parse_diagnostic(val: &str) -> cargo_metadata::diagnostic::Diagnostic {
    serde_json::from_str::<cargo_metadata::diagnostic::Diagnostic>(val).unwrap()
}

#[test]
fn snap_rustc_incompatible_type_for_trait() {
    let diag = parse_diagnostic(
        r##"{
            "message": "method `next` has an incompatible type for trait",
            "code": {
                "code": "E0053",
                "explanation": "\nThe parameters of any trait method must match between a trait implementation\nand the trait definition.\n\nHere are a couple examples of this error:\n\n```compile_fail,E0053\ntrait Foo {\n    fn foo(x: u16);\n    fn bar(&self);\n}\n\nstruct Bar;\n\nimpl Foo for Bar {\n    // error, expected u16, found i16\n    fn foo(x: i16) { }\n\n    // error, types differ in mutability\n    fn bar(&mut self) { }\n}\n```\n"
            },
            "level": "error",
            "spans": [
                {
                    "file_name": "compiler/ty/list_iter.rs",
                    "byte_start": 1307,
                    "byte_end": 1350,
                    "line_start": 52,
                    "line_end": 52,
                    "column_start": 5,
                    "column_end": 48,
                    "is_primary": true,
                    "text": [
                        {
                            "text": "    fn next(&self) -> Option<&'list ty::Ref<M>> {",
                            "highlight_start": 5,
                            "highlight_end": 48
                        }
                    ],
                    "label": "types differ in mutability",
                    "suggested_replacement": null,
                    "suggestion_applicability": null,
                    "expansion": null
                }
            ],
            "children": [
                {
                    "message": "expected type `fn(&mut ty::list_iter::ListIterator<'list, M>) -> std::option::Option<&ty::Ref<M>>`\n   found type `fn(&ty::list_iter::ListIterator<'list, M>) -> std::option::Option<&'list ty::Ref<M>>`",
                    "code": null,
                    "level": "note",
                    "spans": [],
                    "children": [],
                    "rendered": null
                }
            ],
            "rendered": "error[E0053]: method `next` has an incompatible type for trait\n  --> compiler/ty/list_iter.rs:52:5\n   |\n52 |     fn next(&self) -> Option<&'list ty::Ref<M>> {\n   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ types differ in mutability\n   |\n   = note: expected type `fn(&mut ty::list_iter::ListIterator<'list, M>) -> std::option::Option<&ty::Ref<M>>`\n              found type `fn(&ty::list_iter::ListIterator<'list, M>) -> std::option::Option<&'list ty::Ref<M>>`\n\n"
        }
        "##,
    );

    let workspace_root = PathBuf::from("/test/");
    let diag = map_rust_diagnostic_to_lsp(&diag, &workspace_root).expect("couldn't map diagnostic");
    insta::assert_debug_snapshot!(diag);
}

#[test]
fn snap_rustc_unused_variable() {
    let diag = parse_diagnostic(
        r##"{
"message": "unused variable: `foo`",
"code": {
    "code": "unused_variables",
    "explanation": null
},
"level": "warning",
"spans": [
    {
        "file_name": "driver/subcommand/repl.rs",
        "byte_start": 9228,
        "byte_end": 9231,
        "line_start": 291,
        "line_end": 291,
        "column_start": 9,
        "column_end": 12,
        "is_primary": true,
        "text": [
            {
                "text": "    let foo = 42;",
                "highlight_start": 9,
                "highlight_end": 12
            }
        ],
        "label": null,
        "suggested_replacement": null,
        "suggestion_applicability": null,
        "expansion": null
    }
],
"children": [
    {
        "message": "#[warn(unused_variables)] on by default",
        "code": null,
        "level": "note",
        "spans": [],
        "children": [],
        "rendered": null
    },
    {
        "message": "consider prefixing with an underscore",
        "code": null,
        "level": "help",
        "spans": [
            {
                "file_name": "driver/subcommand/repl.rs",
                "byte_start": 9228,
                "byte_end": 9231,
                "line_start": 291,
                "line_end": 291,
                "column_start": 9,
                "column_end": 12,
                "is_primary": true,
                "text": [
                    {
                        "text": "    let foo = 42;",
                        "highlight_start": 9,
                        "highlight_end": 12
                    }
                ],
                "label": null,
                "suggested_replacement": "_foo",
                "suggestion_applicability": "MachineApplicable",
                "expansion": null
            }
        ],
        "children": [],
        "rendered": null
    }
],
"rendered": "warning: unused variable: `foo`\n   --> driver/subcommand/repl.rs:291:9\n    |\n291 |     let foo = 42;\n    |         ^^^ help: consider prefixing with an underscore: `_foo`\n    |\n    = note: #[warn(unused_variables)] on by default\n\n"
}"##,
    );

    let workspace_root = PathBuf::from("/test/");
    let diag = map_rust_diagnostic_to_lsp(&diag, &workspace_root).expect("couldn't map diagnostic");
    insta::assert_debug_snapshot!(diag);
}

#[test]
fn snap_rustc_wrong_number_of_parameters() {
    let diag = parse_diagnostic(
        r##"{
"message": "this function takes 2 parameters but 3 parameters were supplied",
"code": {
    "code": "E0061",
    "explanation": "\nThe number of arguments passed to a function must match the number of arguments\nspecified in the function signature.\n\nFor example, a function like:\n\n```\nfn f(a: u16, b: &str) {}\n```\n\nMust always be called with exactly two arguments, e.g., `f(2, \"test\")`.\n\nNote that Rust does not have a notion of optional function arguments or\nvariadic functions (except for its C-FFI).\n"
},
"level": "error",
"spans": [
    {
        "file_name": "compiler/ty/select.rs",
        "byte_start": 8787,
        "byte_end": 9241,
        "line_start": 219,
        "line_end": 231,
        "column_start": 5,
        "column_end": 6,
        "is_primary": false,
        "text": [
            {
                "text": "    pub fn add_evidence(",
                "highlight_start": 5,
                "highlight_end": 25
            },
            {
                "text": "        &mut self,",
                "highlight_start": 1,
                "highlight_end": 19
            },
            {
                "text": "        target_poly: &ty::Ref<ty::Poly>,",
                "highlight_start": 1,
                "highlight_end": 41
            },
            {
                "text": "        evidence_poly: &ty::Ref<ty::Poly>,",
                "highlight_start": 1,
                "highlight_end": 43
            },
            {
                "text": "    ) {",
                "highlight_start": 1,
                "highlight_end": 8
            },
            {
                "text": "        match target_poly {",
                "highlight_start": 1,
                "highlight_end": 28
            },
            {
                "text": "            ty::Ref::Var(tvar, _) => self.add_var_evidence(tvar, evidence_poly),",
                "highlight_start": 1,
                "highlight_end": 81
            },
            {
                "text": "            ty::Ref::Fixed(target_ty) => {",
                "highlight_start": 1,
                "highlight_end": 43
            },
            {
                "text": "                let evidence_ty = evidence_poly.resolve_to_ty();",
                "highlight_start": 1,
                "highlight_end": 65
            },
            {
                "text": "                self.add_evidence_ty(target_ty, evidence_poly, evidence_ty)",
                "highlight_start": 1,
                "highlight_end": 76
            },
            {
                "text": "            }",
                "highlight_start": 1,
                "highlight_end": 14
            },
            {
                "text": "        }",
                "highlight_start": 1,
                "highlight_end": 10
            },
            {
                "text": "    }",
                "highlight_start": 1,
                "highlight_end": 6
            }
        ],
        "label": "defined here",
        "suggested_replacement": null,
        "suggestion_applicability": null,
        "expansion": null
    },
    {
        "file_name": "compiler/ty/select.rs",
        "byte_start": 4045,
        "byte_end": 4057,
        "line_start": 104,
        "line_end": 104,
        "column_start": 18,
        "column_end": 30,
        "is_primary": true,
        "text": [
            {
                "text": "            self.add_evidence(target_fixed, evidence_fixed, false);",
                "highlight_start": 18,
                "highlight_end": 30
            }
        ],
        "label": "expected 2 parameters",
        "suggested_replacement": null,
        "suggestion_applicability": null,
        "expansion": null
    }
],
"children": [],
"rendered": "error[E0061]: this function takes 2 parameters but 3 parameters were supplied\n   --> compiler/ty/select.rs:104:18\n    |\n104 |               self.add_evidence(target_fixed, evidence_fixed, false);\n    |                    ^^^^^^^^^^^^ expected 2 parameters\n...\n219 | /     pub fn add_evidence(\n220 | |         &mut self,\n221 | |         target_poly: &ty::Ref<ty::Poly>,\n222 | |         evidence_poly: &ty::Ref<ty::Poly>,\n...   |\n230 | |         }\n231 | |     }\n    | |_____- defined here\n\n"
}"##,
    );

    let workspace_root = PathBuf::from("/test/");
    let diag = map_rust_diagnostic_to_lsp(&diag, &workspace_root).expect("couldn't map diagnostic");
    insta::assert_debug_snapshot!(diag);
}

#[test]
fn snap_clippy_pass_by_ref() {
    let diag = parse_diagnostic(
        r##"{
"message": "this argument is passed by reference, but would be more efficient if passed by value",
"code": {
    "code": "clippy::trivially_copy_pass_by_ref",
    "explanation": null
},
"level": "warning",
"spans": [
    {
        "file_name": "compiler/mir/tagset.rs",
        "byte_start": 941,
        "byte_end": 946,
        "line_start": 42,
        "line_end": 42,
        "column_start": 24,
        "column_end": 29,
        "is_primary": true,
        "text": [
            {
                "text": "    pub fn is_disjoint(&self, other: Self) -> bool {",
                "highlight_start": 24,
                "highlight_end": 29
            }
        ],
        "label": null,
        "suggested_replacement": null,
        "suggestion_applicability": null,
        "expansion": null
    }
],
"children": [
    {
        "message": "lint level defined here",
        "code": null,
        "level": "note",
        "spans": [
            {
                "file_name": "compiler/lib.rs",
                "byte_start": 8,
                "byte_end": 19,
                "line_start": 1,
                "line_end": 1,
                "column_start": 9,
                "column_end": 20,
                "is_primary": true,
                "text": [
                    {
                        "text": "#![warn(clippy::all)]",
                        "highlight_start": 9,
                        "highlight_end": 20
                    }
                ],
                "label": null,
                "suggested_replacement": null,
                "suggestion_applicability": null,
                "expansion": null
            }
        ],
        "children": [],
        "rendered": null
    },
    {
        "message": "#[warn(clippy::trivially_copy_pass_by_ref)] implied by #[warn(clippy::all)]",
        "code": null,
        "level": "note",
        "spans": [],
        "children": [],
        "rendered": null
    },
    {
        "message": "for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref",
        "code": null,
        "level": "help",
        "spans": [],
        "children": [],
        "rendered": null
    },
    {
        "message": "consider passing by value instead",
        "code": null,
        "level": "help",
        "spans": [
            {
                "file_name": "compiler/mir/tagset.rs",
                "byte_start": 941,
                "byte_end": 946,
                "line_start": 42,
                "line_end": 42,
                "column_start": 24,
                "column_end": 29,
                "is_primary": true,
                "text": [
                    {
                        "text": "    pub fn is_disjoint(&self, other: Self) -> bool {",
                        "highlight_start": 24,
                        "highlight_end": 29
                    }
                ],
                "label": null,
                "suggested_replacement": "self",
                "suggestion_applicability": "Unspecified",
                "expansion": null
            }
        ],
        "children": [],
        "rendered": null
    }
],
"rendered": "warning: this argument is passed by reference, but would be more efficient if passed by value\n  --> compiler/mir/tagset.rs:42:24\n   |\n42 |     pub fn is_disjoint(&self, other: Self) -> bool {\n   |                        ^^^^^ help: consider passing by value instead: `self`\n   |\nnote: lint level defined here\n  --> compiler/lib.rs:1:9\n   |\n1  | #![warn(clippy::all)]\n   |         ^^^^^^^^^^^\n   = note: #[warn(clippy::trivially_copy_pass_by_ref)] implied by #[warn(clippy::all)]\n   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trivially_copy_pass_by_ref\n\n"
}"##,
    );

    let workspace_root = PathBuf::from("/test/");
    let diag = map_rust_diagnostic_to_lsp(&diag, &workspace_root).expect("couldn't map diagnostic");
    insta::assert_debug_snapshot!(diag);
}

#[test]
fn snap_rustc_mismatched_type() {
    let diag = parse_diagnostic(
        r##"{
"message": "mismatched types",
"code": {
    "code": "E0308",
    "explanation": "\nThis error occurs when the compiler was unable to infer the concrete type of a\nvariable. It can occur for several cases, the most common of which is a\nmismatch in the expected type that the compiler inferred for a variable's\ninitializing expression, and the actual type explicitly assigned to the\nvariable.\n\nFor example:\n\n```compile_fail,E0308\nlet x: i32 = \"I am not a number!\";\n//     ~~~   ~~~~~~~~~~~~~~~~~~~~\n//      |             |\n//      |    initializing expression;\n//      |    compiler infers type `&str`\n//      |\n//    type `i32` assigned to variable `x`\n```\n"
},
"level": "error",
"spans": [
    {
        "file_name": "runtime/compiler_support.rs",
        "byte_start": 1589,
        "byte_end": 1594,
        "line_start": 48,
        "line_end": 48,
        "column_start": 65,
        "column_end": 70,
        "is_primary": true,
        "text": [
            {
                "text": "    let layout = alloc::Layout::from_size_align_unchecked(size, align);",
                "highlight_start": 65,
                "highlight_end": 70
            }
        ],
        "label": "expected usize, found u32",
        "suggested_replacement": null,
        "suggestion_applicability": null,
        "expansion": null
    }
],
"children": [],
"rendered": "error[E0308]: mismatched types\n  --> runtime/compiler_support.rs:48:65\n   |\n48 |     let layout = alloc::Layout::from_size_align_unchecked(size, align);\n   |                                                                 ^^^^^ expected usize, found u32\n\n"
}"##,
    );

    let workspace_root = PathBuf::from("/test/");
    let diag = map_rust_diagnostic_to_lsp(&diag, &workspace_root).expect("couldn't map diagnostic");
    insta::assert_debug_snapshot!(diag);
}

#[test]
fn snap_handles_macro_location() {
    let diag = parse_diagnostic(
        r##"{
"rendered": "error[E0277]: can't compare `{integer}` with `&str`\n --> src/main.rs:2:5\n  |\n2 |     assert_eq!(1, \"love\");\n  |     ^^^^^^^^^^^^^^^^^^^^^^ no implementation for `{integer} == &str`\n  |\n  = help: the trait `std::cmp::PartialEq<&str>` is not implemented for `{integer}`\n  = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)\n\n",
"children": [
    {
        "children": [],
        "code": null,
        "level": "help",
        "message": "the trait `std::cmp::PartialEq<&str>` is not implemented for `{integer}`",
        "rendered": null,
        "spans": []
    }
],
"code": {
    "code": "E0277",
    "explanation": "\nYou tried to use a type which doesn't implement some trait in a place which\nexpected that trait. Erroneous code example:\n\n```compile_fail,E0277\n// here we declare the Foo trait with a bar method\ntrait Foo {\n    fn bar(&self);\n}\n\n// we now declare a function which takes an object implementing the Foo trait\nfn some_func<T: Foo>(foo: T) {\n    foo.bar();\n}\n\nfn main() {\n    // we now call the method with the i32 type, which doesn't implement\n    // the Foo trait\n    some_func(5i32); // error: the trait bound `i32 : Foo` is not satisfied\n}\n```\n\nIn order to fix this error, verify that the type you're using does implement\nthe trait. Example:\n\n```\ntrait Foo {\n    fn bar(&self);\n}\n\nfn some_func<T: Foo>(foo: T) {\n    foo.bar(); // we can now use this method since i32 implements the\n               // Foo trait\n}\n\n// we implement the trait on the i32 type\nimpl Foo for i32 {\n    fn bar(&self) {}\n}\n\nfn main() {\n    some_func(5i32); // ok!\n}\n```\n\nOr in a generic context, an erroneous code example would look like:\n\n```compile_fail,E0277\nfn some_func<T>(foo: T) {\n    println!(\"{:?}\", foo); // error: the trait `core::fmt::Debug` is not\n                           //        implemented for the type `T`\n}\n\nfn main() {\n    // We now call the method with the i32 type,\n    // which *does* implement the Debug trait.\n    some_func(5i32);\n}\n```\n\nNote that the error here is in the definition of the generic function: Although\nwe only call it with a parameter that does implement `Debug`, the compiler\nstill rejects the function: It must work with all possible input types. In\norder to make this example compile, we need to restrict the generic type we're\naccepting:\n\n```\nuse std::fmt;\n\n// Restrict the input type to types that implement Debug.\nfn some_func<T: fmt::Debug>(foo: T) {\n    println!(\"{:?}\", foo);\n}\n\nfn main() {\n    // Calling the method is still fine, as i32 implements Debug.\n    some_func(5i32);\n\n    // This would fail to compile now:\n    // struct WithoutDebug;\n    // some_func(WithoutDebug);\n}\n```\n\nRust only looks at the signature of the called function, as such it must\nalready specify all requirements that will be used for every type parameter.\n"
},
"level": "error",
"message": "can't compare `{integer}` with `&str`",
"spans": [
    {
        "byte_end": 155,
        "byte_start": 153,
        "column_end": 33,
        "column_start": 31,
        "expansion": {
            "def_site_span": {
                "byte_end": 940,
                "byte_start": 0,
                "column_end": 6,
                "column_start": 1,
                "expansion": null,
                "file_name": "<::core::macros::assert_eq macros>",
                "is_primary": false,
                "label": null,
                "line_end": 36,
                "line_start": 1,
                "suggested_replacement": null,
                "suggestion_applicability": null,
                "text": [
                    {
                        "highlight_end": 35,
                        "highlight_start": 1,
                        "text": "($ left : expr, $ right : expr) =>"
                    },
                    {
                        "highlight_end": 3,
                        "highlight_start": 1,
                        "text": "({"
                    },
                    {
                        "highlight_end": 33,
                        "highlight_start": 1,
                        "text": "     match (& $ left, & $ right)"
                    },
                    {
                        "highlight_end": 7,
                        "highlight_start": 1,
                        "text": "     {"
                    },
                    {
                        "highlight_end": 34,
                        "highlight_start": 1,
                        "text": "         (left_val, right_val) =>"
                    },
                    {
                        "highlight_end": 11,
                        "highlight_start": 1,
                        "text": "         {"
                    },
                    {
                        "highlight_end": 46,
                        "highlight_start": 1,
                        "text": "             if ! (* left_val == * right_val)"
                    },
                    {
                        "highlight_end": 15,
                        "highlight_start": 1,
                        "text": "             {"
                    },
                    {
                        "highlight_end": 25,
                        "highlight_start": 1,
                        "text": "                 panic !"
                    },
                    {
                        "highlight_end": 57,
                        "highlight_start": 1,
                        "text": "                 (r#\"assertion failed: `(left == right)`"
                    },
                    {
                        "highlight_end": 16,
                        "highlight_start": 1,
                        "text": "  left: `{:?}`,"
                    },
                    {
                        "highlight_end": 18,
                        "highlight_start": 1,
                        "text": " right: `{:?}`\"#,"
                    },
                    {
                        "highlight_end": 47,
                        "highlight_start": 1,
                        "text": "                  & * left_val, & * right_val)"
                    },
                    {
                        "highlight_end": 15,
                        "highlight_start": 1,
                        "text": "             }"
                    },
                    {
                        "highlight_end": 11,
                        "highlight_start": 1,
                        "text": "         }"
                    },
                    {
                        "highlight_end": 7,
                        "highlight_start": 1,
                        "text": "     }"
                    },
                    {
                        "highlight_end": 42,
                        "highlight_start": 1,
                        "text": " }) ; ($ left : expr, $ right : expr,) =>"
                    },
                    {
                        "highlight_end": 49,
                        "highlight_start": 1,
                        "text": "({ $ crate :: assert_eq ! ($ left, $ right) }) ;"
                    },
                    {
                        "highlight_end": 53,
                        "highlight_start": 1,
                        "text": "($ left : expr, $ right : expr, $ ($ arg : tt) +) =>"
                    },
                    {
                        "highlight_end": 3,
                        "highlight_start": 1,
                        "text": "({"
                    },
                    {
                        "highlight_end": 37,
                        "highlight_start": 1,
                        "text": "     match (& ($ left), & ($ right))"
                    },
                    {
                        "highlight_end": 7,
                        "highlight_start": 1,
                        "text": "     {"
                    },
                    {
                        "highlight_end": 34,
                        "highlight_start": 1,
                        "text": "         (left_val, right_val) =>"
                    },
                    {
                        "highlight_end": 11,
                        "highlight_start": 1,
                        "text": "         {"
                    },
                    {
                        "highlight_end": 46,
                        "highlight_start": 1,
                        "text": "             if ! (* left_val == * right_val)"
                    },
                    {
                        "highlight_end": 15,
                        "highlight_start": 1,
                        "text": "             {"
                    },
                    {
                        "highlight_end": 25,
                        "highlight_start": 1,
                        "text": "                 panic !"
                    },
                    {
                        "highlight_end": 57,
                        "highlight_start": 1,
                        "text": "                 (r#\"assertion failed: `(left == right)`"
                    },
                    {
                        "highlight_end": 16,
                        "highlight_start": 1,
                        "text": "  left: `{:?}`,"
                    },
                    {
                        "highlight_end": 22,
                        "highlight_start": 1,
                        "text": " right: `{:?}`: {}\"#,"
                    },
                    {
                        "highlight_end": 72,
                        "highlight_start": 1,
                        "text": "                  & * left_val, & * right_val, $ crate :: format_args !"
                    },
                    {
                        "highlight_end": 33,
                        "highlight_start": 1,
                        "text": "                  ($ ($ arg) +))"
                    },
                    {
                        "highlight_end": 15,
                        "highlight_start": 1,
                        "text": "             }"
                    },
                    {
                        "highlight_end": 11,
                        "highlight_start": 1,
                        "text": "         }"
                    },
                    {
                        "highlight_end": 7,
                        "highlight_start": 1,
                        "text": "     }"
                    },
                    {
                        "highlight_end": 6,
                        "highlight_start": 1,
                        "text": " }) ;"
                    }
                ]
            },
            "macro_decl_name": "assert_eq!",
            "span": {
                "byte_end": 38,
                "byte_start": 16,
                "column_end": 27,
                "column_start": 5,
                "expansion": null,
                "file_name": "src/main.rs",
                "is_primary": false,
                "label": null,
                "line_end": 2,
                "line_start": 2,
                "suggested_replacement": null,
                "suggestion_applicability": null,
                "text": [
                    {
                        "highlight_end": 27,
                        "highlight_start": 5,
                        "text": "    assert_eq!(1, \"love\");"
                    }
                ]
            }
        },
        "file_name": "<::core::macros::assert_eq macros>",
        "is_primary": true,
        "label": "no implementation for `{integer} == &str`",
        "line_end": 7,
        "line_start": 7,
        "suggested_replacement": null,
        "suggestion_applicability": null,
        "text": [
            {
                "highlight_end": 33,
                "highlight_start": 31,
                "text": "             if ! (* left_val == * right_val)"
            }
        ]
    }
]
}"##,
    );

    let workspace_root = PathBuf::from("/test/");
    let diag = map_rust_diagnostic_to_lsp(&diag, &workspace_root).expect("couldn't map diagnostic");
    insta::assert_debug_snapshot!(diag);
}