func (s *remoteSuite) TestValidateLocalWithCert(c *gc.C) { remote := lxdclient.Remote{ Name: "my-local", Host: "", Cert: &lxdclient.Cert{}, } err := remote.Validate() c.Check(err, jc.Satisfies, errors.IsNotValid) }
func (s *remoteSuite) TestValidateLocalMissingName(c *gc.C) { remote := lxdclient.Remote{ Name: "", Host: "", Cert: nil, } err := remote.Validate() c.Check(err, jc.Satisfies, errors.IsNotValid) }
func (s *remoteSuite) TestValidateLocalOkay(c *gc.C) { remote := lxdclient.Remote{ Name: "my-local", Host: "", Cert: nil, } err := remote.Validate() c.Check(err, jc.ErrorIsNil) }
func (s *remoteSuite) TestValidateBadCert(c *gc.C) { remote := lxdclient.Remote{ Name: "my-remote", Host: "some-host", Cert: &lxdclient.Cert{}, } err := remote.Validate() c.Check(err, jc.Satisfies, errors.IsNotValid) }
func (s *remoteSuite) TestValidateOkay(c *gc.C) { remote := lxdclient.Remote{ Name: "my-remote", Host: "some-host", Cert: s.Cert, } err := remote.Validate() c.Check(err, jc.ErrorIsNil) }
// TODO(ericsnow) Move this test to a functional suite. func (s *remoteSuite) TestWithDefaultsMissingCert(c *gc.C) { remote := lxdclient.Remote{ Name: "my-remote", Host: "some-host", Cert: nil, } err := remote.Validate() c.Assert(err, gc.NotNil) // Make sure the original is invalid. updated, err := remote.WithDefaults() c.Assert(err, jc.ErrorIsNil) err = updated.Validate() c.Check(err, 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", Cert: nil, }) }
func (s *remoteSuite) TestValidateZeroValue(c *gc.C) { var remote lxdclient.Remote err := remote.Validate() c.Check(err, jc.Satisfies, errors.IsNotValid) }