Vanara/UnitTests/Windows.Shell.Common/ShellLinkTests.cs

39 lines
1.2 KiB
C#

using NUnit.Framework;
using System.IO;
using Vanara.PInvoke.Tests;
using static Vanara.PInvoke.User32;
namespace Vanara.Windows.Shell.Tests;
[TestFixture]
public class ShellLinkTests
{
[Test]
public void UnsavedLinkTest()
{
using var lnk = new ShellLink(TestCaseSources.WordDoc, "/p", TestCaseSources.TempDir, "Test description");
lnk.Properties.ReadOnly = false;
lnk.Title = "Test title";
lnk.HotKey = MakeHotKey(VK.VK_T, HOTKEYF.HOTKEYF_CONTROL);
lnk.RunAsAdministrator = false;
lnk.IconLocation = new IconLocation(TestCaseSources.ResourceFile, -107);
lnk.ShowState = PInvoke.ShowWindowCommand.SW_SHOWMINIMIZED;
using var fn = new TempFile("lnk", null);
lnk.WriteValues(false);
lnk.SaveAs(fn.FullName);
Assert.IsTrue(File.Exists(fn.FullName));
lnk.ViewInExplorer();
}
[Test]
public void TestPaths()
{
const string lnkPath = @"C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Word.lnk";
const string targetPath = @"C:\Program Files\Microsoft Office\root\Office16\WINWORD.EXE";
using var lnk = new ShellLink(lnkPath);
StringAssert.AreEqualIgnoringCase(targetPath, lnk.TargetPath);
}
private static ushort MakeHotKey(VK key, HOTKEYF modifier) => PInvoke.Macros.MAKEWORD((byte)key, (byte)modifier);
}