예제 #1
0
            public void Should_Add_Mandatory_Arguments()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("-latest -property installationPath -nologo", result.Args);
            }
예제 #2
0
            public void Should_Find_VSWhere_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("/Program86/Microsoft Visual Studio/Installer/vswhere.exe", result.Path.FullPath);
            }
예제 #3
0
            public void Should_Find_VSWhere_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("/Working/tools/vswhere.exe", result.Path.FullPath);
            }
예제 #4
0
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.GivenProcessExitsWithCode(1);

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                AssertEx.IsCakeException(result, "VSWhere: Process returned an error (exit code 1).");
            }
예제 #5
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.GivenProcessCannotStart();

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                AssertEx.IsCakeException(result, "VSWhere: Process was not started.");
            }
예제 #6
0
            public void Should_Throw_If_VSWhere_Executable_Was_Not_Found()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.GivenDefaultToolDoNotExist();

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                AssertEx.IsCakeException(result, "VSWhere: Could not locate executable.");
            }
예제 #7
0
            public void Should_Not_Include_Products_If_Set_To_Empty(string productFilter)
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings.Products = productFilter;

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("-latest -property installationPath -nologo", result.Args);
            }
예제 #8
0
            public void Should_Add_Products_To_Arguments_If_Set(string productFilter)
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings.Products = productFilter;

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal($"-products \"{productFilter}\" -latest -property installationPath -nologo", result.Args);
            }
예제 #9
0
            public void Should_Add_Prerelease_To_Arguments_If_Set()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings.IncludePrerelease = true;

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("-latest -property installationPath -prerelease -nologo", result.Args);
            }
예제 #10
0
            public void Should_Not_Include_Property_To_Arguments_If_Set_To_Empty()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings.ReturnProperty = string.Empty;

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("-latest -nologo", result.Args);
            }
예제 #11
0
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings = null;

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                AssertEx.IsArgumentNullException(result, "settings");
            }
예제 #12
0
            public void Should_Add_Requires_To_Arguments_If_Set()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings.Requires = "Test.Component";

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("-latest -requires \"Test.Component\" -property installationPath -nologo", result.Args);
            }
예제 #13
0
            public void Should_Add_Version_To_Arguments_If_Set()
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings.Version = "15";

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("-latest -version \"15\" -property installationPath -nologo", result.Args);
            }
예제 #14
0
            public void Should_Use_VSWhere_Executable_From_Tool_Path_If_Provided_On_Windows(string toolPath, string expected)
            {
                // Given
                var fixture = new VSWhereLatestFixture();

                fixture.Settings.ToolPath = toolPath;
                fixture.GivenSettingsToolPathExist();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal(expected, result.Path.FullPath);
            }