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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<?php
class Url_helper_test extends CI_TestCase {
public function set_up()
{
$this->helper('url');
}
public function test_url_title()
{
$words = array(
'foo bar /' => 'foo-bar',
'\ testing 12' => 'testing-12'
);
foreach ($words as $in => $out)
{
$this->assertEquals($out, url_title($in, 'dash', TRUE));
}
}
// --------------------------------------------------------------------
public function test_url_title_extra_dashes()
{
$words = array(
'_foo bar_' => 'foo_bar',
'_What\'s wrong with CSS?_' => 'Whats_wrong_with_CSS'
);
foreach ($words as $in => $out)
{
$this->assertEquals($out, url_title($in, 'underscore'));
}
}
// --------------------------------------------------------------------
public function test_prep_url()
{
$this->assertEquals('http://codeigniter.com', prep_url('codeigniter.com'));
$this->assertEquals('http://www.codeigniter.com', prep_url('www.codeigniter.com'));
}
// --------------------------------------------------------------------
public function test_auto_link_url()
{
$strings = array(
'www.codeigniter.com test' => '<a href="http://www.codeigniter.com">http://www.codeigniter.com</a> test',
'This is my noreply@codeigniter.com test' => 'This is my noreply@codeigniter.com test',
'<br />www.google.com' => '<br /><a href="http://www.google.com">http://www.google.com</a>',
'Download CodeIgniter at www.codeigniter.com. Period test.' => 'Download CodeIgniter at <a href="http://www.codeigniter.com">http://www.codeigniter.com</a>. Period test.',
'Download CodeIgniter at www.codeigniter.com, comma test' => 'Download CodeIgniter at <a href="http://www.codeigniter.com">http://www.codeigniter.com</a>, comma test'
);
foreach ($strings as $in => $out)
{
$this->assertEquals($out, auto_link($in, 'url'));
}
}
// --------------------------------------------------------------------
public function test_pull_675()
{
$strings = array(
'<br />www.google.com' => '<br /><a href="http://www.google.com">http://www.google.com</a>',
);
foreach ($strings as $in => $out)
{
$this->assertEquals($out, auto_link($in, 'url'));
}
}
}
|