File: addr_windows_test.go

package info (click to toggle)
golang-github-spiffe-go-spiffe 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,116 kB
  • sloc: makefile: 157
file content (37 lines) | stat: -rw-r--r-- 728 bytes parent folder | download | duplicates (2)
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
29
30
31
32
33
34
35
36
37
//go:build windows
// +build windows

package workloadapi

func validateAddressCasesOS() []validateAddressCase {
	return []validateAddressCase{
		{
			addr: "npipe:pipeName",
			err:  "",
		},
		{
			addr: "npipe:pipe/name",
			err:  "",
		},
		{
			addr: "npipe:pipe\\name",
			err:  "",
		},
		{
			addr: "npipe:",
			err:  "workload endpoint named pipe URI must include an opaque part",
		},
		{
			addr: "npipe://foo",
			err:  "workload endpoint named pipe URI must be opaque",
		},
		{
			addr: "npipe:pipeName?query",
			err:  "workload endpoint named pipe URI must not include query values",
		},
		{
			addr: "npipe:pipeName#fragment",
			err:  "workload endpoint named pipe URI must not include a fragment",
		},
	}
}