本文整理汇总了Golang中github.com/rogpeppe/macaroon.Macaroon.Location方法的典型用法代码示例。如果您正苦于以下问题:Golang Macaroon.Location方法的具体用法?Golang Macaroon.Location怎么用?Golang Macaroon.Location使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/rogpeppe/macaroon.Macaroon
的用法示例。
在下文中一共展示了Macaroon.Location方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestMarshalJSON
func (*macaroonSuite) TestMarshalJSON(c *gc.C) {
rootKey := []byte("secret")
m0 := MustNew(rootKey, "some id", "a location")
m0.AddFirstPartyCaveat("account = 3735928559")
m0JSON, err := json.Marshal(m0)
c.Assert(err, gc.IsNil)
var m1 macaroon.Macaroon
err = json.Unmarshal(m0JSON, &m1)
c.Assert(err, gc.IsNil)
c.Assert(m0.Location(), gc.Equals, m1.Location())
c.Assert(m0.Id(), gc.Equals, m1.Id())
c.Assert(
hex.EncodeToString(m0.Signature()),
gc.Equals,
hex.EncodeToString(m1.Signature()))
}