File: powershell_test.go

package info (click to toggle)
golang-github-apparentlymart-go-shquot 0.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: makefile: 2
file content (28 lines) | stat: -rw-r--r-- 520 bytes parent folder | download
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
package shquot

import (
	"testing"
)

func TestViaPowerShell(t *testing.T) {
	tests := []qTest{
		{
			[]string{},
			"",
		},
		{
			[]string{"cmd.exe"},
			`& Start-Process -FilePath "cmd.exe"`,
		},
		{
			[]string{"cmd.exe", "/c", "echo hello"},
			"& Start-Process -FilePath \"cmd.exe\" -ArgumentList \"/c `\"echo hello`\"\"",
		},
		{
			[]string{"echo", "hello $name"},
			"& Start-Process -FilePath \"echo\" -ArgumentList \"`\"hello `$name`\"\"",
		},
	}

	runTests(t, tests, ViaPowerShell(WindowsArgvSplit))
}