GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( c92bdf...416677 )
by Andreas
04:49
created

testExecuteCustomerExportDisabled()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 9
nc 1
nop 0
dl 0
loc 14
rs 9.9666
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
/**
4
 */
5
6
namespace CommerceLeague\ActiveCampaign\Test\Observer\Customer;
7
8
use CommerceLeague\ActiveCampaign\Helper\Config as ConfigHelper;
9
use CommerceLeague\ActiveCampaign\MessageQueue\Topics;
10
use CommerceLeague\ActiveCampaign\Observer\Customer\ExportCustomerObserver;
11
use Magento\Customer\Model\Customer as MagentoCustomer;
12
use Magento\Framework\Event;
13
use Magento\Framework\Event\Observer;
14
use Magento\Framework\MessageQueue\PublisherInterface;
15
use PHPUnit\Framework\MockObject\MockObject;
16
use PHPUnit\Framework\TestCase;
17
18
class ExportCustomerObserverTest 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|MagentoCustomer
42
     */
43
    protected $magentoCustomer;
44
45
    /**
46
     * @var ExportCustomerObserver
47
     */
48
    protected $exportCustomerObserver;
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->magentoCustomer = $this->createMock(MagentoCustomer::class);
57
58
        $this->exportCustomerObserver = new ExportCustomerObserver(
59
            $this->configHelper,
60
            $this->publisher
61
        );
62
    }
63
64
    public function testExecuteApiDisabled()
65
    {
66
        $this->configHelper->expects($this->once())
0 ignored issues
show
Bug introduced by
The method expects() does not exist on CommerceLeague\ActiveCampaign\Helper\Config. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

66
        $this->configHelper->/** @scrutinizer ignore-call */ 
67
                             expects($this->once())

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.

Loading history...
67
            ->method('isEnabled')
68
            ->willReturn(false);
69
70
        $this->observer->expects($this->never())
71
            ->method('getEvent');
0 ignored issues
show
Bug introduced by
The method method() does not exist on PHPUnit\Framework\MockObject\MockObject. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

71
            ->/** @scrutinizer ignore-call */ method('getEvent');

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.

Loading history...
72
73
        $this->exportCustomerObserver->execute($this->observer);
74
    }
75
76
    public function testExecuteCustomerExportDisabled()
77
    {
78
        $this->configHelper->expects($this->once())
79
            ->method('isEnabled')
80
            ->willReturn(true);
81
82
        $this->configHelper->expects($this->once())
83
            ->method('isCustomerExportEnabled')
84
            ->willReturn(false);
85
86
        $this->observer->expects($this->never())
87
            ->method('getEvent');
88
89
        $this->exportCustomerObserver->execute($this->observer);
90
    }
91
92
    public function testExecute()
93
    {
94
        $magentoCustomerId = 123;
95
96
        $this->configHelper->expects($this->once())
97
            ->method('isEnabled')
98
            ->willReturn(true);
99
100
        $this->configHelper->expects($this->once())
101
            ->method('isCustomerExportEnabled')
102
            ->willReturn(true);
103
104
        $this->observer->expects($this->once())
105
            ->method('getEvent')
106
            ->willReturn($this->event);
0 ignored issues
show
Bug introduced by
The method willReturn() does not exist on PHPUnit\Framework\MockObject\MockObject. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

106
            ->/** @scrutinizer ignore-call */ willReturn($this->event);

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.

Loading history...
107
108
        $this->event->expects($this->once())
109
            ->method('getData')
110
            ->with('customer')
0 ignored issues
show
Bug introduced by
The method with() does not exist on PHPUnit\Framework\MockObject\MockObject. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

110
            ->/** @scrutinizer ignore-call */ with('customer')

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.

Loading history...
111
            ->willReturn($this->magentoCustomer);
112
113
        $this->magentoCustomer->expects($this->once())
114
            ->method('getId')
115
            ->willReturn($magentoCustomerId);
116
117
        $this->publisher->expects($this->once())
0 ignored issues
show
Bug introduced by
The method expects() does not exist on Magento\Framework\MessageQueue\PublisherInterface. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

117
        $this->publisher->/** @scrutinizer ignore-call */ 
118
                          expects($this->once())

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.

Loading history...
118
            ->method('publish')
119
            ->with(
120
                Topics::CUSTOMER_CUSTOMER_EXPORT,
121
                json_encode(['magento_customer_id' => $magentoCustomerId])
122
            );
123
124
        $this->exportCustomerObserver->execute($this->observer);
125
    }
126
}
127