|
0
|
1 |
<?php |
|
|
2 |
|
|
|
3 |
/* |
|
|
4 |
* This file is part of the Assetic package, an OpenSky project. |
|
|
5 |
* |
|
|
6 |
* (c) 2010-2011 OpenSky Project Inc |
|
|
7 |
* |
|
|
8 |
* For the full copyright and license information, please view the LICENSE |
|
|
9 |
* file that was distributed with this source code. |
|
|
10 |
*/ |
|
|
11 |
|
|
|
12 |
namespace Assetic\Test\Asset; |
|
|
13 |
|
|
|
14 |
use Assetic\Asset\HttpAsset; |
|
|
15 |
|
|
|
16 |
class HttpAssetTest extends \PHPUnit_Framework_TestCase |
|
|
17 |
{ |
|
|
18 |
const JQUERY = 'https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js'; |
|
|
19 |
|
|
|
20 |
public function testGetLastModified() |
|
|
21 |
{ |
|
|
22 |
$asset = new HttpAsset(self::JQUERY); |
|
|
23 |
$this->assertInternalType('integer', $asset->getLastModified(), '->getLastModified() returns an integer'); |
|
|
24 |
} |
|
|
25 |
|
|
|
26 |
public function testProtocolRelativeUrl() |
|
|
27 |
{ |
|
|
28 |
$asset = new HttpAsset(substr(self::JQUERY, 6)); |
|
|
29 |
$asset->load(); |
|
|
30 |
$this->assertNotEmpty($asset->getContent()); |
|
|
31 |
} |
|
|
32 |
|
|
|
33 |
public function testMalformedUrl() |
|
|
34 |
{ |
|
|
35 |
$this->setExpectedException('InvalidArgumentException'); |
|
|
36 |
|
|
|
37 |
new HttpAsset(__FILE__); |
|
|
38 |
} |
|
|
39 |
|
|
|
40 |
public function testInvalidUrl() |
|
|
41 |
{ |
|
|
42 |
$this->setExpectedException('RuntimeException'); |
|
|
43 |
|
|
|
44 |
$asset = new HttpAsset('http://invalid.com/foobar'); |
|
|
45 |
$asset->load(); |
|
|
46 |
} |
|
|
47 |
|
|
|
48 |
public function testSourceMetadata() |
|
|
49 |
{ |
|
|
50 |
$asset = new HttpAsset(self::JQUERY); |
|
|
51 |
$this->assertEquals('https://ajax.googleapis.com', $asset->getSourceRoot(), '->__construct() set the source root'); |
|
|
52 |
$this->assertEquals('ajax/libs/jquery/1.6.1/jquery.min.js', $asset->getSourcePath(), '->__construct() set the source path'); |
|
|
53 |
} |
|
|
54 |
} |