Esempio n. 1
0
        public void TestStatusTimeout()
        {
            var id1         = Id.Of(1);
            var name1       = new Name("name1");
            var opAddress1  = new Address(Host.Of("localhost"), 11111, AddressType.Op);
            var appAddress1 = new Address(Host.Of("localhost"), 11112, AddressType.App);
            var node1       = new Node(id1, name1, opAddress1, appAddress1);

            var status = new RegisteredNodeStatus(node1, true, true);

            Assert.False(status.IsTimedOut(DateTimeHelper.CurrentTimeMillis(), 100L));
            Assert.True(status.IsTimedOut(DateTimeHelper.CurrentTimeMillis() + 4001L, 4000L));
        }
Esempio n. 2
0
        public void TestStatusCreationState()
        {
            var id1         = Id.Of(1);
            var name1       = new Name("name1");
            var opAddress1  = new Address(Host.Of("localhost"), 11111, AddressType.Op);
            var appAddress1 = new Address(Host.Of("localhost"), 11112, AddressType.App);
            var node1       = new Node(id1, name1, opAddress1, appAddress1);

            var status = new RegisteredNodeStatus(node1, true, true);

            Assert.True(status.IsLeader);
            Assert.True(status.IsConfirmedByLeader);
            status.ConfirmedByLeader(false);
            Assert.False(status.IsConfirmedByLeader);
            Assert.Equal(node1, status.Node);
            Assert.True(status.LastHealthIndication > 0L);
        }