2014-02-08 00:40:52 +00:00
|
|
|
package structs
|
2014-10-18 01:23:13 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestEncodeDecode(t *testing.T) {
|
|
|
|
arg := &RegisterRequest{
|
|
|
|
Datacenter: "foo",
|
|
|
|
Node: "bar",
|
|
|
|
Address: "baz",
|
|
|
|
Service: &NodeService{
|
|
|
|
Service: "test",
|
2015-01-02 21:10:05 +00:00
|
|
|
Address: "127.0.0.2",
|
2014-10-18 01:23:13 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
buf, err := Encode(RegisterRequestType, arg)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var out RegisterRequest
|
|
|
|
err = Decode(buf[1:], &out)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(arg.Service, out.Service) {
|
|
|
|
t.Fatalf("bad: %#v %#v", arg.Service, out.Service)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(arg, &out) {
|
|
|
|
t.Fatalf("bad: %#v %#v", arg, out)
|
|
|
|
}
|
|
|
|
}
|
2014-10-07 18:05:31 +00:00
|
|
|
|
|
|
|
func TestStructs_Implements(t *testing.T) {
|
|
|
|
var (
|
|
|
|
_ RPCInfo = &RegisterRequest{}
|
|
|
|
_ RPCInfo = &DeregisterRequest{}
|
|
|
|
_ RPCInfo = &DCSpecificRequest{}
|
|
|
|
_ RPCInfo = &ServiceSpecificRequest{}
|
|
|
|
_ RPCInfo = &NodeSpecificRequest{}
|
|
|
|
_ RPCInfo = &ChecksInStateRequest{}
|
|
|
|
_ RPCInfo = &KVSRequest{}
|
|
|
|
_ RPCInfo = &KeyRequest{}
|
|
|
|
_ RPCInfo = &KeyListRequest{}
|
|
|
|
_ RPCInfo = &SessionRequest{}
|
|
|
|
_ RPCInfo = &SessionSpecificRequest{}
|
|
|
|
_ RPCInfo = &EventFireRequest{}
|
|
|
|
_ RPCInfo = &ACLPolicyRequest{}
|
|
|
|
_ RPCInfo = &KeyringRequest{}
|
|
|
|
_ CompoundResponse = &KeyringResponses{}
|
|
|
|
)
|
|
|
|
}
|
2015-10-14 20:41:04 +00:00
|
|
|
|
2015-10-19 20:55:35 +00:00
|
|
|
// testServiceNode gives a fully filled out ServiceNode instance.
|
|
|
|
func testServiceNode() *ServiceNode {
|
|
|
|
return &ServiceNode{
|
|
|
|
Node: "node1",
|
|
|
|
Address: "127.0.0.1",
|
|
|
|
ServiceID: "service1",
|
|
|
|
ServiceName: "dogs",
|
|
|
|
ServiceTags: []string{"prod", "v1"},
|
|
|
|
ServiceAddress: "127.0.0.2",
|
|
|
|
ServicePort: 8080,
|
|
|
|
ServiceEnableTagOverride: true,
|
2015-10-14 20:46:01 +00:00
|
|
|
RaftIndex: RaftIndex{
|
2015-10-14 20:41:04 +00:00
|
|
|
CreateIndex: 1,
|
|
|
|
ModifyIndex: 2,
|
|
|
|
},
|
|
|
|
}
|
2015-10-19 20:55:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestStructs_ServiceNode_Clone(t *testing.T) {
|
|
|
|
sn := testServiceNode()
|
2015-10-14 20:41:04 +00:00
|
|
|
|
|
|
|
clone := sn.Clone()
|
|
|
|
if !reflect.DeepEqual(sn, clone) {
|
|
|
|
t.Fatalf("bad: %v", clone)
|
|
|
|
}
|
|
|
|
|
|
|
|
sn.ServiceTags = append(sn.ServiceTags, "hello")
|
|
|
|
if reflect.DeepEqual(sn, clone) {
|
|
|
|
t.Fatalf("clone wasn't independent of the original")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-19 20:55:35 +00:00
|
|
|
func TestStructs_ServiceNode_Conversions(t *testing.T) {
|
|
|
|
sn := testServiceNode()
|
|
|
|
|
|
|
|
sn2 := sn.ToNodeService().ToServiceNode("node1", "127.0.0.1")
|
|
|
|
if !reflect.DeepEqual(sn, sn2) {
|
|
|
|
t.Fatalf("bad: %v", sn2)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-14 20:41:04 +00:00
|
|
|
func TestStructs_DirEntry_Clone(t *testing.T) {
|
|
|
|
e := &DirEntry{
|
|
|
|
LockIndex: 5,
|
2015-10-14 20:46:01 +00:00
|
|
|
Key: "hello",
|
|
|
|
Flags: 23,
|
|
|
|
Value: []byte("this is a test"),
|
|
|
|
Session: "session1",
|
|
|
|
RaftIndex: RaftIndex{
|
2015-10-14 20:41:04 +00:00
|
|
|
CreateIndex: 1,
|
|
|
|
ModifyIndex: 2,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
clone := e.Clone()
|
|
|
|
if !reflect.DeepEqual(e, clone) {
|
|
|
|
t.Fatalf("bad: %v", clone)
|
|
|
|
}
|
|
|
|
|
|
|
|
e.Value = []byte("a new value")
|
|
|
|
if reflect.DeepEqual(e, clone) {
|
|
|
|
t.Fatalf("clone wasn't independent of the original")
|
|
|
|
}
|
|
|
|
}
|