36 lines
1.2 KiB
C#
36 lines
1.2 KiB
C#
using System.IO;
|
|
using System.Linq;
|
|
using MatterHackers.MatterControl.Tests.Automation;
|
|
using NUnit.Framework;
|
|
|
|
namespace MatterControl.Tests.MatterControl
|
|
{
|
|
[TestFixture]
|
|
class PrinterWhiteListTests
|
|
{
|
|
[Test, Category("PrinterWhiteListTests")]
|
|
public void DesktopCalibrationPartsInSettings()
|
|
{
|
|
string settingsJsonPath = TestContext.CurrentContext.ResolveProjectPath(4, "StaticData", "OEMSettings", "Settings.json");
|
|
|
|
if (File.Exists(settingsJsonPath))
|
|
{
|
|
string[] lines = File.ReadAllLines(settingsJsonPath);
|
|
bool hasCoin = lines.Where(l => l.Contains("\"MatterControl - Coin.stl\",")).Any();
|
|
bool hasTabletStand = lines.Where(l => l.Contains("\"MatterControl - Stand.stl\",")).Any();
|
|
|
|
Assert.IsTrue(hasCoin, "Expected coin file not found");
|
|
Assert.IsTrue(hasTabletStand, "Expected stand file not found");
|
|
}
|
|
}
|
|
|
|
[Test, Category("SamplePartsTests")]
|
|
public void DesktopCalibrationPartsExist()
|
|
{
|
|
string samplePartsPath = TestContext.CurrentContext.ResolveProjectPath(4, "StaticData", "OEMSettings", "SampleParts");
|
|
string[] files = Directory.GetFiles(samplePartsPath);
|
|
bool hasPhil = files.Where(l => l.Contains("Phil A Ment.stl")).Any();
|
|
Assert.IsTrue(hasPhil, "Expected Phil file not found");
|
|
}
|
|
}
|
|
}
|