@@ -18,7 +18,7 @@ use std::{
18
18
path:: { Path , PathBuf } ,
19
19
} ;
20
20
use unindent:: Unindent as _;
21
- use util:: { post_inc, RandomCharIter } ;
21
+ use util:: { path , post_inc, RandomCharIter } ;
22
22
23
23
#[ ctor:: ctor]
24
24
fn init_logger ( ) {
@@ -33,7 +33,7 @@ async fn test_diagnostics(cx: &mut TestAppContext) {
33
33
34
34
let fs = FakeFs :: new ( cx. executor ( ) ) ;
35
35
fs. insert_tree (
36
- "/test" ,
36
+ path ! ( "/test" ) ,
37
37
json ! ( {
38
38
"consts.rs" : "
39
39
const a: i32 = 'a';
@@ -59,7 +59,7 @@ async fn test_diagnostics(cx: &mut TestAppContext) {
59
59
. await ;
60
60
61
61
let language_server_id = LanguageServerId ( 0 ) ;
62
- let project = Project :: test ( fs. clone ( ) , [ "/test" . as_ref ( ) ] , cx) . await ;
62
+ let project = Project :: test ( fs. clone ( ) , [ path ! ( "/test" ) . as_ref ( ) ] , cx) . await ;
63
63
let lsp_store = project. read_with ( cx, |project, _| project. lsp_store ( ) ) ;
64
64
let window = cx. add_window ( |window, cx| Workspace :: test_new ( project. clone ( ) , window, cx) ) ;
65
65
let cx = & mut VisualTestContext :: from_window ( * window, cx) ;
@@ -70,7 +70,7 @@ async fn test_diagnostics(cx: &mut TestAppContext) {
70
70
lsp_store
71
71
. update_diagnostic_entries (
72
72
language_server_id,
73
- PathBuf :: from ( "/test/main.rs" ) ,
73
+ PathBuf :: from ( path ! ( "/test/main.rs" ) ) ,
74
74
None ,
75
75
vec ! [
76
76
DiagnosticEntry {
@@ -234,7 +234,7 @@ async fn test_diagnostics(cx: &mut TestAppContext) {
234
234
lsp_store
235
235
. update_diagnostic_entries (
236
236
language_server_id,
237
- PathBuf :: from ( "/test/consts.rs" ) ,
237
+ PathBuf :: from ( path ! ( "/test/consts.rs" ) ) ,
238
238
None ,
239
239
vec ! [ DiagnosticEntry {
240
240
range: Unclipped ( PointUtf16 :: new( 0 , 15 ) ) ..Unclipped ( PointUtf16 :: new( 0 , 15 ) ) ,
@@ -341,7 +341,7 @@ async fn test_diagnostics(cx: &mut TestAppContext) {
341
341
lsp_store
342
342
. update_diagnostic_entries (
343
343
language_server_id,
344
- PathBuf :: from ( "/test/consts.rs" ) ,
344
+ PathBuf :: from ( path ! ( "/test/consts.rs" ) ) ,
345
345
None ,
346
346
vec ! [
347
347
DiagnosticEntry {
@@ -464,7 +464,7 @@ async fn test_diagnostics_multiple_servers(cx: &mut TestAppContext) {
464
464
465
465
let fs = FakeFs :: new ( cx. executor ( ) ) ;
466
466
fs. insert_tree (
467
- "/test" ,
467
+ path ! ( "/test" ) ,
468
468
json ! ( {
469
469
"main.js" : "
470
470
a();
@@ -479,7 +479,7 @@ async fn test_diagnostics_multiple_servers(cx: &mut TestAppContext) {
479
479
480
480
let server_id_1 = LanguageServerId ( 100 ) ;
481
481
let server_id_2 = LanguageServerId ( 101 ) ;
482
- let project = Project :: test ( fs. clone ( ) , [ "/test" . as_ref ( ) ] , cx) . await ;
482
+ let project = Project :: test ( fs. clone ( ) , [ path ! ( "/test" ) . as_ref ( ) ] , cx) . await ;
483
483
let lsp_store = project. read_with ( cx, |project, _| project. lsp_store ( ) ) ;
484
484
let window = cx. add_window ( |window, cx| Workspace :: test_new ( project. clone ( ) , window, cx) ) ;
485
485
let cx = & mut VisualTestContext :: from_window ( * window, cx) ;
@@ -504,7 +504,7 @@ async fn test_diagnostics_multiple_servers(cx: &mut TestAppContext) {
504
504
lsp_store
505
505
. update_diagnostic_entries (
506
506
server_id_1,
507
- PathBuf :: from ( "/test/main.js" ) ,
507
+ PathBuf :: from ( path ! ( "/test/main.js" ) ) ,
508
508
None ,
509
509
vec ! [ DiagnosticEntry {
510
510
range: Unclipped ( PointUtf16 :: new( 0 , 0 ) ) ..Unclipped ( PointUtf16 :: new( 0 , 1 ) ) ,
@@ -557,7 +557,7 @@ async fn test_diagnostics_multiple_servers(cx: &mut TestAppContext) {
557
557
lsp_store
558
558
. update_diagnostic_entries (
559
559
server_id_2,
560
- PathBuf :: from ( "/test/main.js" ) ,
560
+ PathBuf :: from ( path ! ( "/test/main.js" ) ) ,
561
561
None ,
562
562
vec ! [ DiagnosticEntry {
563
563
range: Unclipped ( PointUtf16 :: new( 1 , 0 ) ) ..Unclipped ( PointUtf16 :: new( 1 , 1 ) ) ,
@@ -619,7 +619,7 @@ async fn test_diagnostics_multiple_servers(cx: &mut TestAppContext) {
619
619
lsp_store
620
620
. update_diagnostic_entries (
621
621
server_id_1,
622
- PathBuf :: from ( "/test/main.js" ) ,
622
+ PathBuf :: from ( path ! ( "/test/main.js" ) ) ,
623
623
None ,
624
624
vec ! [ DiagnosticEntry {
625
625
range: Unclipped ( PointUtf16 :: new( 2 , 0 ) ) ..Unclipped ( PointUtf16 :: new( 2 , 1 ) ) ,
@@ -638,7 +638,7 @@ async fn test_diagnostics_multiple_servers(cx: &mut TestAppContext) {
638
638
lsp_store
639
639
. update_diagnostic_entries (
640
640
server_id_2,
641
- PathBuf :: from ( "/test/main.rs" ) ,
641
+ PathBuf :: from ( path ! ( "/test/main.rs" ) ) ,
642
642
None ,
643
643
vec ! [ ] ,
644
644
cx,
@@ -689,7 +689,7 @@ async fn test_diagnostics_multiple_servers(cx: &mut TestAppContext) {
689
689
lsp_store
690
690
. update_diagnostic_entries (
691
691
server_id_2,
692
- PathBuf :: from ( "/test/main.js" ) ,
692
+ PathBuf :: from ( path ! ( "/test/main.js" ) ) ,
693
693
None ,
694
694
vec ! [ DiagnosticEntry {
695
695
range: Unclipped ( PointUtf16 :: new( 3 , 0 ) ) ..Unclipped ( PointUtf16 :: new( 3 , 1 ) ) ,
@@ -755,9 +755,9 @@ async fn test_random_diagnostics(cx: &mut TestAppContext, mut rng: StdRng) {
755
755
. unwrap_or ( 10 ) ;
756
756
757
757
let fs = FakeFs :: new ( cx. executor ( ) ) ;
758
- fs. insert_tree ( "/test" , json ! ( { } ) ) . await ;
758
+ fs. insert_tree ( path ! ( "/test" ) , json ! ( { } ) ) . await ;
759
759
760
- let project = Project :: test ( fs. clone ( ) , [ "/test" . as_ref ( ) ] , cx) . await ;
760
+ let project = Project :: test ( fs. clone ( ) , [ path ! ( "/test" ) . as_ref ( ) ] , cx) . await ;
761
761
let lsp_store = project. read_with ( cx, |project, _| project. lsp_store ( ) ) ;
762
762
let window = cx. add_window ( |window, cx| Workspace :: test_new ( project. clone ( ) , window, cx) ) ;
763
763
let cx = & mut VisualTestContext :: from_window ( * window, cx) ;
@@ -817,7 +817,7 @@ async fn test_random_diagnostics(cx: &mut TestAppContext, mut rng: StdRng) {
817
817
// insert a set of diagnostics for a new path
818
818
_ => {
819
819
let path: PathBuf =
820
- format ! ( "/test/{}.rs" , post_inc( & mut next_filename) ) . into ( ) ;
820
+ format ! ( path! ( "/test/{}.rs" ) , post_inc( & mut next_filename) ) . into ( ) ;
821
821
let len = rng. gen_range ( 128 ..256 ) ;
822
822
let content =
823
823
RandomCharIter :: new ( & mut rng) . take ( len) . collect :: < String > ( ) ;
@@ -891,7 +891,7 @@ async fn test_random_diagnostics(cx: &mut TestAppContext, mut rng: StdRng) {
891
891
for diagnostic in diagnostics {
892
892
let found_excerpt = reference_excerpts. iter ( ) . any ( |info| {
893
893
let row_range = info. range . context . start . row ..info. range . context . end . row ;
894
- info. path == path. strip_prefix ( "/test" ) . unwrap ( )
894
+ info. path == path. strip_prefix ( path ! ( "/test" ) ) . unwrap ( )
895
895
&& info. language_server == language_server_id
896
896
&& row_range. contains ( & diagnostic. range . start . 0 . row )
897
897
} ) ;
0 commit comments