Example #1
0
 /**
  * Test export method
  */
 public function testExport()
 {
     $websiteCode = Mage_ImportExport_Model_Export_Entity_Eav_Customer_Address::COLUMN_WEBSITE;
     $emailCode = Mage_ImportExport_Model_Export_Entity_Eav_Customer_Address::COLUMN_EMAIL;
     $entityIdCode = Mage_ImportExport_Model_Export_Entity_Eav_Customer_Address::COLUMN_ADDRESS_ID;
     $expectedAttributes = array();
     /** @var $collection Mage_Customer_Model_Resource_Address_Attribute_Collection */
     $collection = Mage::getResourceModel('Mage_Customer_Model_Resource_Address_Attribute_Collection');
     /** @var $attribute Mage_Customer_Model_Attribute */
     foreach ($collection as $attribute) {
         $expectedAttributes[] = $attribute->getAttributeCode();
     }
     // Get customer default addresses column name to customer attribute mapping array.
     $defaultAddressMap = Mage_ImportExport_Model_Import_Entity_Eav_Customer_Address::getDefaultAddressAttributeMapping();
     $this->_model->setWriter(Mage::getModel('Mage_ImportExport_Model_Export_Adapter_Csv'));
     $this->_model->setParameters(array());
     $data = $this->_csvToArray($this->_model->export(), $entityIdCode);
     $this->assertEquals(count($expectedAttributes), count(array_intersect($expectedAttributes, $data['header'])), 'Expected attribute codes were not exported');
     $this->assertNotEmpty($data['data'], 'No data was exported');
     // Get addresses
     /** @var $customers Mage_Customer_Model_Customer[] */
     $customers = Mage::registry('_fixture/Mage_ImportExport_Customers_Array');
     foreach ($customers as $customer) {
         /** @var $address Mage_Customer_Model_Address */
         foreach ($customer->getAddresses() as $address) {
             // Check unique key
             $data['data'][$address->getId()][$websiteCode] = $this->_websites[$customer->getWebsiteId()];
             $data['data'][$address->getId()][$emailCode] = $customer->getEmail();
             $data['data'][$address->getId()][$entityIdCode] = $address->getId();
             // Check by expected attributes
             foreach ($expectedAttributes as $code) {
                 if (!in_array($code, $this->_model->getDisabledAttributes())) {
                     $this->assertEquals($address->getData($code), $data['data'][$address->getId()][$code], 'Attribute "' . $code . '" is not equal');
                 }
             }
             // Check customer default addresses column name to customer attribute mapping array
             foreach ($defaultAddressMap as $exportCode => $code) {
                 $this->assertEquals($address->getData($code), (int) $data['data'][$address->getId()][$exportCode], 'Attribute "' . $code . '" is not equal');
             }
         }
     }
 }