# t/parsefeed-atom-link.t # # Test LJ::ParseFeed with 'rel' attributes # # This code was forked from the LiveJournal project owned and operated # by Live Journal, Inc. The code has been modified and expanded by # Dreamwidth Studios, LLC. These files were originally licensed under # the terms of the license supplied by Live Journal, Inc, which can # currently be found at: # # http://code.livejournal.org/trac/livejournal/browser/trunk/LICENSE-LiveJournal.txt # # In accordance with the original license, this code and all its # modifications are provided under the GNU General Public License. # A copy of that license can be found in the LICENSE file included as # part of this distribution. use strict; use warnings; use Test::More tests => 3; BEGIN { $LJ::_T_CONFIG = 1; require "$ENV{LJHOME}/cgi-bin/ljlib.pl"; } use LJ::ParseFeed; my $testfeed = sub { my $link_content = shift; my $contents = qq { testing:atom:feed test atom feed testing 2007-01-08T23:40:33Z testing:atom:feed:entry $link_content default userpic 2006-09-14T07:39:07Z content content content }; my ( $feed, $error ) = LJ::ParseFeed::parse_feed($contents); my $item = $feed->{'items'}->[0]; return $item->{'link'}; }; is( $testfeed->(""), $LJ::SITEROOT, "rel=alternate is fine" ); is( $testfeed->(""), $LJ::SITEROOT, "no explicit rel attribute is also fine" ); ok( !$testfeed->(""), "rel that isn't 'alternate' not okay" );