1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* CakePHPify : CakePHP Plugin for Shopify API Authentication |
4
|
|
|
* Copyright (c) Multidimension.al (http://multidimension.al) |
5
|
|
|
* Github : https://github.com/multidimension-al/cakephpify |
6
|
|
|
* |
7
|
|
|
* Licensed under The MIT License |
8
|
|
|
* For full copyright and license information, please see the LICENSE file |
9
|
|
|
* Redistributions of files must retain the above copyright notice. |
10
|
|
|
* |
11
|
|
|
* @copyright (c) Multidimension.al (http://multidimension.al) |
12
|
|
|
* @link https://github.com/multidimension-al/cakephpify CakePHPify Github |
13
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License |
14
|
|
|
*/ |
15
|
|
|
|
16
|
|
|
namespace Multidimensional\Shopify\Tests\Controller\Component; |
17
|
|
|
|
18
|
|
|
use Multidimensional\Shopify\Controller\Component\ShopifyDatabaseComponent; |
19
|
|
|
|
20
|
|
|
use Cake\Controller\Controller; |
21
|
|
|
use Cake\Controller\ComponentRegistry; |
22
|
|
|
use Cake\Event\Event; |
23
|
|
|
use Cake\Network\Request; |
24
|
|
|
use Cake\Network\Response; |
25
|
|
|
use Cake\TestSuite\TestCase; |
26
|
|
|
|
27
|
|
|
class ShopifyDatabaseComponentTest extends TestCase { |
28
|
|
|
|
29
|
|
|
public $component = null; |
30
|
|
|
public $controller = null; |
31
|
|
|
|
32
|
|
|
public $fixtures = ['plugin.Multidimensional/Shopify.Shops', |
33
|
|
|
'plugin.Multidimensional/Shopify.AccessTokens']; |
34
|
|
|
|
35
|
|
|
public function setUp() { |
36
|
|
|
parent::setUp(); |
37
|
|
|
$request = new Request(); |
38
|
|
|
$response = new Response(); |
39
|
|
|
$this->controller = $this->getMockBuilder('Cake\Controller\Controller') |
40
|
|
|
->setConstructorArgs([$request, $response]) |
41
|
|
|
->setMethods(null) |
42
|
|
|
->getMock(); |
43
|
|
|
$registry = new ComponentRegistry($this->controller); |
44
|
|
|
$this->component = new ShopifyDatabaseComponent($registry); |
45
|
|
|
$event = new Event('Controller.startup', $this->controller); |
46
|
|
|
$this->component->startup($event); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
public function tearDown() { |
50
|
|
|
parent::tearDown(); |
51
|
|
|
unset($this->component, $this->controller); |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
public function testShopDataToDatabase() { |
55
|
|
|
|
56
|
|
|
|
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
public function testAccessTokenToDatabase() { |
60
|
|
|
|
61
|
|
|
|
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
public function testGetShopIdFromDomain() { |
65
|
|
|
|
66
|
|
|
|
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
public function testGetShopDataFromAccessToken() { |
70
|
|
|
|
71
|
|
|
|
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
public function testGetAccessTokenFromShopDomain() { |
75
|
|
|
|
76
|
|
|
|
77
|
|
|
} |
78
|
|
|
|
79
|
|
|
} |
80
|
|
|
|