本文整理汇总了Golang中github.com/juju/juju/tools/lxdclient.Remote类的典型用法代码示例。如果您正苦于以下问题:Golang Remote类的具体用法?Golang Remote怎么用?Golang Remote使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Remote类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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")
}
示例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")
}
示例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)
}
示例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)
}
示例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)
}
示例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)
}
示例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)
}
示例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)
}
示例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)
}
示例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)
}
示例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.
}
示例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)
}
示例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)
}
示例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,
})
}
示例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,
})
}