本文整理汇总了Golang中github.com/juju/juju/tools/lxdclient.Remote类的典型用法代码示例。如果您正苦于以下问题:Golang Remote类的具体用法?Golang Remote怎么用?Golang Remote使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Remote类的18个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: TestIDLocal
func (s *remoteSuite) TestIDLocal(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-remote",
Host: "",
Cert: s.Cert,
}
id := remote.ID()
c.Check(id, gc.Equals, "local")
}
开发者ID:makyo,项目名称:juju,代码行数:10,代码来源:remote_test.go
示例2: TestIDOkay
func (s *remoteSuite) TestIDOkay(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-remote",
Host: "some-host",
Cert: s.Cert,
}
id := remote.ID()
c.Check(id, gc.Equals, "my-remote")
}
开发者ID:makyo,项目名称:juju,代码行数:10,代码来源:remote_test.go
示例3: TestValidateUnknownProtocol
func (s *remoteSuite) TestValidateUnknownProtocol(c *gc.C) {
remote := lxdclient.Remote{
Name: "remote",
Host: "http://somewhere/else",
Protocol: "bogus-protocol",
Cert: nil,
}
err := remote.Validate()
c.Check(err, jc.Satisfies, errors.IsNotValid)
}
开发者ID:makyo,项目名称:juju,代码行数:11,代码来源:remote_test.go
示例4: TestValidateSimplestreamsOkay
func (s *remoteSuite) TestValidateSimplestreamsOkay(c *gc.C) {
remote := lxdclient.Remote{
Name: "remote",
Host: "http://somewhere/else",
Protocol: lxdclient.SimplestreamsProtocol,
Cert: nil,
}
err := remote.Validate()
c.Check(err, jc.ErrorIsNil)
}
开发者ID:makyo,项目名称:juju,代码行数:11,代码来源:remote_test.go
示例5: TestValidateLocalWithCert
func (s *remoteSuite) TestValidateLocalWithCert(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-local",
Host: "",
Protocol: lxdclient.LXDProtocol,
Cert: &lxdclient.Cert{},
}
err := remote.Validate()
c.Check(err, jc.Satisfies, errors.IsNotValid)
}
开发者ID:makyo,项目名称:juju,代码行数:11,代码来源:remote_test.go
示例6: TestValidateLocalSimplestreamsInvalid
func (s *remoteSuite) TestValidateLocalSimplestreamsInvalid(c *gc.C) {
remote := lxdclient.Remote{
Name: "",
Host: "",
Protocol: lxdclient.SimplestreamsProtocol,
Cert: nil,
}
err := remote.Validate()
c.Check(err, jc.Satisfies, errors.IsNotValid)
}
开发者ID:makyo,项目名称:juju,代码行数:11,代码来源:remote_test.go
示例7: TestValidateLocalOkay
func (s *remoteSuite) TestValidateLocalOkay(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-local",
Host: "",
Protocol: lxdclient.LXDProtocol,
Cert: nil,
}
err := remote.Validate()
c.Check(err, jc.ErrorIsNil)
}
开发者ID:makyo,项目名称:juju,代码行数:11,代码来源:remote_test.go
示例8: TestValidateOkay
func (s *remoteSuite) TestValidateOkay(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-remote",
Host: "some-host",
Protocol: lxdclient.LXDProtocol,
Cert: s.Cert,
}
err := remote.Validate()
c.Check(err, jc.ErrorIsNil)
}
开发者ID:makyo,项目名称:juju,代码行数:11,代码来源:remote_test.go
示例9: TestValidateLocalMissingName
func (s *remoteSuite) TestValidateLocalMissingName(c *gc.C) {
remote := lxdclient.Remote{
Name: "",
Host: "",
Protocol: lxdclient.LXDProtocol,
Cert: nil,
}
err := remote.Validate()
c.Check(err, jc.Satisfies, errors.IsNotValid)
}
开发者ID:makyo,项目名称:juju,代码行数:11,代码来源:remote_test.go
示例10: TestUsingTCPNoop
func (s *remoteSuite) TestUsingTCPNoop(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-remote",
Host: "some-host",
Protocol: lxdclient.LXDProtocol,
Cert: s.Cert,
}
nonlocal, err := remote.UsingTCP()
c.Assert(err, jc.ErrorIsNil)
c.Check(nonlocal, jc.DeepEquals, remote)
}
开发者ID:makyo,项目名称:juju,代码行数:12,代码来源:remote_test.go
示例11: TestWithDefaultsMissingName
func (s *remoteSuite) TestWithDefaultsMissingName(c *gc.C) {
remote := lxdclient.Remote{
Name: "",
Host: "some-host",
Protocol: lxdclient.LXDProtocol,
Cert: s.Cert,
}
updated, err := remote.WithDefaults()
c.Assert(err, jc.ErrorIsNil)
c.Check(updated, jc.DeepEquals, remote) // Name is not updated.
}
开发者ID:makyo,项目名称:juju,代码行数:12,代码来源:remote_test.go
示例12: TestValidateMissingCert
func (s *remoteSuite) TestValidateMissingCert(c *gc.C) {
// We can have "public" remotes that don't require a client certificate
// to connect to and get images from.
remote := lxdclient.Remote{
Name: "my-remote",
Host: "some-host",
Protocol: lxdclient.LXDProtocol,
Cert: nil,
}
err := remote.Validate()
c.Check(err, jc.ErrorIsNil)
}
开发者ID:makyo,项目名称:juju,代码行数:13,代码来源:remote_test.go
示例13: TestWithDefaultsNoop
func (s *remoteSuite) TestWithDefaultsNoop(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-remote",
Host: "some-host",
Protocol: lxdclient.LXDProtocol,
Cert: s.Cert,
}
updated, err := remote.WithDefaults()
c.Assert(err, jc.ErrorIsNil)
err = updated.Validate()
c.Check(err, jc.ErrorIsNil)
c.Check(updated, jc.DeepEquals, remote)
}
开发者ID:makyo,项目名称:juju,代码行数:14,代码来源:remote_test.go
示例14: TestWithDefaultsZeroValue
func (s *remoteSuite) TestWithDefaultsZeroValue(c *gc.C) {
var remote lxdclient.Remote
updated, err := remote.WithDefaults()
c.Assert(err, jc.ErrorIsNil)
err = updated.Validate()
c.Check(err, jc.ErrorIsNil)
c.Check(updated, jc.DeepEquals, lxdclient.Remote{
Name: "local",
Host: "",
Protocol: lxdclient.LXDProtocol,
Cert: nil,
})
}
开发者ID:makyo,项目名称:juju,代码行数:14,代码来源:remote_test.go
示例15: TestWithDefaultsMissingProtocol
func (s *remoteSuite) TestWithDefaultsMissingProtocol(c *gc.C) {
remote := lxdclient.Remote{
Name: "my-remote",
Host: "some-host",
Cert: s.Cert,
}
updated, err := remote.WithDefaults()
c.Assert(err, jc.ErrorIsNil)
err = updated.Validate()
c.Check(err, jc.ErrorIsNil)
c.Assert(updated.Cert, gc.NotNil)
c.Check(updated.Cert.Validate(), jc.ErrorIsNil)
updated.Cert = nil // Validate ensured that the cert was okay.
c.Check(updated, jc.DeepEquals, lxdclient.Remote{
Name: "my-remote",
Host: "some-host",
Protocol: lxdclient.LXDProtocol,
Cert: nil,
})
}
开发者ID:makyo,项目名称:juju,代码行数:21,代码来源:remote_test.go
示例16: TestUsingTCP
func (s *remoteFunctionalSuite) TestUsingTCP(c *gc.C) {
if _, err := net.InterfaceByName(lxdclient.DefaultLXDBridge); err != nil {
c.Skip("network bridge interface not found")
}
lxdclient.PatchGenerateCertificate(&s.CleanupSuite, testingCert, testingKey)
remote := lxdclient.Remote{
Name: "my-remote",
Host: "",
Cert: nil,
}
nonlocal, err := remote.UsingTCP()
c.Assert(err, jc.ErrorIsNil)
checkValidRemote(c, &nonlocal)
c.Check(nonlocal, jc.DeepEquals, lxdclient.Remote{
Name: "my-remote",
Host: nonlocal.Host,
Protocol: lxdclient.LXDProtocol,
Cert: nonlocal.Cert,
})
}
开发者ID:makyo,项目名称:juju,代码行数:22,代码来源:remote_test.go
示例17: clientConfig
// clientConfig builds a LXD Config based on the env config and returns it.
func (c *environConfig) clientConfig() (lxdclient.Config, error) {
remote := lxdclient.Remote{
Name: "juju-remote",
Host: c.remoteURL(),
ServerPEMCert: c.serverPEMCert(),
}
if c.clientCert() != "" {
certPEM := []byte(c.clientCert())
keyPEM := []byte(c.clientKey())
cert := lxdclient.NewCert(certPEM, keyPEM)
cert.Name = fmt.Sprintf("juju cert for env %q", c.Name())
remote.Cert = &cert
}
cfg := lxdclient.Config{
Namespace: c.namespace(),
Remote: remote,
}
cfg, err := cfg.WithDefaults()
if err != nil {
return cfg, errors.Trace(err)
}
return cfg, nil
}
开发者ID:AlexisBruemmer,项目名称:juju,代码行数:25,代码来源:config.go
示例18: TestValidateZeroValue
func (s *remoteSuite) TestValidateZeroValue(c *gc.C) {
var remote lxdclient.Remote
err := remote.Validate()
c.Check(err, jc.Satisfies, errors.IsNotValid)
}
开发者ID:makyo,项目名称:juju,代码行数:6,代码来源:remote_test.go
注:本文中的github.com/juju/juju/tools/lxdclient.Remote类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论