@@ -1057,5 +1057,59 @@ public function testHandleCustomerGroupsIsNotSubcribedFromFrontEnd()
1057
1057
1058
1058
$ mailchimpObserverMock ->handleCustomerGroups ($ subscriberEmail , $ params , $ storeId , $ customerId );
1059
1059
}
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
+ }
1060
1114
}
1061
1115
0 commit comments