482 lines
20 KiB
C#
482 lines
20 KiB
C#
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using FluentAssertions;
|
|
using Xunit;
|
|
using Microsoft.DotNet.Cli.Sln.Internal;
|
|
using Microsoft.DotNet.TestFramework;
|
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|
|
|
namespace Microsoft.DotNet.Cli.Sln.Internal.Tests
|
|
{
|
|
public class GivenAnSlnFile : TestBase
|
|
{
|
|
private const string SolutionModified = @"
|
|
Microsoft Visual Studio Solution File, Format Version 14.00
|
|
# Visual Studio 16
|
|
VisualStudioVersion = 16.0.26006.2
|
|
MinimumVisualStudioVersion = 11.0.40219.1
|
|
Project(""{7072A694-548F-4CAE-A58F-12D257D5F486}"") = ""AppModified"", ""AppModified\AppModified.csproj"", ""{9A19103F-16F7-4668-BE54-9A1E7A4F7556}""
|
|
EndProject
|
|
Global
|
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
Debug|Any CPU = Debug|Any CPU
|
|
Debug|x64 = Debug|x64
|
|
Debug|x86 = Debug|x86
|
|
EndGlobalSection
|
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x64.ActiveCfg = Debug|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x64.Build.0 = Debug|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x86.ActiveCfg = Debug|x86
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x86.Build.0 = Debug|x86
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x64.ActiveCfg = Release|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x64.Build.0 = Release|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x86.ActiveCfg = Release|x86
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x86.Build.0 = Release|x86
|
|
EndGlobalSection
|
|
GlobalSection(SolutionProperties) = preSolution
|
|
HideSolutionNode = TRUE
|
|
EndGlobalSection
|
|
EndGlobal
|
|
";
|
|
|
|
private const string SolutionWithAppAndLibProjects = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
# Visual Studio 15
|
|
VisualStudioVersion = 15.0.26006.2
|
|
MinimumVisualStudioVersion = 10.0.40219.1
|
|
Project(""{9A19103F-16F7-4668-BE54-9A1E7A4F7556}"") = ""App"", ""App\App.csproj"", ""{7072A694-548F-4CAE-A58F-12D257D5F486}""
|
|
EndProject
|
|
Project(""{13B669BE-BB05-4DDF-9536-439F39A36129}"") = ""Lib"", ""..\Lib\Lib.csproj"", ""{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}""
|
|
EndProject
|
|
Global
|
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
Debug|Any CPU = Debug|Any CPU
|
|
Debug|x64 = Debug|x64
|
|
Debug|x86 = Debug|x86
|
|
Release|Any CPU = Release|Any CPU
|
|
Release|x64 = Release|x64
|
|
Release|x86 = Release|x86
|
|
EndGlobalSection
|
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x64.ActiveCfg = Debug|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x64.Build.0 = Debug|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x86.ActiveCfg = Debug|x86
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Debug|x86.Build.0 = Debug|x86
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x64.ActiveCfg = Release|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x64.Build.0 = Release|x64
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x86.ActiveCfg = Release|x86
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486}.Release|x86.Build.0 = Release|x86
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Debug|x64.ActiveCfg = Debug|x64
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Debug|x64.Build.0 = Debug|x64
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Debug|x86.ActiveCfg = Debug|x86
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Debug|x86.Build.0 = Debug|x86
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Release|x64.ActiveCfg = Release|x64
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Release|x64.Build.0 = Release|x64
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Release|x86.ActiveCfg = Release|x86
|
|
{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}.Release|x86.Build.0 = Release|x86
|
|
EndGlobalSection
|
|
GlobalSection(SolutionProperties) = preSolution
|
|
HideSolutionNode = FALSE
|
|
EndGlobalSection
|
|
EndGlobal
|
|
";
|
|
|
|
[Fact]
|
|
public void WhenGivenAValidSlnFileItReadsAndVerifiesContents()
|
|
{
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionWithAppAndLibProjects);
|
|
|
|
SlnFile slnFile = SlnFile.Read(tmpFile.Path);
|
|
|
|
Console.WriteLine(new
|
|
{
|
|
slnFile_FormatVersion = slnFile.FormatVersion,
|
|
slnFile_ProductDescription = slnFile.ProductDescription,
|
|
slnFile_VisualStudioVersion = slnFile.VisualStudioVersion,
|
|
slnFile_MinimumVisualStudioVersion = slnFile.MinimumVisualStudioVersion,
|
|
slnFile_BaseDirectory = slnFile.BaseDirectory,
|
|
slnFile_FullPath = slnFile.FullPath,
|
|
tmpFilePath = tmpFile.Path
|
|
}.ToString());
|
|
|
|
slnFile.FormatVersion.Should().Be("12.00");
|
|
slnFile.ProductDescription.Should().Be("Visual Studio 15");
|
|
slnFile.VisualStudioVersion.Should().Be("15.0.26006.2");
|
|
slnFile.MinimumVisualStudioVersion.Should().Be("10.0.40219.1");
|
|
slnFile.BaseDirectory.Should().Be(Path.GetDirectoryName(tmpFile.Path));
|
|
slnFile.FullPath.Should().Be(Path.GetFullPath(tmpFile.Path));
|
|
|
|
slnFile.Projects.Count.Should().Be(2);
|
|
var project = slnFile.Projects[0];
|
|
project.Id.Should().Be("{7072A694-548F-4CAE-A58F-12D257D5F486}");
|
|
project.TypeGuid.Should().Be("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}");
|
|
project.Name.Should().Be("App");
|
|
project.FilePath.Should().Be(Path.Combine("App", "App.csproj"));
|
|
project = slnFile.Projects[1];
|
|
project.Id.Should().Be("{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}");
|
|
project.TypeGuid.Should().Be("{13B669BE-BB05-4DDF-9536-439F39A36129}");
|
|
project.Name.Should().Be("Lib");
|
|
project.FilePath.Should().Be(Path.Combine("..", "Lib", "Lib.csproj"));
|
|
|
|
slnFile.SolutionConfigurationsSection.Count.Should().Be(6);
|
|
slnFile.SolutionConfigurationsSection
|
|
.GetValue("Debug|Any CPU", string.Empty)
|
|
.Should().Be("Debug|Any CPU");
|
|
slnFile.SolutionConfigurationsSection
|
|
.GetValue("Debug|x64", string.Empty)
|
|
.Should().Be("Debug|x64");
|
|
slnFile.SolutionConfigurationsSection
|
|
.GetValue("Debug|x86", string.Empty)
|
|
.Should().Be("Debug|x86");
|
|
slnFile.SolutionConfigurationsSection
|
|
.GetValue("Release|Any CPU", string.Empty)
|
|
.Should().Be("Release|Any CPU");
|
|
slnFile.SolutionConfigurationsSection
|
|
.GetValue("Release|x64", string.Empty)
|
|
.Should().Be("Release|x64");
|
|
slnFile.SolutionConfigurationsSection
|
|
.GetValue("Release|x86", string.Empty)
|
|
.Should().Be("Release|x86");
|
|
|
|
slnFile.ProjectConfigurationsSection.Count.Should().Be(2);
|
|
var projectConfigSection = slnFile
|
|
.ProjectConfigurationsSection
|
|
.GetPropertySet("{7072A694-548F-4CAE-A58F-12D257D5F486}");
|
|
projectConfigSection.Count.Should().Be(12);
|
|
projectConfigSection
|
|
.GetValue("Debug|Any CPU.ActiveCfg", string.Empty)
|
|
.Should().Be("Debug|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Debug|Any CPU.Build.0", string.Empty)
|
|
.Should().Be("Debug|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Debug|x64.ActiveCfg", string.Empty)
|
|
.Should().Be("Debug|x64");
|
|
projectConfigSection
|
|
.GetValue("Debug|x64.Build.0", string.Empty)
|
|
.Should().Be("Debug|x64");
|
|
projectConfigSection
|
|
.GetValue("Debug|x86.ActiveCfg", string.Empty)
|
|
.Should().Be("Debug|x86");
|
|
projectConfigSection
|
|
.GetValue("Debug|x86.Build.0", string.Empty)
|
|
.Should().Be("Debug|x86");
|
|
projectConfigSection
|
|
.GetValue("Release|Any CPU.ActiveCfg", string.Empty)
|
|
.Should().Be("Release|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Release|Any CPU.Build.0", string.Empty)
|
|
.Should().Be("Release|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Release|x64.ActiveCfg", string.Empty)
|
|
.Should().Be("Release|x64");
|
|
projectConfigSection
|
|
.GetValue("Release|x64.Build.0", string.Empty)
|
|
.Should().Be("Release|x64");
|
|
projectConfigSection
|
|
.GetValue("Release|x86.ActiveCfg", string.Empty)
|
|
.Should().Be("Release|x86");
|
|
projectConfigSection
|
|
.GetValue("Release|x86.Build.0", string.Empty)
|
|
.Should().Be("Release|x86");
|
|
projectConfigSection = slnFile
|
|
.ProjectConfigurationsSection
|
|
.GetPropertySet("{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}");
|
|
projectConfigSection.Count.Should().Be(12);
|
|
projectConfigSection
|
|
.GetValue("Debug|Any CPU.ActiveCfg", string.Empty)
|
|
.Should().Be("Debug|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Debug|Any CPU.Build.0", string.Empty)
|
|
.Should().Be("Debug|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Debug|x64.ActiveCfg", string.Empty)
|
|
.Should().Be("Debug|x64");
|
|
projectConfigSection
|
|
.GetValue("Debug|x64.Build.0", string.Empty)
|
|
.Should().Be("Debug|x64");
|
|
projectConfigSection
|
|
.GetValue("Debug|x86.ActiveCfg", string.Empty)
|
|
.Should().Be("Debug|x86");
|
|
projectConfigSection
|
|
.GetValue("Debug|x86.Build.0", string.Empty)
|
|
.Should().Be("Debug|x86");
|
|
projectConfigSection
|
|
.GetValue("Release|Any CPU.ActiveCfg", string.Empty)
|
|
.Should().Be("Release|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Release|Any CPU.Build.0", string.Empty)
|
|
.Should().Be("Release|Any CPU");
|
|
projectConfigSection
|
|
.GetValue("Release|x64.ActiveCfg", string.Empty)
|
|
.Should().Be("Release|x64");
|
|
projectConfigSection
|
|
.GetValue("Release|x64.Build.0", string.Empty)
|
|
.Should().Be("Release|x64");
|
|
projectConfigSection
|
|
.GetValue("Release|x86.ActiveCfg", string.Empty)
|
|
.Should().Be("Release|x86");
|
|
projectConfigSection
|
|
.GetValue("Release|x86.Build.0", string.Empty)
|
|
.Should().Be("Release|x86");
|
|
|
|
slnFile.Sections.Count.Should().Be(3);
|
|
var solutionPropertiesSection = slnFile.Sections.GetSection("SolutionProperties");
|
|
solutionPropertiesSection.Properties.Count.Should().Be(1);
|
|
solutionPropertiesSection.Properties
|
|
.GetValue("HideSolutionNode", string.Empty)
|
|
.Should().Be("FALSE");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenAValidSlnFileItModifiesSavesAndVerifiesContents()
|
|
{
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionWithAppAndLibProjects);
|
|
|
|
SlnFile slnFile = SlnFile.Read(tmpFile.Path);
|
|
|
|
slnFile.FormatVersion = "14.00";
|
|
slnFile.ProductDescription = "Visual Studio 16";
|
|
slnFile.VisualStudioVersion = "16.0.26006.2";
|
|
slnFile.MinimumVisualStudioVersion = "11.0.40219.1";
|
|
|
|
slnFile.Projects.Count.Should().Be(2);
|
|
var project = slnFile.Projects[0];
|
|
project.Id = "{9A19103F-16F7-4668-BE54-9A1E7A4F7556}";
|
|
project.TypeGuid = "{7072A694-548F-4CAE-A58F-12D257D5F486}";
|
|
project.Name = "AppModified";
|
|
project.FilePath = Path.Combine("AppModified", "AppModified.csproj");
|
|
slnFile.Projects.Remove(slnFile.Projects[1]);
|
|
|
|
slnFile.SolutionConfigurationsSection.Count.Should().Be(6);
|
|
slnFile.SolutionConfigurationsSection.Remove("Release|Any CPU");
|
|
slnFile.SolutionConfigurationsSection.Remove("Release|x64");
|
|
slnFile.SolutionConfigurationsSection.Remove("Release|x86");
|
|
|
|
slnFile.ProjectConfigurationsSection.Count.Should().Be(2);
|
|
var projectConfigSection = slnFile
|
|
.ProjectConfigurationsSection
|
|
.GetPropertySet("{21D9159F-60E6-4F65-BC6B-D01B71B15FFC}");
|
|
slnFile.ProjectConfigurationsSection.Remove(projectConfigSection);
|
|
|
|
slnFile.Sections.Count.Should().Be(3);
|
|
var solutionPropertiesSection = slnFile.Sections.GetSection("SolutionProperties");
|
|
solutionPropertiesSection.Properties.Count.Should().Be(1);
|
|
solutionPropertiesSection.Properties.SetValue("HideSolutionNode", "TRUE");
|
|
|
|
slnFile.Write();
|
|
|
|
File.ReadAllText(tmpFile.Path)
|
|
.Should().Be(SolutionModified);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("Invalid Solution")]
|
|
[InlineData("Microsoft Visual Studio Solution File, Format Version ")]
|
|
public void WhenGivenASolutionWithMissingHeaderItThrows(string fileContents)
|
|
{
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(fileContents);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 1: File header is missing");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithMultipleGlobalSectionsItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Global
|
|
EndGlobal
|
|
Global
|
|
EndGlobal
|
|
";
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 5: Global section specified more than once");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithGlobalSectionNotClosedItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Global
|
|
";
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 3: Global section not closed");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithProjectSectionNotClosedItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Project(""{9A19103F-16F7-4668-BE54-9A1E7A4F7556}"") = ""App"", ""App\App.csproj"", ""{7072A694-548F-4CAE-A58F-12D257D5F486}""
|
|
";
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 3: Project section not closed");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithInvalidProjectSectionItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Project""{9A19103F-16F7-4668-BE54-9A1E7A4F7556}"") = ""App"", ""App\App.csproj"", ""{7072A694-548F-4CAE-A58F-12D257D5F486}""
|
|
EndProject
|
|
";
|
|
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 3: Project section is missing '(' when parsing the line starting at position 0");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithInvalidSectionTypeItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Global
|
|
GlobalSection(SolutionConfigurationPlatforms) = thisIsUnknown
|
|
EndGlobalSection
|
|
EndGlobal
|
|
";
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 4: Invalid section type: thisIsUnknown");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithMissingSectionIdTypeItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Global
|
|
GlobalSection = preSolution
|
|
EndGlobalSection
|
|
EndGlobal
|
|
";
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 4: Section id missing");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithSectionNotClosedItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Global
|
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
EndGlobal
|
|
";
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
SlnFile.Read(tmpFile.Path);
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 6: Closing section tag not found");
|
|
}
|
|
|
|
[Fact]
|
|
public void WhenGivenASolutionWithInvalidPropertySetItThrows()
|
|
{
|
|
const string SolutionFile = @"
|
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
Project(""{7072A694-548F-4CAE-A58F-12D257D5F486}"") = ""AppModified"", ""AppModified\AppModified.csproj"", ""{9A19103F-16F7-4668-BE54-9A1E7A4F7556}""
|
|
EndProject
|
|
Global
|
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
{7072A694-548F-4CAE-A58F-12D257D5F486} Debug|Any CPU ActiveCfg = Debug|Any CPU
|
|
EndGlobalSection
|
|
EndGlobal
|
|
";
|
|
var tmpFile = Temp.CreateFile();
|
|
tmpFile.WriteAllText(SolutionFile);
|
|
|
|
Action action = () =>
|
|
{
|
|
var slnFile = SlnFile.Read(tmpFile.Path);
|
|
if (slnFile.ProjectConfigurationsSection.Count == 0)
|
|
{
|
|
// Need to force loading of nested property sets
|
|
}
|
|
};
|
|
|
|
action.ShouldThrow<InvalidSolutionFormatException>()
|
|
.WithMessage("Invalid format in line 7: Property set is missing '.'");
|
|
}
|
|
}
|
|
}
|