# vim:syntax=perl #------------------------------------------------------------------- # WebGUI is Copyright 2001-2009 Plain Black Corporation. #------------------------------------------------------------------- # Please read the legal notices (docs/legal.txt) and the license # (docs/license.txt) that came with this distribution before using # this software. #------------------------------------------------------------------ # http://www.plainblack.com info@plainblack.com #------------------------------------------------------------------ # Test editing a GalleryAlbum from the web interface. Currently, it # is tested whether... # - users can add albums. # - photos can be rotated. use FindBin; use strict; use lib "$FindBin::Bin/../../../lib"; use Test::More; use WebGUI::Test; # Must use this before any other WebGUI modules use WebGUI::Session; use Test::Deep; plan skip_all => 'set WEBGUI_LIVE to enable this test' unless $ENV{WEBGUI_LIVE}; #---------------------------------------------------------------------------- # Init my $session = WebGUI::Test->session; my $node = WebGUI::Asset->getImportNode( $session ); my @versionTags = ( WebGUI::VersionTag->getWorking( $session ) ); # Override some settings to make things easier to test # userFunctionStyleId $session->setting->set( 'userFunctionStyleId', 'PBtmpl0000000000000132' ); # specialState $session->setting->set( 'specialState', '' ); # Create a user for testing purposes my $user = WebGUI::User->new( $session, "new" ); WebGUI::Test->addToCleanup($user); $user->username( 'dufresne' . time ); my $identifier = 'ritahayworth'; my $auth = WebGUI::Operation::Auth::getInstance( $session, $user->authMethod, $user->userId ); $auth->saveParams( $user->userId, $user->authMethod, { 'identifier' => Digest::MD5::md5_base64( $identifier ), }); my ($mech, $redirect, $response); # Get the site's base URL my $baseUrl = 'http://' . $session->config->get('sitename')->[0]; my $i18n = WebGUI::International->new( $session, 'Asset_GalleryAlbum' ); my $gallery = $node->addChild( { className => 'WebGUI::Asset::Wobject::Gallery', groupIdAddFile => '2', # Registered Users workflowIdCommit => 'pbworkflow000000000003', # Commit Content Immediately } ); $versionTags[-1]->commit; WebGUI::Test->addToCleanup(@versionTags); #---------------------------------------------------------------------------- # Tests if ( !eval { require Test::WWW::Mechanize; 1; } ) { plan skip_all => 'Cannot load Test::WWW::Mechanize. Will not test.'; } $mech = Test::WWW::Mechanize->new; $mech->get( $baseUrl ); if ( !$mech->success ) { plan skip_all => "Cannot load URL '$baseUrl'. Will not test."; } plan tests => 11; # Increment this number for each test you create #---------------------------------------------------------------------------- # Visitor user cannot add albums $mech = Test::WWW::Mechanize->new; $mech->get( $baseUrl . $gallery->getUrl('func=add;class=WebGUI::Asset::Wobject::GalleryAlbum') ); # Should contain the Log In form $mech->content_contains( "Permission Denied" ); #---------------------------------------------------------------------------- # Registered User can add albums $mech = getMechLogin( $baseUrl, $user, $identifier ); # Complete the GalleryAlbum edit form my $properties = { title => 'Gallery Album', description => 'This is a new Gallery Album', }; $mech->get_ok( $baseUrl . $gallery->getUrl('func=add;class=WebGUI::Asset::Wobject::GalleryAlbum') ); $mech->submit_form_ok( { with_fields => $properties, }, 'Sent GalleryAlbum edit form' ); # Shows the confirmation page $mech->content_contains( $i18n->get( 'what next' ), 'Shows message about what next', ); $mech->content_contains( q{func=add;class=WebGUI::Asset::File::GalleryFile::Photo}, 'Shows link to add a Photo', ); # Creates the album with the appropriate properties my $album = WebGUI::Asset->newByDynamicClass( $session, $gallery->getAlbumIds->[0] ); cmp_deeply( $properties, subhashof( $album->get ), "Properties from edit form are set correctly" ); #---------------------------------------------------------------------------- # Photos can be rotated using the respective form buttons # Use album from previous test my $album = $gallery->getFirstChild; # Add single photo to this album. No need to commit since auto-commit was # enabled for the Gallery asset. my $photo = $album->addChild({ className => "WebGUI::Asset::File::GalleryFile::Photo", }); my $photoId = $photo->getId; # Attach image file to photo asset (setFile also makes download versions) $photo->setFile( WebGUI::Test->getTestCollateralPath("rotation_test.png") ); my $storage = $photo->getStorageLocation; # Save dimensions of images my @oldDims; foreach my $file ( @{$storage->getFiles('showAll') } ) { push ( @oldDims, [ $storage->getSizeInPixels($file) ] ) unless $file eq '.'; } # Rotate photo (i.e. all attached images) by 90° CW $mech->get_ok( $baseUrl . $album->getUrl('func=edit'), 'Request GalleryAlbum edit screen' ); # Select the proper form $mech->form_name( 'galleryAlbumEdit' ); # Try to click the "rotate right" button $mech->submit_form_ok( { button => 'rotateRight-' . $photoId, }, 'Request rotation of photo by 90° CW' ); # Save new dimensions of images in reverse order my @newDims; foreach my $file ( @{$storage->getFiles('showAll') } ) { push ( @newDims, [ reverse($storage->getSizeInPixels($file)) ] ) unless $file eq '.'; } # Compare dimensions cmp_deeply( \@oldDims, \@newDims, "Check if all files were rotated by 90° CW" ); # Rotate photo (i.e. all attached images) by 90° CCW. No need to request the edit view since # an updated view was returned after the last form submittal. $mech->form_name( 'galleryAlbumEdit' ); # Try to click the "rotate left" button $mech->submit_form_ok( { button => 'rotateLeft-' . $photoId, }, 'Request rotation of photo by 90° CCW' ); # Save new dimensions of images in original order my @newerDims; foreach my $file ( @{$storage->getFiles('showAll') } ) { push ( @newerDims, [ $storage->getSizeInPixels($file) ] ) unless $file eq '.'; } # Compare dimensions cmp_deeply( \@oldDims, \@newerDims, "Check if all files were rotated by 90° CCW" ); #---------------------------------------------------------------------------- # getMechLogin( baseUrl, WebGUI::User, "identifier" ) # Returns a Test::WWW::Mechanize session after logging in the given user using # the given identifier (password) # baseUrl is a fully-qualified URL to the site to login to sub getMechLogin { my $baseUrl = shift; my $user = shift; my $identifier = shift; my $mech = Test::WWW::Mechanize->new; $mech->get( $baseUrl . '?op=auth;method=displayLogin' ); $mech->submit_form( with_fields => { username => $user->username, identifier => $identifier, }, ); return $mech; }