| |
| |
|
|
| using System; |
| using System.IO; |
| using System.Management.Automation; |
| using System.Security; |
| using Microsoft.Management.Infrastructure; |
| using Microsoft.PowerShell; |
| using Xunit; |
|
|
| namespace PowerShell.Hosting.SDK.Tests |
| { |
| public static class HostingTests |
| { |
| [Fact] |
| public static void TestCommandFromUtility() |
| { |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| var results = ps.AddScript("Get-Verb -Verb get").Invoke(); |
|
|
| foreach (dynamic item in results) |
| { |
| Assert.Equal("Get", item.Verb); |
| } |
| } |
| } |
|
|
| [Fact] |
| public static void TestCommandFromManagement() |
| { |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| var path = Environment.CurrentDirectory; |
| var results = ps.AddCommand("Test-Path").AddParameter("Path", path).Invoke<bool>(); |
|
|
| foreach (dynamic item in results) |
| { |
| Assert.True(item); |
| } |
| } |
| } |
|
|
| [Fact] |
| public static void TestCommandFromCore() |
| { |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| var results = ps.AddScript(@"$i = 0 ; 1..3 | ForEach-Object { $i += $_} ; $i").Invoke<int>(); |
|
|
| foreach (dynamic item in results) |
| { |
| Assert.Equal(6, item); |
| } |
| } |
| } |
|
|
| [SkippableFact] |
| public static void TestCommandFromMMI() |
| { |
| |
| Skip.IfNot(Platform.IsWindows); |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| var results = ps.AddScript("[Microsoft.Management.Infrastructure.CimInstance]::new('Win32_Process')").Invoke(); |
| Assert.True(results.Count > 0); |
| } |
| } |
|
|
| [SkippableFact] |
| public static void TestCommandFromDiagnostics() |
| { |
| Skip.IfNot(Platform.IsWindows); |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| var results = ps.AddScript("Get-WinEvent -ListLog Application").Invoke(); |
|
|
| foreach (dynamic item in results) |
| { |
| Assert.Equal("Application", item.LogName); |
| } |
| } |
| } |
|
|
| [SkippableFact] |
| public static void TestCommandFromSecurity() |
| { |
| Skip.IfNot(Platform.IsWindows); |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| var results = ps.AddScript("ConvertTo-SecureString -String test -AsPlainText -Force").Invoke<SecureString>(); |
| Assert.IsType<SecureString>(results[0]); |
| } |
| } |
|
|
| [SkippableFact] |
| public static void TestCommandFromWSMan() |
| { |
| Skip.IfNot(Platform.IsWindows); |
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| var results = ps.AddScript("Test-WSMan").Invoke(); |
|
|
| foreach (dynamic item in results) |
| { |
| Assert.Equal("Microsoft Corporation", item.ProductVendor); |
| } |
| } |
| } |
|
|
| [Fact] |
| public static void TestCommandFromNative() |
| { |
| var fs = File.Create(Path.GetTempFileName()); |
| fs.Close(); |
|
|
| string target = fs.Name; |
| string path = Path.GetTempFileName(); |
|
|
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| |
| string command = $"New-Item -ItemType SymbolicLink -Path {path} -Target {target}"; |
| var results = ps.AddScript(command).Invoke<FileInfo>(); |
|
|
| foreach (var item in results) |
| { |
| Assert.Equal(path, item.FullName); |
| } |
| } |
|
|
| if (File.Exists(path)) |
| { |
| File.Delete(path); |
| } |
|
|
| if (File.Exists(target)) |
| { |
| File.Delete(target); |
| } |
| } |
|
|
| |
| |
| |
| [Fact] |
| public static void TestAddTypeCmdletInHostScenario() |
| { |
| string code = @" |
| using System; |
| public class Foo |
| { |
| public Foo(string name, string path) |
| { |
| this.Name = name; |
| this.Path = path; |
| } |
| |
| public string Name; |
| public string Path; |
| } |
| "; |
|
|
| using (System.Management.Automation.PowerShell ps = System.Management.Automation.PowerShell.Create()) |
| { |
| ps.AddCommand("Add-Type").AddParameter("TypeDefinition", code).Invoke(); |
| ps.Commands.Clear(); |
|
|
| var results = ps.AddScript("[Foo]::new('Joe', 'Unknown')").Invoke(); |
| Assert.Single(results); |
|
|
| dynamic foo = results[0]; |
| Assert.Equal("Joe", foo.Name); |
| Assert.Equal("Unknown", foo.Path); |
| } |
| } |
|
|
| [Fact] |
| public static void TestConsoleShellScenario() |
| { |
| int ret = ConsoleShell.Start("Hello", string.Empty, new string[] { "-noprofile", "-c", "exit 42" }); |
| Assert.Equal(42, ret); |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| [Fact] |
| public static void TestBuiltInModules() |
| { |
| var iss = System.Management.Automation.Runspaces.InitialSessionState.CreateDefault2(); |
| if (System.Management.Automation.Platform.IsWindows) |
| { |
| iss.ExecutionPolicy = Microsoft.PowerShell.ExecutionPolicy.RemoteSigned; |
| } |
|
|
| using var runspace = System.Management.Automation.Runspaces.RunspaceFactory.CreateRunspace(iss); |
| runspace.Open(); |
|
|
| using var ps = System.Management.Automation.PowerShell.Create(runspace); |
| var results_1 = ps.AddScript("Write-Output Hello > $null; Get-Module").Invoke<System.Management.Automation.PSModuleInfo>(); |
| Assert.Single(results_1); |
|
|
| var module = results_1[0]; |
| Assert.Equal("Microsoft.PowerShell.Utility", module.Name); |
|
|
| ps.Commands.Clear(); |
| var results_2 = ps.AddScript("Join-Path $PSHOME 'Modules' 'Microsoft.PowerShell.Utility' 'Microsoft.PowerShell.Utility.psd1'").Invoke<string>(); |
| var moduleManifestPath = results_2[0]; |
| Assert.Equal(moduleManifestPath, module.Path, ignoreCase: true); |
| } |
| } |
| } |
|
|