@@ -7,7 +7,8 @@ open CSharpLanguageServer.Tests.Tooling
7
7
8
8
[<TestCase>]
9
9
let testReferenceWorks () =
10
- use client = setupServerClient defaultClientProfile " TestData/testReferenceWorks"
10
+ use client = setupServerClient defaultClientProfile
11
+ " TestData/testReferenceWorks"
11
12
client.StartAndWaitForSolutionLoad()
12
13
13
14
use classFile = client.Open( " Project/Class.cs" )
@@ -23,7 +24,9 @@ let testReferenceWorks() =
23
24
Context = { IncludeDeclaration = false }
24
25
}
25
26
26
- let locations0 : Location [] option = classFile.Request( " textDocument/references" , referenceParams0)
27
+ let locations0 : Location [] option =
28
+ classFile.Request( " textDocument/references" , referenceParams0)
29
+
27
30
Assert.IsTrue( locations0.IsNone)
28
31
29
32
//
@@ -37,7 +40,8 @@ let testReferenceWorks() =
37
40
Context = { IncludeDeclaration = false }
38
41
}
39
42
40
- let locations1 : Location [] option = classFile.Request( " textDocument/references" , referenceParams1)
43
+ let locations1 : Location [] option =
44
+ classFile.Request( " textDocument/references" , referenceParams1)
41
45
42
46
let expectedLocations1 : Location array =
43
47
[|
@@ -63,7 +67,8 @@ let testReferenceWorks() =
63
67
Context = { IncludeDeclaration = true }
64
68
}
65
69
66
- let locations2 : Location [] option = classFile.Request( " textDocument/references" , referenceParams2)
70
+ let locations2 : Location [] option =
71
+ classFile.Request( " textDocument/references" , referenceParams2)
67
72
68
73
let expectedLocations2 : Location array =
69
74
[|
@@ -83,3 +88,95 @@ let testReferenceWorks() =
83
88
|]
84
89
85
90
Assert.AreEqual( expectedLocations2, locations2.Value)
91
+
92
+
93
+ [<TestCase>]
94
+ let testReferenceWorksToAspNetRazorPageReferencedValue () =
95
+ use client = setupServerClient defaultClientProfile
96
+ " TestData/testReferenceWorksToAspNetRazorPageReferencedValue"
97
+ client.StartAndWaitForSolutionLoad()
98
+
99
+ use testIndexViewModelCsFile = client.Open( " Project/Models/Test/IndexViewModel.cs" )
100
+
101
+ let referenceParams0 : ReferenceParams =
102
+ { TextDocument = { Uri = testIndexViewModelCsFile.Uri }
103
+ Position = { Line = 3 u; Character = 20 u }
104
+ WorkDoneToken = None
105
+ PartialResultToken = None
106
+ Context = { IncludeDeclaration = false }
107
+ }
108
+
109
+ let locations0 : Location [] option =
110
+ testIndexViewModelCsFile.Request( " textDocument/references" , referenceParams0)
111
+
112
+ Assert.IsTrue( locations0.IsSome)
113
+ Assert.AreEqual( 2 , locations0.Value.Length)
114
+
115
+ use testControllerCsFile = client.Open( " Project/Controllers/TestController.cs" )
116
+ use viewsTestIndexCshtmlFile = client.Open( " Project/Views/Test/Index.cshtml" )
117
+
118
+ let expectedLocations0 : Location array =
119
+ [|
120
+ { Uri = testControllerCsFile.Uri
121
+ Range = { Start = { Line = 11 u; Character = 12 u }
122
+ End = { Line = 11 u; Character = 18 u } }
123
+ }
124
+
125
+ { Uri = viewsTestIndexCshtmlFile.Uri
126
+ Range = { Start = { Line = 1 u; Character = 7 u }
127
+ End = { Line = 1 u; Character = 13 u } }
128
+ }
129
+ |]
130
+
131
+ Assert.AreEqual( expectedLocations0, locations0.Value)
132
+
133
+ //
134
+ // do same but with IncludeDeclaration=true
135
+ //
136
+ let referenceParams1 : ReferenceParams =
137
+ { TextDocument = { Uri = testIndexViewModelCsFile.Uri }
138
+ Position = { Line = 3 u; Character = 20 u }
139
+ WorkDoneToken = None
140
+ PartialResultToken = None
141
+ Context = { IncludeDeclaration = true }
142
+ }
143
+
144
+ let locations1 : Location [] option =
145
+ testIndexViewModelCsFile.Request( " textDocument/references" , referenceParams1)
146
+
147
+ Assert.IsTrue( locations1.IsSome)
148
+ Assert.AreEqual( 5 , locations1.Value.Length)
149
+
150
+ let expectedLocations1 : Location array =
151
+ [|
152
+ { Uri = viewsTestIndexCshtmlFile.Uri
153
+ Range = { Start = { Line = 1 u; Character = 7 u }
154
+ End = { Line = 1 u; Character = 13 u } }
155
+ }
156
+
157
+ { Uri = testIndexViewModelCsFile.Uri
158
+ Range = { Start = { Line = 3 u; Character = 19 u }
159
+ End = { Line = 3 u; Character = 25 u } }
160
+ }
161
+
162
+ { Uri = testIndexViewModelCsFile.Uri
163
+ Range = { Start = { Line = 3 u; Character = 28 u }
164
+ End = { Line = 3 u; Character = 31 u } }
165
+ }
166
+
167
+ { Uri = testIndexViewModelCsFile.Uri
168
+ Range = { Start = { Line = 3 u; Character = 33 u }
169
+ End = { Line = 3 u; Character = 36 u } }
170
+ }
171
+
172
+ { Uri = testControllerCsFile.Uri
173
+ Range = { Start = { Line = 11 u; Character = 12 u }
174
+ End = { Line = 11 u; Character = 18 u } }
175
+ }
176
+ |]
177
+
178
+ let sortedLocations1 =
179
+ locations1.Value
180
+ |> Array.sortBy ( fun f -> ( f.Range.Start.Line, f.Range.Start.Character))
181
+
182
+ Assert.AreEqual( expectedLocations1, sortedLocations1)
0 commit comments