forked from containers/podman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request containers#23409 from arixmkii/unix-api-socket
Implement publishing API UNIX socket on Windows platforms
- Loading branch information
Showing
8 changed files
with
145 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
package e2e_test | ||
|
||
import ( | ||
"context" | ||
"os/exec" | ||
"path/filepath" | ||
"runtime" | ||
|
||
"github.com/containers/podman/v5/pkg/machine" | ||
"github.com/docker/docker/client" | ||
jsoniter "github.com/json-iterator/go" | ||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
. "github.com/onsi/gomega/gexec" | ||
) | ||
|
||
const ( | ||
NamedPipeProto = "npipe://" | ||
) | ||
|
||
var _ = Describe("run podman API test calls", func() { | ||
|
||
It("client connect to machine socket", func() { | ||
if runtime.GOOS == "windows" { | ||
Skip("Go docker client doesn't support unix socket on Windows") | ||
} | ||
name := randomString() | ||
i := new(initMachine) | ||
session, err := mb.setName(name).setCmd(i.withImage(mb.imagePath).withNow()).run() | ||
Expect(err).ToNot(HaveOccurred()) | ||
Expect(session).To(Exit(0)) | ||
|
||
inspectJSON := new(inspectMachine) | ||
inspectSession, err := mb.setName(name).setCmd(inspectJSON).run() | ||
Expect(err).ToNot(HaveOccurred()) | ||
Expect(inspectSession).To(Exit(0)) | ||
|
||
var inspectInfo []machine.InspectInfo | ||
err = jsoniter.Unmarshal(inspectSession.Bytes(), &inspectInfo) | ||
Expect(err).ToNot(HaveOccurred()) | ||
sockPath := inspectInfo[0].ConnectionInfo.PodmanSocket.GetPath() | ||
|
||
cli, err := client.NewClientWithOpts(client.WithHost("unix://" + sockPath)) | ||
Expect(err).ToNot(HaveOccurred()) | ||
_, err = cli.Ping(context.Background()) | ||
Expect(err).ToNot(HaveOccurred()) | ||
}) | ||
|
||
It("client connect to machine named pipe", func() { | ||
if runtime.GOOS != "windows" { | ||
Skip("test is only supported on Windows") | ||
} | ||
name := randomString() | ||
i := new(initMachine) | ||
session, err := mb.setName(name).setCmd(i.withImage(mb.imagePath).withNow()).run() | ||
Expect(err).ToNot(HaveOccurred()) | ||
Expect(session).To(Exit(0)) | ||
|
||
inspectJSON := new(inspectMachine) | ||
inspectSession, err := mb.setName(name).setCmd(inspectJSON).run() | ||
Expect(err).ToNot(HaveOccurred()) | ||
Expect(inspectSession).To(Exit(0)) | ||
|
||
var inspectInfo []machine.InspectInfo | ||
err = jsoniter.Unmarshal(inspectSession.Bytes(), &inspectInfo) | ||
Expect(err).ToNot(HaveOccurred()) | ||
pipePath := inspectInfo[0].ConnectionInfo.PodmanPipe.GetPath() | ||
|
||
cli, err := client.NewClientWithOpts(client.WithHost(NamedPipeProto + filepath.ToSlash(pipePath))) | ||
Expect(err).ToNot(HaveOccurred()) | ||
_, err = cli.Ping(context.Background()) | ||
Expect(err).ToNot(HaveOccurred()) | ||
}) | ||
|
||
It("curl connect to machine socket", func() { | ||
name := randomString() | ||
i := new(initMachine) | ||
session, err := mb.setName(name).setCmd(i.withImage(mb.imagePath).withNow()).run() | ||
Expect(err).ToNot(HaveOccurred()) | ||
Expect(session).To(Exit(0)) | ||
|
||
inspectJSON := new(inspectMachine) | ||
inspectSession, err := mb.setName(name).setCmd(inspectJSON).run() | ||
Expect(err).ToNot(HaveOccurred()) | ||
Expect(inspectSession).To(Exit(0)) | ||
|
||
var inspectInfo []machine.InspectInfo | ||
err = jsoniter.Unmarshal(inspectSession.Bytes(), &inspectInfo) | ||
Expect(err).ToNot(HaveOccurred()) | ||
sockPath := inspectInfo[0].ConnectionInfo.PodmanSocket.GetPath() | ||
|
||
cmd := exec.Command("curl", "--unix-socket", sockPath, "http://d/v5.0.0/libpod/info") | ||
err = cmd.Run() | ||
Expect(err).ToNot(HaveOccurred()) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd | ||
|
||
package vmconfigs | ||
|
||
import ( | ||
"github.com/containers/podman/v5/pkg/machine/define" | ||
) | ||
|
||
func getPipe(name string) *define.VMFile { | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package vmconfigs | ||
|
||
import ( | ||
"github.com/containers/podman/v5/pkg/machine/define" | ||
"github.com/containers/podman/v5/pkg/machine/env" | ||
) | ||
|
||
func getPipe(name string) *define.VMFile { | ||
pipeName := env.WithPodmanPrefix(name) | ||
return &define.VMFile{Path: `\\.\pipe\` + pipeName} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters