ContactSyncTest.php 5.88 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
<?php

namespace Dotdigitalgroup\Email\Model\Sync;

/**
 * @magentoDBIsolation enabled
 * @magentoDataFixture Magento/Store/_files/website.php
 * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
 */
class ContactSyncTest extends \PHPUnit\Framework\TestCase
{
    /**
     * @var \Magento\Framework\ObjectManagerInterface
     */
    public $objectManager;

    /**
     * @var string
     */
    public $storeId;

    /**
     * @var \Dotdigitalgroup\Email\Model\ResourceModel\Importer\Collection
     */
    public $importerCollection;

    /**
     * @return void
     */
    public function setup()
    {
        $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
        $this->importerCollection = $this->objectManager->create(
            \Dotdigitalgroup\Email\Model\ResourceModel\Importer\Collection::class
        );
    }

    /**
     * Run the preparation for the test with already existing data.
     * @return array
     */
    public function prep()
    {
        /** @var  \Magento\Store\Model\Store $store */
        $store = $this->objectManager->create(\Magento\Store\Model\Store::class);
        $store->load(1);
        //load store with the code rathe then id ; $store->load('test', 'code')

        $helper = $this->getMockbuilder(\Dotdigitalgroup\Email\Helper\Data::class)
            ->disableOriginalConstructor()
            ->getMock();
        $helper->method('isEnabled')->willReturn(true);
        $helper->method('isCustomerSyncEnabled')->willReturn(true);
        $helper->method('getCustomerAddressBook')->willReturn('12345');
        $helper->method('getWebsites')->willReturn([$store->getWebsite()]);
        $helper->method('getApiUsername')->willReturn('apiuser-dummy@apiconnector.com');
        $helper->method('getApiPassword')->willReturn('dummypass');
        $helper->method('getWebsiteCustomerMappingDatafields')->willReturn($this->getHashedDataFields());
        $helper->method('getCustomAttributes')->willReturn([]);

        $apiconnectorContact = new \Dotdigitalgroup\Email\Model\Apiconnector\Contact(
            $this->objectManager->create(\Dotdigitalgroup\Email\Model\Apiconnector\CustomerFactory::class),
            $this->objectManager->create(\Dotdigitalgroup\Email\Helper\File::class),
            $helper,
            $this->objectManager->create(\Dotdigitalgroup\Email\Model\ResourceModel\Contact::class),
            $this->objectManager->create(\Dotdigitalgroup\Email\Model\Apiconnector\ContactImportQueueExport::class),
            $this->objectManager->create(\Dotdigitalgroup\Email\Model\ResourceModel\Contact\CollectionFactory::class)
        );

        return $apiconnectorContact->sync();
    }

    /**
     * Test the builk imports with the consent data.
     *
     * @magentoDataFixture Magento/Customer/_files/two_customers.php
     * @magentoConfigFixture default_store sync_settings/sync/customer_enabled 1
     * @magentoConfigFixture default_store connector_api_credentials/api/enabled 1
     */
    public function testContactBulkImportCreated()
    {
        $this->createSingleModifiedContact();
        $this->prep();

        $item = $this->importerCollection
            ->addFieldToFilter('import_type', \Dotdigitalgroup\Email\Model\Importer::IMPORT_TYPE_CONTACT)
            ->addFieldToFilter('import_mode', \Dotdigitalgroup\Email\Model\Importer::MODE_BULK)
            ->getFirstItem();

        $this->assertEquals(
            \Dotdigitalgroup\Email\Model\Importer::IMPORT_TYPE_CONTACT,
            $item->getImportType(),
            'Item is not type of contact'
        );
        $this->assertEquals(
            \Dotdigitalgroup\Email\Model\Importer::MODE_BULK,
            $item->getImportMode(),
            'Item is not in bulk mode'
        );
    }

    /**
     *
     *
     * @magentoDataFixture Magento/Customer/_files/two_customers.php
     * @magentoConfigFixture default_store sync_settings/sync/customer_enabled 1
     * @magentoConfigFixture default_store connector_api_credentials/api/enabled 1
     */
    public function testContatctWithConsentDataCreated()
    {
        $this->createSingleModifiedContact();
        $this->prep();

        $item = $this->importerCollection
            ->addFieldToFilter('import_type', \Dotdigitalgroup\Email\Model\Importer::IMPORT_TYPE_CONTACT)
            ->addFieldToFilter('import_mode', \Dotdigitalgroup\Email\Model\Importer::MODE_BULK)
            ->getFirstItem();

        $this->assertEquals(
            \Dotdigitalgroup\Email\Model\Importer::IMPORT_TYPE_CONTACT,
            $item->getImportType(),
            'Item is not type of contact'
        );
        $this->assertEquals(
            \Dotdigitalgroup\Email\Model\Importer::MODE_BULK,
            $item->getImportMode(),
            'Item is not in bulk mode'
        );
    }

    /**
     * Create customer and contact with dummy info.
     */
    public function createSingleModifiedContact()
    {
        $customerCollection = $this->objectManager->create(
            \Magento\Customer\Model\ResourceModel\Customer\Collection::class
        );
        $customer = $customerCollection->getFirstItem();
        $this->storeId = $customer->getStoreId();

        $emailContact = $this->objectManager->create(\Dotdigitalgroup\Email\Model\Contact::class)
            ->setCustomerId($customer->getId())
            ->setWebsiteId($customer->getWebsiteId())
            ->setStoreId($customer->getStoreId())
            ->setEmail($customer->getEmail())
            ->setEmailIMpoerted(null);

        $emailContact->save();
    }

    private function getHashedDataFields()
    {
        return [
            'customer_id' => "CUSTOMER_ID",
            'firstname' => "FIRSTNAME",
            'lastname' => "LASTNAME",
            'consent_text' => "CONSENTTEXT",
            'consent_url' => "CONSENTURL",
            'consent_datetime' => "CONSENTDATETIME",
            'consent_ip' => "CONSENTIP",
            'consent_user_agent' => "CONSENTUSERAGENT"
        ];
    }
}