@@ -111,7 +111,7 @@ |
||
| 111 | 111 | Table::TYPE_TIMESTAMP, |
| 112 | 112 | null, |
| 113 | 113 | array('nullable'=>false, |
| 114 | - 'default'=>Table::TIMESTAMP_INIT) |
|
| 114 | + 'default'=>Table::TIMESTAMP_INIT) |
|
| 115 | 115 | ); |
| 116 | 116 | return $dbConnection->createTable($table); |
| 117 | 117 | } |
@@ -111,7 +111,7 @@ |
||
| 111 | 111 | Table::TYPE_TIMESTAMP, |
| 112 | 112 | null, |
| 113 | 113 | array('nullable'=>false, |
| 114 | - 'default'=>Table::TIMESTAMP_INIT) |
|
| 114 | + 'default'=>Table::TIMESTAMP_INIT) |
|
| 115 | 115 | ); |
| 116 | 116 | return $dbConnection->createTable($table); |
| 117 | 117 | } |
@@ -166,9 +166,9 @@ |
||
| 166 | 166 | |
| 167 | 167 | $body = array('PAGANTIS_TITLE' => 'changed'); |
| 168 | 168 | $response = Request::post($configUrl) |
| 169 | - ->body($body, Mime::FORM) |
|
| 170 | - ->expectsJSON() |
|
| 171 | - ->send(); |
|
| 169 | + ->body($body, Mime::FORM) |
|
| 170 | + ->expectsJSON() |
|
| 171 | + ->send(); |
|
| 172 | 172 | $title = $response->body->PAGANTIS_TITLE; |
| 173 | 173 | $this->assertEquals('changed', $title, "PR62=>".$configUrl." = ".$title); |
| 174 | 174 | } |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | |
| 26 | 26 | /** |
| 27 | 27 | * testMagentoOpen |
| 28 | - */ |
|
| 28 | + */ |
|
| 29 | 29 | public function testpagantisMg21BasicTest() |
| 30 | 30 | { |
| 31 | 31 | $this->webDriver->get($this->configuration['magentoUrl']); |
@@ -24,22 +24,22 @@ discard block |
||
| 24 | 24 | $installer->startSetup(); |
| 25 | 25 | |
| 26 | 26 | $table = $installer->getConnection() |
| 27 | - ->newTable($installer->getTable(self::CONFIG_TABLE)) |
|
| 28 | - ->addColumn( |
|
| 29 | - 'id', |
|
| 30 | - \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER, |
|
| 31 | - null, |
|
| 32 | - ['identity' => true, 'unsigned' => true, 'nullable' => |
|
| 33 | - false, 'primary' => true], |
|
| 34 | - 'Entity ID' |
|
| 35 | - ) |
|
| 36 | - ->addColumn( |
|
| 37 | - 'config', |
|
| 38 | - \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
|
| 39 | - 60, |
|
| 40 | - ['nullable' => false], |
|
| 41 | - 'Config' |
|
| 42 | - ) |
|
| 27 | + ->newTable($installer->getTable(self::CONFIG_TABLE)) |
|
| 28 | + ->addColumn( |
|
| 29 | + 'id', |
|
| 30 | + \Magento\Framework\DB\Ddl\Table::TYPE_INTEGER, |
|
| 31 | + null, |
|
| 32 | + ['identity' => true, 'unsigned' => true, 'nullable' => |
|
| 33 | + false, 'primary' => true], |
|
| 34 | + 'Entity ID' |
|
| 35 | + ) |
|
| 36 | + ->addColumn( |
|
| 37 | + 'config', |
|
| 38 | + \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
|
| 39 | + 60, |
|
| 40 | + ['nullable' => false], |
|
| 41 | + 'Config' |
|
| 42 | + ) |
|
| 43 | 43 | ->addColumn( |
| 44 | 44 | 'value', |
| 45 | 45 | \Magento\Framework\DB\Ddl\Table::TYPE_TEXT, |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | ['nullable' => false], |
| 48 | 48 | 'Value' |
| 49 | 49 | ) |
| 50 | - ->setComment('Pagantis config table'); |
|
| 50 | + ->setComment('Pagantis config table'); |
|
| 51 | 51 | |
| 52 | 52 | $installer->getConnection()->createTable($table); |
| 53 | 53 | |
@@ -360,9 +360,9 @@ |
||
| 360 | 360 | $magentoVersion = $this->productMetadataInterface->getVersion(); |
| 361 | 361 | $moduleInfo = $this->moduleList->getOne('Pagantis_Pagantis'); |
| 362 | 362 | return array( 'magento' => $magentoVersion, |
| 363 | - 'pagantis' => $moduleInfo['setup_version'], |
|
| 364 | - 'php' => phpversion(), |
|
| 365 | - 'curl' => $curlVersion); |
|
| 363 | + 'pagantis' => $moduleInfo['setup_version'], |
|
| 364 | + 'php' => phpversion(), |
|
| 365 | + 'curl' => $curlVersion); |
|
| 366 | 366 | } |
| 367 | 367 | |
| 368 | 368 | /** |
@@ -20,20 +20,20 @@ |
||
| 20 | 20 | * @var array $defaultConfigs |
| 21 | 21 | */ |
| 22 | 22 | public $defaultConfigs = array('PAGANTIS_TITLE'=>'Instant Financing', |
| 23 | - 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | - 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | - 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | - 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | - 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | - 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | - 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | - 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | - 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | - 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | - 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | - 'PAGANTIS_URL_OK'=>'', |
|
| 35 | - 'PAGANTIS_URL_KO'=>'', |
|
| 36 | - 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 23 | + 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | + 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | + 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | + 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | + 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | + 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | + 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | + 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | + 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | + 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | + 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | + 'PAGANTIS_URL_OK'=>'', |
|
| 35 | + 'PAGANTIS_URL_KO'=>'', |
|
| 36 | + 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -20,20 +20,20 @@ |
||
| 20 | 20 | * @var array $defaultConfigs |
| 21 | 21 | */ |
| 22 | 22 | public $defaultConfigs = array('PAGANTIS_TITLE'=>'Instant Financing', |
| 23 | - 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | - 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | - 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | - 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | - 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | - 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | - 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | - 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | - 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | - 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | - 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | - 'PAGANTIS_URL_OK'=>'', |
|
| 35 | - 'PAGANTIS_URL_KO'=>'', |
|
| 36 | - 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 23 | + 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 24 | + 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 25 | + 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 26 | + 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 27 | + 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 28 | + 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 29 | + 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 30 | + 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 31 | + 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 32 | + 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 33 | + 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 34 | + 'PAGANTIS_URL_OK'=>'', |
|
| 35 | + 'PAGANTIS_URL_KO'=>'', |
|
| 36 | + 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!' |
|
| 37 | 37 | ); |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -16,21 +16,21 @@ |
||
| 16 | 16 | * @var array $defaultConfigs |
| 17 | 17 | */ |
| 18 | 18 | public $defaultConfigs = array('PAGANTIS_TITLE'=>'Instant Financing', |
| 19 | - 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 20 | - 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 21 | - 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 22 | - 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 23 | - 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 24 | - 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 25 | - 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 26 | - 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 27 | - 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 28 | - 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 29 | - 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 30 | - 'PAGANTIS_URL_OK'=>'', |
|
| 31 | - 'PAGANTIS_URL_KO'=>'', |
|
| 32 | - 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!', |
|
| 33 | - 'PAGANTIS_ALLOWED_COUNTRIES' => 'a:2:{i:0;s:2:"es";i:1;s:2:"it";}' |
|
| 19 | + 'PAGANTIS_SIMULATOR_DISPLAY_TYPE'=>'pgSDK.simulator.types.SIMPLE', |
|
| 20 | + 'PAGANTIS_SIMULATOR_DISPLAY_SKIN'=>'pgSDK.simulator.skins.BLUE', |
|
| 21 | + 'PAGANTIS_SIMULATOR_DISPLAY_POSITION'=>'hookDisplayProductButtons', |
|
| 22 | + 'PAGANTIS_SIMULATOR_START_INSTALLMENTS'=>3, |
|
| 23 | + 'PAGANTIS_SIMULATOR_MAX_INSTALLMENTS'=>12, |
|
| 24 | + 'PAGANTIS_SIMULATOR_CSS_POSITION_SELECTOR'=>'default', |
|
| 25 | + 'PAGANTIS_SIMULATOR_DISPLAY_CSS_POSITION'=>'pgSDK.simulator.positions.INNER', |
|
| 26 | + 'PAGANTIS_SIMULATOR_CSS_PRICE_SELECTOR'=>'default', |
|
| 27 | + 'PAGANTIS_SIMULATOR_CSS_QUANTITY_SELECTOR'=>'default', |
|
| 28 | + 'PAGANTIS_FORM_DISPLAY_TYPE'=>0, |
|
| 29 | + 'PAGANTIS_DISPLAY_MIN_AMOUNT'=>1, |
|
| 30 | + 'PAGANTIS_URL_OK'=>'', |
|
| 31 | + 'PAGANTIS_URL_KO'=>'', |
|
| 32 | + 'PAGANTIS_TITLE_EXTRA' => 'Pay up to 12 comfortable installments with Pagantis. Completely online and sympathetic request, and the answer is immediate!', |
|
| 33 | + 'PAGANTIS_ALLOWED_COUNTRIES' => 'a:2:{i:0;s:2:"es";i:1;s:2:"it";}' |
|
| 34 | 34 | ); |
| 35 | 35 | |
| 36 | 36 | /** |