Exemplo n.º 1
0
        public void Should_Yield_Child_Hosts_When_No_Preferred_Host_Defined()
        {
#pragma warning disable 618
            var lbp = new DefaultLoadBalancingPolicy(new TestLoadBalancingPolicy());
#pragma warning restore 618
            var statement = new TargettedSimpleStatement("Q");
            var hosts     = lbp.NewQueryPlan(null, statement);
            CollectionAssert.AreEqual(
                new[] { "101.0.0.0:9042", "102.0.0.0:9042" },
                hosts.Select(h => h.Address.ToString()));
        }
Exemplo n.º 2
0
        public void Should_Set_Distance_For_Preferred_Host_To_Local()
        {
#pragma warning disable 618
            var lbp = new DefaultLoadBalancingPolicy(new TestLoadBalancingPolicy(HostDistance.Ignored));
#pragma warning restore 618
            Assert.AreEqual(HostDistance.Ignored, lbp.Distance(new Host(new IPEndPoint(200L, 9042), ReconnectionPolicy)));
            var statement = new TargettedSimpleStatement("Q");
            // Use 201 as preferred
            statement.PreferredHost = new Host(new IPEndPoint(201L, 9042), ReconnectionPolicy);
            lbp.NewQueryPlan(null, statement);
            Assert.AreEqual(HostDistance.Local, lbp.Distance(statement.PreferredHost));
        }
Exemplo n.º 3
0
        public void Should_Yield_Preferred_Host_First()
        {
#pragma warning disable 618
            var lbp = new DefaultLoadBalancingPolicy(new TestLoadBalancingPolicy());
#pragma warning restore 618
            var statement = new TargettedSimpleStatement("Q");
            statement.PreferredHost = new Host(new IPEndPoint(201, 9042), ReconnectionPolicy);
            var hosts = lbp.NewQueryPlan(null, statement);
            CollectionAssert.AreEqual(
                new[] { "201.0.0.0:9042", "101.0.0.0:9042", "102.0.0.0:9042" },
                hosts.Select(h => h.Address.ToString()));
        }