diff options
author | Jesús <heckyel@hyperbola.info> | 2019-08-18 21:14:58 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-08-18 21:14:58 -0500 |
commit | 2eed7b082f83630301e51f57ca8394de228a8605 (patch) | |
tree | 1d19962d22d30f99317d9276e4bae7744fc93fc2 /tests/phpunit/opencart/system/library/UrlTest.php | |
download | librecart-2eed7b082f83630301e51f57ca8394de228a8605.tar.lz librecart-2eed7b082f83630301e51f57ca8394de228a8605.tar.xz librecart-2eed7b082f83630301e51f57ca8394de228a8605.zip |
first commit
Diffstat (limited to 'tests/phpunit/opencart/system/library/UrlTest.php')
-rw-r--r-- | tests/phpunit/opencart/system/library/UrlTest.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/tests/phpunit/opencart/system/library/UrlTest.php b/tests/phpunit/opencart/system/library/UrlTest.php new file mode 100644 index 0000000..110efe2 --- /dev/null +++ b/tests/phpunit/opencart/system/library/UrlTest.php @@ -0,0 +1,36 @@ +<?php + +class UrlTest extends OpenCartTest { + + public function testHomeUrl() { + $link = $this->url->link('common/home'); + $this->assertEquals(HTTP_SERVER . 'index.php?route=common/home', $link, "Could not construct homepage's URL"); + } + + public function testSecureHomeUrl() { + $link = $this->url->link('common/home', '', true); + $this->assertEquals(HTTPS_SERVER . 'index.php?route=common/home', $link, "Could not construct secure homepage's URL"); + } + + public function testProductUrl() { + $link = $this->url->link('product/product', 'product_id=1'); + $this->assertEquals(HTTP_SERVER . 'index.php?route=product/product&product_id=1', $link, "Could not construct product's URL"); + } + + public function testSecureProductUrl() { + $link = $this->url->link('product/product', 'product_id=1'); + $this->assertEquals(HTTPS_SERVER . 'index.php?route=product/product&product_id=1', $link, "Could not construct product's URL"); + } + + public function testProductUrlRewrite() { + $this->db->query("INSERT INTO `" . DB_PREFIX . "url_alias` SET query = 'product_id=1', keyword = 'product-1'"); + $this->config->set('config_seo_url', 1); + $urlAction = new Action('common/seo_url'); + $urlAction->execute($this->registry); + + $link = $this->url->link('product/product', 'product_id=1'); + $this->db->query("DELETE FROM " . DB_PREFIX . "url_alias WHERE query = 'product_id=1'"); + $this->assertEquals(HTTPS_SERVER . 'product-1', $link, "Could not construct URL's alias"); + } + +} |