15
15
16
16
namespace Microsoft . Dnx . DesignTimeHost . FunctionalTests
17
17
{
18
- [ Collection ( nameof ( DthFunctionalTestCollection ) ) ]
19
18
public class DthStartupTests : DnxSdkFunctionalTestBase
20
19
{
21
- private readonly DthFunctionalTestFixture _fixture ;
22
-
23
- public DthStartupTests ( DthFunctionalTestFixture fixture )
24
- {
25
- _fixture = fixture ;
26
- }
27
-
28
20
public static IEnumerable < object [ ] > RuntimeComponentsWithBothVersions
29
21
{
30
22
get
@@ -90,19 +82,21 @@ public static IEnumerable<object[]> UnresolvedDependencyTestData
90
82
[ MemberData ( nameof ( DnxSdks ) ) ]
91
83
public void DthStartup_GetProjectInformation ( DnxSdk sdk )
92
84
{
93
- var projectName = "EmptyConsoleApp" ;
94
- var testProject = _fixture . GetTestProjectPath ( projectName ) ;
95
-
96
85
using ( var server = DthTestServer . Create ( sdk ) )
97
86
using ( var client = new DthTestClient ( server ) )
98
87
{
99
- client . Initialize ( testProject ) ;
88
+ var solution = TestUtils . GetSolution < DthStartupTests > ( sdk , "DthTestProjects" ) ;
89
+ var project = solution . GetProject ( "EmptyConsoleApp" ) ;
90
+
91
+ sdk . Dnu . Restore ( project ) . EnsureSuccess ( ) ;
92
+
93
+ client . Initialize ( project . ProjectDirectory ) ;
100
94
101
95
var projectInformation = client . DrainAllMessages ( )
102
96
. RetrieveSingleMessage ( "ProjectInformation" )
103
97
. EnsureSource ( server , client )
104
98
. RetrievePayloadAs < JObject > ( )
105
- . AssertProperty ( "Name" , projectName ) ;
99
+ . AssertProperty ( "Name" , project . Name ) ;
106
100
107
101
projectInformation . RetrievePropertyAs < JArray > ( "Configurations" )
108
102
. AssertJArrayCount ( 2 )
@@ -122,9 +116,6 @@ public void DthStartup_GetProjectInformation(DnxSdk sdk)
122
116
[ MemberData ( nameof ( ProtocolNegotiationTestData ) ) ]
123
117
public void DthStartup_ProtocolNegotiation ( DnxSdk sdk , int requestVersion , int expectVersion )
124
118
{
125
- var projectName = "EmptyConsoleApp" ;
126
- var testProject = _fixture . GetTestProjectPath ( projectName ) ;
127
-
128
119
using ( var server = DthTestServer . Create ( sdk ) )
129
120
using ( var client = server . CreateClient ( ) )
130
121
{
@@ -141,9 +132,6 @@ public void DthStartup_ProtocolNegotiation(DnxSdk sdk, int requestVersion, int e
141
132
[ MemberData ( nameof ( DnxSdks ) ) ]
142
133
public void DthStartup_ProtocolNegotiation_ZeroIsNoAllowed ( DnxSdk sdk )
143
134
{
144
- var projectName = "EmptyConsoleApp" ;
145
- var testProject = _fixture . GetTestProjectPath ( projectName ) ;
146
-
147
135
using ( var server = DthTestServer . Create ( sdk ) )
148
136
using ( var client = server . CreateClient ( ) )
149
137
{
@@ -160,15 +148,17 @@ public void DthStartup_ProtocolNegotiation_ZeroIsNoAllowed(DnxSdk sdk)
160
148
[ MemberData ( nameof ( RuntimeComponentsWithBothVersions ) ) ]
161
149
public void DthCompilation_GetDiagnostics_OnEmptyConsoleApp ( DnxSdk sdk , int protocolVersion )
162
150
{
163
- var projectName = "EmptyConsoleApp" ;
164
- var testProject = _fixture . GetTestProjectPath ( projectName ) ;
165
-
166
151
using ( var server = DthTestServer . Create ( sdk ) )
167
152
using ( var client = server . CreateClient ( ) )
168
153
{
154
+ var solution = TestUtils . GetSolution < DthStartupTests > ( sdk , "DthTestProjects" ) ;
155
+ var project = solution . GetProject ( "EmptyConsoleApp" ) ;
156
+
157
+ sdk . Dnu . Restore ( project ) . EnsureSuccess ( ) ;
158
+
169
159
// Drain the inital messages
170
- client . Initialize ( testProject , protocolVersion ) ;
171
- client . SendPayLoad ( testProject , "GetDiagnostics" ) ;
160
+ client . Initialize ( project . ProjectDirectory , protocolVersion ) ;
161
+ client . SendPayLoad ( project , "GetDiagnostics" ) ;
172
162
173
163
var diagnosticsGroup = client . DrainTillFirst ( "AllDiagnostics" )
174
164
. EnsureSource ( server , client )
@@ -188,27 +178,28 @@ public void DthCompilation_GetDiagnostics_OnEmptyConsoleApp(DnxSdk sdk, int prot
188
178
[ MemberData ( nameof ( RuntimeComponentsWithBothVersions ) ) ]
189
179
public void DthCompilation_RestoreComplete_OnEmptyLibrary ( DnxSdk sdk , int protocolVersion )
190
180
{
191
- var projectName = "EmptyLibrary" ;
192
-
193
- string testProject ;
194
- using ( _fixture . CreateDisposableTestProject ( projectName , sdk , out testProject ) )
195
181
using ( var server = DthTestServer . Create ( sdk ) )
196
182
using ( var client = server . CreateClient ( ) )
197
183
{
184
+ var solution = TestUtils . GetSolution < DthStartupTests > ( sdk , "DthTestProjects" ) ;
185
+ var project = solution . GetProject ( "EmptyLibrary" ) ;
186
+
187
+ sdk . Dnu . Restore ( project ) . EnsureSuccess ( ) ;
188
+
198
189
// Drain the inital messages
199
- client . Initialize ( testProject , protocolVersion ) ;
190
+ client . Initialize ( project . ProjectDirectory , protocolVersion ) ;
200
191
201
192
client . DrainTillFirst ( "Dependencies" )
202
193
. EnsureSource ( server , client )
203
194
. EnsureNotContainDependency ( "System.Console" ) ;
204
195
205
- File . Copy ( Path . Combine ( testProject , "project-update.json" ) ,
206
- Path . Combine ( testProject , "project.json" ) ,
196
+ File . Copy ( Path . Combine ( project . ProjectDirectory , "project-update.json" ) ,
197
+ Path . Combine ( project . ProjectDirectory , "project.json" ) ,
207
198
overwrite : true ) ;
208
199
209
- sdk . Dnu . Restore ( testProject ) . EnsureSuccess ( ) ;
200
+ sdk . Dnu . Restore ( project ) . EnsureSuccess ( ) ;
210
201
211
- client . SendPayLoad ( testProject , "RestoreComplete" ) ;
202
+ client . SendPayLoad ( project , "RestoreComplete" ) ;
212
203
213
204
client . DrainTillFirst ( "Dependencies" )
214
205
. EnsureSource ( server , client )
@@ -221,28 +212,32 @@ public void DthCompilation_RestoreComplete_OnEmptyLibrary(DnxSdk sdk, int protoc
221
212
public void DthCompilation_Initialize_UnresolvedDependency ( DnxSdk sdk , int protocolVersion , string referenceType , string testProjectName ,
222
213
string expectedUnresolvedDependency , string expectedUnresolvedType )
223
214
{
224
- var testProject = _fixture . GetTestProjectPath ( testProjectName ) ;
225
-
226
215
using ( var server = DthTestServer . Create ( sdk ) )
227
216
using ( var client = server . CreateClient ( ) )
228
217
{
229
- client . Initialize ( testProject , protocolVersion ) ;
218
+ var solution = TestUtils . GetSolution < DthStartupTests > ( sdk , "DthTestProjects" ) ;
219
+ var project = solution . GetProject ( testProjectName ) ;
220
+
221
+ sdk . Dnu . Restore ( project ) ;
222
+
223
+ client . Initialize ( project . ProjectDirectory , protocolVersion ) ;
230
224
231
225
var messages = client . DrainAllMessages ( ) ;
232
226
233
227
var unresolveDependency = messages . RetrieveSingleMessage ( "Dependencies" )
234
228
. EnsureSource ( server , client )
235
229
. RetrieveDependency ( expectedUnresolvedDependency ) ;
230
+
236
231
unresolveDependency . AssertProperty ( "Name" , expectedUnresolvedDependency )
237
232
. AssertProperty ( "DisplayName" , expectedUnresolvedDependency )
238
233
. AssertProperty ( "Resolved" , false )
239
234
. AssertProperty ( "Type" , expectedUnresolvedType ) ;
240
235
241
236
if ( expectedUnresolvedType == "Project" )
242
237
{
243
- unresolveDependency . AssertProperty (
244
- "Path" ,
245
- Path . Combine ( Path . GetDirectoryName ( testProject ) , expectedUnresolvedDependency , Project . ProjectFileName ) ) ;
238
+ unresolveDependency . AssertProperty ( "Path" , Path . Combine ( Path . GetDirectoryName ( project . ProjectDirectory ) ,
239
+ expectedUnresolvedDependency ,
240
+ Project . ProjectFileName ) ) ;
246
241
}
247
242
else
248
243
{
@@ -254,7 +249,9 @@ public void DthCompilation_Initialize_UnresolvedDependency(DnxSdk sdk, int proto
254
249
255
250
if ( referenceType == "Project" )
256
251
{
257
- var expectedUnresolvedProjectPath = Path . Combine ( Path . GetDirectoryName ( testProject ) , expectedUnresolvedDependency , Project . ProjectFileName ) ;
252
+ var expectedUnresolvedProjectPath = Path . Combine ( Path . GetDirectoryName ( project . ProjectDirectory ) ,
253
+ expectedUnresolvedDependency ,
254
+ Project . ProjectFileName ) ;
258
255
259
256
referencesMessage . RetrievePayloadAs < JObject > ( )
260
257
. RetrievePropertyAs < JArray > ( "ProjectReferences" )
@@ -277,25 +274,30 @@ public void DthCompilation_Initialize_UnresolvedDependency(DnxSdk sdk, int proto
277
274
[ MemberData ( nameof ( DnxSdks ) ) ]
278
275
public void DthNegative_BrokenProjectPathInLockFile_V1 ( DnxSdk sdk )
279
276
{
280
- var testProject = _fixture . GetTestProjectPath ( "BrokenProjectPathSample" ) ;
277
+ var projectName = "BrokenProjectPathSample" ;
278
+ var solution = TestUtils . GetSolution < DthStartupTests > ( sdk , "DthTestProjects" ) ;
279
+ var project = solution . GetProject ( projectName ) ;
280
+
281
+ sdk . Dnu . Restore ( project ) . EnsureSuccess ( ) ;
281
282
282
283
using ( var disposableDir = new DisposableDir ( ) )
283
284
using ( var server = DthTestServer . Create ( sdk ) )
284
285
using ( var client = server . CreateClient ( ) )
285
286
{
286
- // copy the project to difference location so that the project path in its lock file is invalid
287
- var targetPath = Path . Combine ( disposableDir , "BrokenProjectPathSample" ) ;
288
- Testing . TestUtils . CopyFolder ( testProject , targetPath ) ;
287
+ // After restore the project is copied to another place so that
288
+ // the relative path in project lock file is invalid.
289
+ var movedProjectPath = Path . Combine ( disposableDir , projectName ) ;
290
+ TestUtils . CopyFolder ( project . ProjectDirectory , movedProjectPath ) ;
289
291
290
- client . Initialize ( targetPath , protocolVersion : 1 ) ;
292
+ client . Initialize ( movedProjectPath , protocolVersion : 1 ) ;
291
293
var messages = client . DrainAllMessages ( )
292
294
. AssertDoesNotContain ( "Error" ) ;
293
295
294
296
var error = messages . RetrieveSingleMessage ( "DependencyDiagnostics" )
295
297
. RetrieveDependencyDiagnosticsCollection ( )
296
298
. RetrieveDependencyDiagnosticsErrorAt < JValue > ( 0 ) ;
297
299
298
- Assert . Contains ( "error NU1001: The dependency EmptyLibrary could not be resolved. " , error . Value < string > ( ) ) ;
300
+ Assert . Contains ( "error NU1002 " , error . Value < string > ( ) ) ;
299
301
300
302
messages . RetrieveSingleMessage ( "Dependencies" )
301
303
. RetrieveDependency ( "EmptyLibrary" )
@@ -308,24 +310,29 @@ public void DthNegative_BrokenProjectPathInLockFile_V1(DnxSdk sdk)
308
310
[ MemberData ( nameof ( DnxSdks ) ) ]
309
311
public void DthNegative_BrokenProjectPathInLockFile_V2 ( DnxSdk sdk )
310
312
{
311
- var testProject = _fixture . GetTestProjectPath ( "BrokenProjectPathSample" ) ;
313
+ var projectName = "BrokenProjectPathSample" ;
314
+ var solution = TestUtils . GetSolution < DthStartupTests > ( sdk , "DthTestProjects" ) ;
315
+ var project = solution . GetProject ( projectName ) ;
316
+
317
+ sdk . Dnu . Restore ( project ) . EnsureSuccess ( ) ;
312
318
313
319
using ( var disposableDir = new DisposableDir ( ) )
314
320
using ( var server = DthTestServer . Create ( sdk ) )
315
321
using ( var client = server . CreateClient ( ) )
316
322
{
317
- // copy the project to difference location so that the project path in its lock file is invalid
318
- var targetPath = Path . Combine ( disposableDir , "BrokenProjectPathSample" ) ;
319
- Testing . TestUtils . CopyFolder ( testProject , targetPath ) ;
323
+ // After restore the project is copied to another place so that
324
+ // the relative path in project lock file is invalid.
325
+ var movedProjectPath = Path . Combine ( disposableDir , projectName ) ;
326
+ TestUtils . CopyFolder ( project . ProjectDirectory , movedProjectPath ) ;
320
327
321
- client . Initialize ( targetPath , protocolVersion : 2 ) ;
328
+ client . Initialize ( movedProjectPath , protocolVersion : 2 ) ;
322
329
var messages = client . DrainAllMessages ( )
323
330
. AssertDoesNotContain ( "Error" ) ;
324
331
325
332
messages . RetrieveSingleMessage ( "DependencyDiagnostics" )
326
333
. RetrieveDependencyDiagnosticsCollection ( )
327
334
. RetrieveDependencyDiagnosticsErrorAt ( 0 )
328
- . AssertProperty < string > ( "FormattedMessage" , message => message . Contains ( "error NU1001: The dependency EmptyLibrary could not be resolved. " ) )
335
+ . AssertProperty < string > ( "FormattedMessage" , message => message . Contains ( "error NU1002 " ) )
329
336
. RetrievePropertyAs < JObject > ( "Source" )
330
337
. AssertProperty ( "Name" , "EmptyLibrary" ) ;
331
338
@@ -342,15 +349,12 @@ public void DthNegative_BrokenProjectPathInLockFile_V2(DnxSdk sdk)
342
349
[ MemberData ( nameof ( DnxSdks ) ) ]
343
350
public void DthDependencies_UpdateGlobalJson_RefreshDependencies ( DnxSdk sdk )
344
351
{
345
- using ( var disposableDir = new DisposableDir ( ) )
346
352
using ( var server = DthTestServer . Create ( sdk ) )
347
353
using ( var client = server . CreateClient ( ) )
348
354
{
349
- Testing . TestUtils . CopyFolder (
350
- _fixture . GetTestProjectPath ( "UpdateSearchPathSample" ) ,
351
- Path . Combine ( disposableDir , "UpdateSearchPathSample" ) ) ;
355
+ var solution = TestUtils . GetSolution < DthStartupTests > ( sdk , "DthUpdateSearchPathSample" ) ;
352
356
353
- var root = Path . Combine ( disposableDir , "UpdateSearchPathSample" , "home" ) ;
357
+ var root = Path . Combine ( solution . RootPath , "home" ) ;
354
358
sdk . Dnu . Restore ( root ) . EnsureSuccess ( ) ;
355
359
356
360
var testProject = Path . Combine ( root , "src" , "MainProject" ) ;
0 commit comments