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:
<?php
namespace Guzzle\Tests\Http\Message\Header;
use Guzzle\Http\Message\Header\Link;
use Guzzle\Tests\GuzzleTestCase;
class LinkTest extends GuzzleTestCase
{
public function testParsesLinks()
{
$link = new Link('Link', '<http:/.../front.jpeg>; rel=front; type="image/jpeg", <http://.../back.jpeg>; rel=back; type="image/jpeg", <http://.../side.jpeg?test=1>; rel=side; type="image/jpeg"');
$links = $link->getLinks();
$this->assertEquals(array(
array(
'rel' => 'front',
'type' => 'image/jpeg',
'url' => 'http:/.../front.jpeg',
),
array(
'rel' => 'back',
'type' => 'image/jpeg',
'url' => 'http://.../back.jpeg',
),
array(
'rel' => 'side',
'type' => 'image/jpeg',
'url' => 'http://.../side.jpeg?test=1'
)
), $links);
$this->assertEquals(array(
'rel' => 'back',
'type' => 'image/jpeg',
'url' => 'http://.../back.jpeg',
), $link->getLink('back'));
$this->assertTrue($link->hasLink('front'));
$this->assertFalse($link->hasLink('foo'));
}
public function testCanAddLink()
{
$link = new Link('Link', '<http://foo>; rel=a; type="image/jpeg"');
$link->addLink('http://test.com', 'test', array('foo' => 'bar'));
$this->assertEquals(
'<http://foo>; rel=a; type="image/jpeg", <http://test.com>; rel="test"; foo="bar"',
(string) $link
);
}
public function testCanParseLinksWithCommas()
{
$link = new Link('Link', '<http://example.com/TheBook/chapter1>; rel="previous"; title="start, index"');
$this->assertEquals(array(
array(
'rel' => 'previous',
'title' => 'start, index',
'url' => 'http://example.com/TheBook/chapter1',
)
), $link->getLinks());
}
}