blob: 4982d733824e1f6fcd6af0b2e182677eafe7660d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolsetTest.BurnE2E
{
using System;
using System.IO;
using Xunit;
using Xunit.Abstractions;
public class BasicFunctionalityTests : BurnE2ETests
{
public BasicFunctionalityTests(ITestOutputHelper testOutputHelper) : base(testOutputHelper, "BasicFunctionality") { }
[Fact]
public void CanInstallAndUninstallSimpleBundle()
{
var packageA = this.CreatePackageInstaller("PackageA");
var bundleA = this.CreateBundleInstaller("BundleA");
var packageASourceCodeInstalled = packageA.GetInstalledFilePath("Package.wxs");
// Source file should *not* be installed
Assert.False(File.Exists(packageASourceCodeInstalled), $"Package A payload should not be there on test start: {packageASourceCodeInstalled}");
bundleA.Install();
var cachedBundlePath = bundleA.VerifyRegisteredAndInPackageCache();
// Source file should be installed
Assert.True(File.Exists(packageASourceCodeInstalled), String.Concat("Should have found Package A payload installed at: ", packageASourceCodeInstalled));
bundleA.Uninstall(cachedBundlePath);
// Source file should *not* be installed
Assert.False(File.Exists(packageASourceCodeInstalled), String.Concat("Package A payload should have been removed by uninstall from: ", packageASourceCodeInstalled));
bundleA.VerifyUnregisteredAndRemovedFromPackageCache(cachedBundlePath);
}
}
}
|