Your IP : 216.73.216.38
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Paypal\Model\Report;
class SettlementTest extends \PHPUnit\Framework\TestCase
{
/**
* @magentoDbIsolation enabled
*/
public function testFetchAndSave()
{
/** @var $model \Magento\Paypal\Model\Report\Settlement; */
$model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
\Magento\Paypal\Model\Report\Settlement::class
);
$connection = $this->createPartialMock(\Magento\Framework\Filesystem\Io\Sftp::class, ['rawls', 'read']);
$filename = 'STL-00000000.00.abc.CSV';
$connection->expects($this->once())->method('rawls')->willReturn([$filename => []]);
$connection->expects($this->once())->method('read')->with($filename, $this->anything());
$model->fetchAndSave($connection);
}
/**
* @param array $config
* @dataProvider createConnectionExceptionDataProvider
*/
public function testCreateConnectionException($config)
{
$this->expectException(\InvalidArgumentException::class);
\Magento\Paypal\Model\Report\Settlement::createConnection($config);
}
/**
* @param array $automaticMode
* @param array $expectedResult
*
* @dataProvider createAutomaticModeDataProvider
*
* @magentoConfigFixture default_store paypal/fetch_reports/active 0
* @magentoConfigFixture default_store paypal/fetch_reports/ftp_ip 192.168.0.1
* @magentoConfigFixture current_store paypal/fetch_reports/active 1
* @magentoConfigFixture current_store paypal/fetch_reports/ftp_ip 127.0.0.1
* @magentoConfigFixture current_store paypal/fetch_reports/ftp_path /tmp
* @magentoConfigFixture current_store paypal/fetch_reports/ftp_login login
* @magentoConfigFixture current_store paypal/fetch_reports/ftp_password password
* @magentoConfigFixture current_store paypal/fetch_reports/ftp_sandbox 0
* @magentoDbIsolation enabled
*/
public function testGetSftpCredentials($automaticMode, $expectedResult)
{
/** @var $model \Magento\Paypal\Model\Report\Settlement; */
$model = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
\Magento\Paypal\Model\Report\Settlement::class
);
$result = $model->getSftpCredentials($automaticMode);
$this->assertEquals($expectedResult, $result);
}
/**
* @return array
*/
public function createConnectionExceptionDataProvider()
{
return [
[[]],
[['username' => 'test', 'password' => 'test', 'path' => '/']],
[['hostname' => 'example.com', 'password' => 'test', 'path' => '/']],
[['hostname' => 'example.com', 'username' => 'test', 'path' => '/']],
[['hostname' => 'example.com', 'username' => 'test', 'password' => 'test']]
];
}
/**
* @return array
*/
public function createAutomaticModeDataProvider()
{
return [
[
true,
[
[
'hostname' => '127.0.0.1',
'path' => '/tmp',
'username' => 'login',
'password' => 'password',
'sandbox' => '0'
]
]
],
[
false,
[
[
'hostname' => '127.0.0.1',
'path' => '/tmp',
'username' => 'login',
'password' => 'password',
'sandbox' => '0'
]
]
],
];
}
}