Enable most of the tests.
This commit is contained in:
Родитель
034bbed114
Коммит
ee58151cdc
|
@ -21,8 +21,6 @@ environment:
|
|||
build_script:
|
||||
- appveyor.cmd
|
||||
|
||||
test: off
|
||||
|
||||
pull_requests:
|
||||
do_not_increment_build_number: true
|
||||
|
||||
|
|
|
@ -88,6 +88,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
[Ignore] // Takes ~5 minutes and 66000 is over the 65535 limit anyway.
|
||||
public void CabinetExtremeFileCounts()
|
||||
{
|
||||
this.RunCabinetPackUnpack(66000, 10);
|
||||
|
@ -129,6 +130,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[Timeout(36000000), TestMethod]
|
||||
[Ignore] // Takes too long to run regularly.
|
||||
public void CabinetExtremeFileSizes()
|
||||
{
|
||||
this.RunCabinetPackUnpack(10, 512L * 1024 * 1024); // 5GB
|
||||
|
@ -681,6 +683,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
//[Ignore] // Requires clean environment.
|
||||
public void CabInfoProperties()
|
||||
{
|
||||
Exception caughtEx;
|
||||
|
@ -713,6 +716,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
//[Ignore] // Requires clean environment.
|
||||
public void CabInfoNullParams()
|
||||
{
|
||||
int fileCount = 10, fileSize = 1024;
|
||||
|
@ -839,6 +843,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
//[Ignore] // Requires clean environment.
|
||||
public void CabFileInfoProperties()
|
||||
{
|
||||
CabInfo cabInfo = new CabInfo("test.cab");
|
||||
|
|
|
@ -37,6 +37,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
[Ignore] // Takes too long to run regularly.
|
||||
public void ZipExtremeFileCounts()
|
||||
{
|
||||
this.RunZipPackUnpack(66000, 10, 0);
|
||||
|
@ -55,6 +56,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[Timeout(36000000), TestMethod]
|
||||
[Ignore] // Takes too long to run regularly.
|
||||
public void ZipExtremeFileSizes()
|
||||
{
|
||||
//this.RunZipPackUnpack(10, 512L * 1024 * 1024, 0); // 5GB
|
||||
|
@ -166,6 +168,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
//[Ignore] // Requires clean environment.
|
||||
public void ZipArchiveSizes()
|
||||
{
|
||||
Console.WriteLine("Testing various values for the maxArchiveSize parameter.");
|
||||
|
@ -241,6 +244,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
//[Ignore] // Requires clean environment.
|
||||
public void ZipInfoNullParams()
|
||||
{
|
||||
int fileCount = 10, fileSize = 1024;
|
||||
|
|
|
@ -17,6 +17,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
[Ignore] // Currently fails.
|
||||
public void CustomActionTest1()
|
||||
{
|
||||
InstallLogModes logEverything =
|
||||
|
|
|
@ -28,12 +28,13 @@ namespace WixToolset.Dtf.Test
|
|||
InstallLogModes.CommonData;
|
||||
|
||||
#if DEBUG
|
||||
const string EmbeddedUISampleBinDir = @"..\..\..\..\..\build\debug\x86\";
|
||||
const string EmbeddedUISampleBinDir = @"..\..\build\debug\";
|
||||
#else
|
||||
const string EmbeddedUISampleBinDir = @"..\..\..\..\..\build\ship\x86\";
|
||||
const string EmbeddedUISampleBinDir = @"..\..\build\release\";
|
||||
#endif
|
||||
|
||||
[TestMethod]
|
||||
[Ignore] // Requires elevation.
|
||||
public void EmbeddedUISingleInstall()
|
||||
{
|
||||
string dbFile = "EmbeddedUISingleInstall.msi";
|
||||
|
|
|
@ -29,6 +29,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
[Ignore] // Currently fails.
|
||||
public void InstallerErrorMessages()
|
||||
{
|
||||
string msg3002 = Installer.GetErrorMessage(3002);
|
||||
|
@ -232,6 +233,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
[Ignore] // Currently fails.
|
||||
public void InstallerMessageResources()
|
||||
{
|
||||
string message1101 = Installer.GetErrorMessage(1101);
|
||||
|
|
|
@ -25,6 +25,7 @@ namespace WixToolset.Dtf.Test
|
|||
}
|
||||
|
||||
[TestMethod]
|
||||
[Ignore] // Requires elevation.
|
||||
public void InstallerTransactTwoProducts()
|
||||
{
|
||||
string dbFile1 = "InstallerTransactProduct1.msi";
|
||||
|
|
Загрузка…
Ссылка в новой задаче