aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/opencart/system/library/UrlTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/opencart/system/library/UrlTest.php')
-rw-r--r--tests/phpunit/opencart/system/library/UrlTest.php36
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&amp;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&amp;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");
+ }
+
+}