public void GetCurrentDocuments_IgnoresDotRazorFiles() { // Arrange ContentItems.Item("Index.razor", new Dictionary <string, string>() { [ItemReference.LinkPropertyName] = "NewIndex.razor", [ItemReference.FullPathPropertyName] = "C:\\From\\Index.razor", }); NoneItems.Item("About.razor", new Dictionary <string, string>() { [ItemReference.LinkPropertyName] = "NewAbout.razor", [ItemReference.FullPathPropertyName] = "C:\\From\\About.razor", }); var services = new TestProjectSystemServices("C:\\To\\Test.csproj"); var host = new TestFallbackRazorProjectHost(services, Workspace, ProjectManager); var changes = new TestProjectChangeDescription[] { ContentItems.ToChange(), NoneItems.ToChange(), }; var update = services.CreateUpdate(changes).Value; // Act var result = host.GetCurrentDocuments(update); // Assert Assert.Empty(result); }
public async Task OnProjectChanged_UpdateProject_Succeeds() { // Arrange ReferenceItems.Item("c:\\nuget\\Microsoft.AspNetCore.Mvc.razor.dll"); var afterChangeContentItems = new ItemCollection(ManagedProjectSystemSchema.ContentItem.SchemaName); ContentItems.Item("Index.cshtml", new Dictionary <string, string>() { [ItemReference.FullPathPropertyName] = "C:\\Path\\Index.cshtml", }); var initialChanges = new TestProjectChangeDescription[] { ReferenceItems.ToChange(), ContentItems.ToChange(), }; var changes = new TestProjectChangeDescription[] { ReferenceItems.ToChange(), afterChangeContentItems.ToChange(ContentItems.ToSnapshot()), }; var services = new TestProjectSystemServices("C:\\Path\\Test.csproj"); var host = new TestFallbackRazorProjectHost(services, Workspace, ProjectManager) { AssemblyVersion = new Version(2, 0), }; await Task.Run(async() => await host.LoadAsync()); Assert.Empty(ProjectManager.Projects); // Act - 1 await Task.Run(async() => await host.OnProjectChanged(services.CreateUpdate(initialChanges))); // Assert - 1 var snapshot = Assert.Single(ProjectManager.Projects); Assert.Equal("C:\\Path\\Test.csproj", snapshot.FilePath); Assert.Same(FallbackRazorConfiguration.MVC_2_0, snapshot.Configuration); var filePath = Assert.Single(snapshot.DocumentFilePaths); Assert.Equal("C:\\Path\\Index.cshtml", filePath); // Act - 2 host.AssemblyVersion = new Version(1, 0); await Task.Run(async() => await host.OnProjectChanged(services.CreateUpdate(changes))); // Assert - 2 snapshot = Assert.Single(ProjectManager.Projects); Assert.Equal("C:\\Path\\Test.csproj", snapshot.FilePath); Assert.Same(FallbackRazorConfiguration.MVC_1_0, snapshot.Configuration); Assert.Empty(snapshot.DocumentFilePaths); await Task.Run(async() => await host.DisposeAsync()); Assert.Empty(ProjectManager.Projects); }
public async Task OnProjectChanged_ReadsProperties_InitializesProject() { // Arrange ReferenceItems.Item("c:\\nuget\\Microsoft.AspNetCore.Mvc.razor.dll"); ContentItems.Item("Index.cshtml", new Dictionary <string, string>() { [ItemReference.FullPathPropertyName] = "C:\\Path\\Index.cshtml", }); NoneItems.Item("About.cshtml", new Dictionary <string, string>() { [ItemReference.FullPathPropertyName] = "C:\\Path\\About.cshtml", }); var changes = new TestProjectChangeDescription[] { ReferenceItems.ToChange(), ContentItems.ToChange(), NoneItems.ToChange(), }; var services = new TestProjectSystemServices("C:\\Path\\Test.csproj"); var host = new TestFallbackRazorProjectHost(services, Workspace, ProjectManager) { AssemblyVersion = new Version(2, 0), // Mock for reading the assembly's version }; await Task.Run(async() => await host.LoadAsync()); Assert.Empty(ProjectManager.Projects); // Act await Task.Run(async() => await host.OnProjectChanged(services.CreateUpdate(changes))); // Assert var snapshot = Assert.Single(ProjectManager.Projects); Assert.Equal("C:\\Path\\Test.csproj", snapshot.FilePath); Assert.Same(FallbackRazorConfiguration.MVC_2_0, snapshot.Configuration); Assert.Collection( snapshot.DocumentFilePaths, filePath => Assert.Equal("C:\\Path\\Index.cshtml", filePath), filePath => Assert.Equal("C:\\Path\\About.cshtml", filePath)); await Task.Run(async() => await host.DisposeAsync()); Assert.Empty(ProjectManager.Projects); }
public void GetChangedAndRemovedDocuments_ReturnsChangedContentAndNoneItems() { // Arrange var afterChangeContentItems = new ItemCollection(ManagedProjectSystemSchema.ContentItem.SchemaName); ContentItems.Item("Index.cshtml", new Dictionary <string, string>() { [ItemReference.LinkPropertyName] = "NewIndex.cshtml", [ItemReference.FullPathPropertyName] = "C:\\From\\Index.cshtml", }); var afterChangeNoneItems = new ItemCollection(ManagedProjectSystemSchema.NoneItem.SchemaName); NoneItems.Item("About.cshtml", new Dictionary <string, string>() { [ItemReference.LinkPropertyName] = "NewAbout.cshtml", [ItemReference.FullPathPropertyName] = "C:\\From\\About.cshtml", }); var services = new TestProjectSystemServices("C:\\To\\Test.csproj"); var host = new TestFallbackRazorProjectHost(services, Workspace, RazorProjectChangePublisher, ProjectManager); var changes = new TestProjectChangeDescription[] { afterChangeContentItems.ToChange(ContentItems.ToSnapshot()), afterChangeNoneItems.ToChange(NoneItems.ToSnapshot()), }; var update = services.CreateUpdate(changes).Value; // Act var result = host.GetChangedAndRemovedDocuments(update); // Assert Assert.Collection( result, document => { Assert.Equal("C:\\From\\Index.cshtml", document.FilePath); Assert.Equal("C:\\To\\NewIndex.cshtml", document.TargetPath); }, document => { Assert.Equal("C:\\From\\About.cshtml", document.FilePath); Assert.Equal("C:\\To\\NewAbout.cshtml", document.TargetPath); }); }
public void GetCurrentDocuments_ReturnsContentAndNoneItems() { // Arrange ContentItems.Item("Index.cshtml", new Dictionary <string, string>() { [ItemReference.LinkPropertyName] = "NewIndex.cshtml", [ItemReference.FullPathPropertyName] = "C:\\From\\Index.cshtml", }); NoneItems.Item("About.cshtml", new Dictionary <string, string>() { [ItemReference.LinkPropertyName] = "NewAbout.cshtml", [ItemReference.FullPathPropertyName] = "C:\\From\\About.cshtml", }); var services = new TestProjectSystemServices("C:\\To\\Test.csproj"); var host = new TestFallbackRazorProjectHost(services, Workspace, ProjectConfigurationFilePathStore, ProjectManager); var changes = new TestProjectChangeDescription[] { ContentItems.ToChange(), NoneItems.ToChange(), }; var update = services.CreateUpdate(changes).Value; // Act var result = host.GetCurrentDocuments(update); // Assert Assert.Collection( result, document => { Assert.Equal("C:\\From\\Index.cshtml", document.FilePath); Assert.Equal("C:\\To\\NewIndex.cshtml", document.TargetPath); }, document => { Assert.Equal("C:\\From\\About.cshtml", document.FilePath); Assert.Equal("C:\\To\\NewAbout.cshtml", document.TargetPath); }); }