Updated Test to reflect actual configuration case (this bundle is using arrays instead of Elastica_Type_Mapping)

This commit is contained in:
Francisco Facioni 2012-07-02 10:00:40 -03:00
parent a6ca1bec7c
commit 4f26eb6e21

View file

@ -15,8 +15,8 @@ class ResetterTest extends \PHPUnit_Framework_TestCase
'index' => $this->getMockElasticaIndex(),
'config' => array(
'mappings' => array(
'a' => $this->getMockElasticaTypeMapping(),
'b' => $this->getMockElasticaTypeMapping(),
'a' => array('properties' => array()),
'b' => array('properties' => array()),
),
),
),
@ -24,8 +24,8 @@ class ResetterTest extends \PHPUnit_Framework_TestCase
'index' => $this->getMockElasticaIndex(),
'config' => array(
'mappings' => array(
'a' => $this->getMockElasticaTypeMapping(),
'b' => $this->getMockElasticaTypeMapping(),
'a' => array('properties' => array()),
'b' => array('properties' => array()),
),
),
),
@ -82,7 +82,7 @@ class ResetterTest extends \PHPUnit_Framework_TestCase
$type->expects($this->once())
->method('setMapping')
->with($this->indexConfigsByName['foo']['config']['mappings']['a']);
->with($this->indexConfigsByName['foo']['config']['mappings']['a']['properties']);
$resetter = new Resetter($this->indexConfigsByName);
$resetter->resetIndexType('foo', 'a');
@ -125,14 +125,4 @@ class ResetterTest extends \PHPUnit_Framework_TestCase
->disableOriginalConstructor()
->getMock();
}
/**
* @return Elastica_Type_Mapping
*/
private function getMockElasticaTypeMapping()
{
return $this->getMockBuilder('Elastica_Type_Mapping')
->disableOriginalConstructor()
->getMock();
}
}