Esempio n. 1
0
 public function testRoundRobin()
 {
     // given
     $expected = array(Url::fromHostAndPort("foo1.fliglio.com", 8001), Url::fromHostAndPort("foo2.fliglio.com", 8002));
     $stubResolver = StubResolver::createDoubleResult();
     // when
     $lb = new ConsulLoadBalancer($stubResolver, new RoundRobinLoadBalancerStrategy(), "foo");
     $foundA = array($lb->next(), $lb->next());
     $foundB = array($lb->next(), $lb->next());
     // then
     // round robin behavior
     $this->assertEquals($foundA[0]->getHost(), $foundB[0]->getHost());
     $this->assertEquals($foundA[0]->getPort(), $foundB[0]->getPort());
     $this->assertEquals($foundA[1]->getHost(), $foundB[1]->getHost());
     $this->assertEquals($foundA[1]->getPort(), $foundB[1]->getPort());
     // sort by target since order isn't deterministic
     usort($foundA, function ($a, $b) {
         return strcmp($a->getHost(), $b->getHost());
     });
     // matches expected
     $this->assertEquals($expected[0]->getHost(), $foundA[0]->getHost());
     $this->assertEquals($expected[0]->getPort(), $foundA[0]->getPort());
     $this->assertEquals($expected[1]->getHost(), $foundA[1]->getHost());
     $this->assertEquals($expected[1]->getPort(), $foundA[1]->getPort());
 }
Esempio n. 2
0
 /**
  * @expectedException Fliglio\Consul\AddressNotAvailableException
  */
 public function testEmptyResults()
 {
     // given
     $stubResolver = StubResolver::createEmptyResult();
     // when
     $lb = new ConsulLoadBalancer($stubResolver, new RoundRobinLoadBalancerStrategy(), "foo");
     $found = $lb->next();
     // then
     // exception thrown
 }
Esempio n. 3
0
 public function testAddressProviderFactory()
 {
     // given
     $expected = Url::fromHostAndPort("foo1.fliglio.com", 8001);
     $stubResolver = StubResolver::createSingleResult();
     // when
     $fac = new AddressProviderFactory($stubResolver);
     $ap = $fac->createConsulAddressProvider("foo");
     $found = $ap->getAddress();
     // then
     $this->assertEquals($expected->getHost(), $found->getHost());
     $this->assertEquals($expected->getPort(), $found->getPort());
 }