|
1
|
|
|
<?php |
|
2
|
|
|
declare(strict_types=1); |
|
3
|
|
|
/** |
|
4
|
|
|
*/ |
|
5
|
|
|
|
|
6
|
|
|
namespace CommerceLeague\ActiveCampaign\Test\Unit\Observer\Sales; |
|
7
|
|
|
|
|
8
|
|
|
use CommerceLeague\ActiveCampaign\Helper\Config as ConfigHelper; |
|
9
|
|
|
use CommerceLeague\ActiveCampaign\MessageQueue\Topics; |
|
10
|
|
|
use CommerceLeague\ActiveCampaign\Observer\Sales\ExportOrderObserver; |
|
11
|
|
|
use Magento\Framework\Event; |
|
12
|
|
|
use Magento\Framework\Event\Observer; |
|
13
|
|
|
use Magento\Framework\MessageQueue\PublisherInterface; |
|
14
|
|
|
use Magento\Sales\Model\Order as MagentoOrder; |
|
15
|
|
|
use PHPUnit\Framework\MockObject\MockObject; |
|
16
|
|
|
use PHPUnit\Framework\TestCase; |
|
17
|
|
|
|
|
18
|
|
|
class ExportOrderObserverTest extends TestCase |
|
19
|
|
|
{ |
|
20
|
|
|
/** |
|
21
|
|
|
* @var MockObject|ConfigHelper |
|
22
|
|
|
*/ |
|
23
|
|
|
protected $configHelper; |
|
24
|
|
|
|
|
25
|
|
|
/** |
|
26
|
|
|
* @var MockObject|PublisherInterface |
|
27
|
|
|
*/ |
|
28
|
|
|
protected $publisher; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* @var MockObject|Observer |
|
32
|
|
|
*/ |
|
33
|
|
|
protected $observer; |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* @var MockObject|Event |
|
37
|
|
|
*/ |
|
38
|
|
|
protected $event; |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* @var MockObject|MagentoOrder |
|
42
|
|
|
*/ |
|
43
|
|
|
protected $magentoOrder; |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* @var ExportOrderObserver |
|
47
|
|
|
*/ |
|
48
|
|
|
protected $exportOrderObserver; |
|
49
|
|
|
|
|
50
|
|
|
protected function setUp() |
|
51
|
|
|
{ |
|
52
|
|
|
$this->configHelper = $this->createMock(ConfigHelper::class); |
|
53
|
|
|
$this->publisher = $this->createMock(PublisherInterface::class); |
|
54
|
|
|
$this->observer = $this->createMock(Observer::class); |
|
55
|
|
|
$this->event = $this->createMock(Event::class); |
|
56
|
|
|
$this->magentoOrder = $this->createMock(MagentoOrder::class); |
|
57
|
|
|
|
|
58
|
|
|
$this->exportOrderObserver = new ExportOrderObserver( |
|
59
|
|
|
$this->configHelper, |
|
60
|
|
|
$this->publisher |
|
61
|
|
|
); |
|
62
|
|
|
} |
|
63
|
|
|
|
|
64
|
|
|
public function testExecuteApiDisabled() |
|
65
|
|
|
{ |
|
66
|
|
|
$this->configHelper->expects($this->once()) |
|
|
|
|
|
|
67
|
|
|
->method('isEnabled') |
|
68
|
|
|
->willReturn(false); |
|
69
|
|
|
|
|
70
|
|
|
$this->observer->expects($this->never()) |
|
71
|
|
|
->method('getEvent'); |
|
|
|
|
|
|
72
|
|
|
|
|
73
|
|
|
$this->exportOrderObserver->execute($this->observer); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
public function testExecuteWithGuestOrder() |
|
77
|
|
|
{ |
|
78
|
|
|
$this->configHelper->expects($this->once()) |
|
79
|
|
|
->method('isEnabled') |
|
80
|
|
|
->willReturn(true); |
|
81
|
|
|
|
|
82
|
|
|
$this->observer->expects($this->once()) |
|
83
|
|
|
->method('getEvent') |
|
84
|
|
|
->willReturn($this->event); |
|
|
|
|
|
|
85
|
|
|
|
|
86
|
|
|
$this->event->expects($this->once()) |
|
87
|
|
|
->method('getData') |
|
88
|
|
|
->with('order') |
|
|
|
|
|
|
89
|
|
|
->willReturn($this->magentoOrder); |
|
90
|
|
|
|
|
91
|
|
|
$this->magentoOrder->expects($this->once()) |
|
92
|
|
|
->method('getCustomerIsGuest') |
|
93
|
|
|
->willReturn(true); |
|
94
|
|
|
|
|
95
|
|
|
$this->publisher->expects($this->never()) |
|
|
|
|
|
|
96
|
|
|
->method('publish'); |
|
97
|
|
|
|
|
98
|
|
|
$this->exportOrderObserver->execute($this->observer); |
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
public function testExecute() |
|
102
|
|
|
{ |
|
103
|
|
|
$magentoOrderId = 123; |
|
104
|
|
|
|
|
105
|
|
|
$this->configHelper->expects($this->once()) |
|
106
|
|
|
->method('isEnabled') |
|
107
|
|
|
->willReturn(true); |
|
108
|
|
|
|
|
109
|
|
|
$this->observer->expects($this->once()) |
|
110
|
|
|
->method('getEvent') |
|
111
|
|
|
->willReturn($this->event); |
|
112
|
|
|
|
|
113
|
|
|
$this->event->expects($this->once()) |
|
114
|
|
|
->method('getData') |
|
115
|
|
|
->with('order') |
|
116
|
|
|
->willReturn($this->magentoOrder); |
|
117
|
|
|
|
|
118
|
|
|
$this->magentoOrder->expects($this->once()) |
|
119
|
|
|
->method('getCustomerIsGuest') |
|
120
|
|
|
->willReturn(false); |
|
121
|
|
|
|
|
122
|
|
|
$this->magentoOrder->expects($this->once()) |
|
123
|
|
|
->method('getId') |
|
124
|
|
|
->willReturn($magentoOrderId); |
|
125
|
|
|
|
|
126
|
|
|
$this->publisher->expects($this->once()) |
|
127
|
|
|
->method('publish') |
|
128
|
|
|
->with( |
|
129
|
|
|
Topics::SALES_ORDER_EXPORT, |
|
130
|
|
|
json_encode(['magento_order_id' => $magentoOrderId]) |
|
131
|
|
|
); |
|
132
|
|
|
|
|
133
|
|
|
$this->exportOrderObserver->execute($this->observer); |
|
134
|
|
|
} |
|
135
|
|
|
} |
|
136
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.