1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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");
}
}
|