Skip to content

Commit c1ac44c

Browse files
Merge remote-tracking branch 'origin/pre_release-1.1.15' into pre_release-1.1.15
2 parents 1c0c61d + ba37f29 commit c1ac44c

File tree

2 files changed

+55
-2
lines changed

2 files changed

+55
-2
lines changed

app/code/community/Ebizmarts/MailChimp/Model/Observer.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -464,10 +464,9 @@ public function addOrderViewMonkey(Varien_Event_Observer $observer)
464464
$order = $block->getOrder();
465465
$storeId = $order->getStoreId();
466466
$helper = $this->makeHelper();
467-
$addColumnConfig = $helper->getMonkeyInGrid($storeId);
468467
$ecommEnabled = $helper->isEcomSyncDataEnabled($storeId);
469468

470-
if ($ecommEnabled && $addColumnConfig) {
469+
if ($ecommEnabled) {
471470
$transport = $observer->getTransport();
472471
if ($transport) {
473472
$html = $transport->getHtml();

dev/tests/mailchimp/tests/app/Ebizmarts/MailChimp/Model/ObserverTest.php

+54
Original file line numberDiff line numberDiff line change
@@ -1057,5 +1057,59 @@ public function testHandleCustomerGroupsIsNotSubcribedFromFrontEnd()
10571057

10581058
$mailchimpObserverMock->handleCustomerGroups($subscriberEmail, $params, $storeId, $customerId);
10591059
}
1060+
1061+
public function testAddOrderViewMonkey()
1062+
{
1063+
$html = '';
1064+
$storeId = 1;
1065+
1066+
$mailchimpObserverMock = $this->getMockBuilder(Ebizmarts_MailChimp_Model_Observer::class)
1067+
->setMethods(array('makeHelper'))
1068+
-> getMock();
1069+
1070+
$helperMock = $this->getMockBuilder(Ebizmarts_MailChimp_Helper_Data::class)
1071+
->setMethods(array('isEcomSyncDataEnabled'))
1072+
->getMock();
1073+
1074+
$observerMock = $this->getMockBuilder(Varien_Event_Observer::class)
1075+
->setMethods(array('getBlock', 'getTransport'))
1076+
->getMock();
1077+
1078+
$blockMock = $this->getMockBuilder(Mage_Core_Block_Abstract::class)
1079+
->setMethods(array('getNameInLayout', 'getOrder', 'getChild'))
1080+
->getMock();
1081+
1082+
$transportMock = $this->getMockBuilder(Varien_Event::class)
1083+
->setMethods(array('getHtml', 'setHtml'))
1084+
->getMock();
1085+
1086+
$orderMock = $this->getMockBuilder(Mage_Sales_Model_Order::class)
1087+
->setMethods(array('getStoreId'))
1088+
->getMock();
1089+
1090+
$childMock = $this->getMockBuilder(Mage_Core_Helper_String::class)
1091+
->setMethods(array('toHtml'))
1092+
->getMock();
1093+
1094+
$mailchimpObserverMock->expects($this->once())->method('makeHelper')->willReturn($helperMock);
1095+
1096+
$helperMock->expects($this->once())->method('isEcomSyncDataEnabled')->with($storeId)->willReturn(true);
1097+
1098+
$observerMock->expects($this->once())->method('getBlock')->willReturn($blockMock);
1099+
$observerMock->expects($this->once())->method('getTransport')->willReturn($transportMock);
1100+
1101+
$blockMock->expects($this->once())->method('getNameInLayout')->willReturn('order_info');
1102+
$blockMock->expects($this->once())->method('getOrder')->willReturn($orderMock);
1103+
$blockMock->expects($this->once())->method('getChild')->with('mailchimp.order.info.monkey.block')->willReturn($childMock);
1104+
1105+
$transportMock->expects($this->once())->method('getHtml')->willReturn($html);
1106+
$transportMock->expects($this->once())->method('setHtml')->with($html);
1107+
1108+
$orderMock->expects($this->once())->method('getStoreId')->willReturn($storeId);
1109+
1110+
$childMock->expects($this->once())->method('toHtml')->willReturn($html);
1111+
1112+
$mailchimpObserverMock->addOrderViewMonkey($observerMock);
1113+
}
10601114
}
10611115

0 commit comments

Comments
 (0)