phpDocumentor GalleryCore
PHPUnit
[ class tree: GalleryCore ] [ index: GalleryCore ] [ all elements ]

Class: PluginCallbackTest

Source Location: /modules/core/test/phpunit/PluginCallbackTest.class

Class PluginCallbackTest

Inherited Properties, Constants, and Methods
Inherited Properties Inherited Methods Inherited Constants

Inherited From GalleryTestCase

GalleryTestCase::$_cleanup

Inherited From GalleryTestCase

GalleryTestCase::GalleryTestCase()
GalleryTestCase::assert()
GalleryTestCase::assertEquals()
GalleryTestCase::assertErrorEquals()
Fail if the provided GalleryStatus object does not contain the given error code.
GalleryTestCase::assertEventFired()
Fail if the provided event name was not fired.
GalleryTestCase::assertEventNotFired()
Fail if the provided event name was fired
GalleryTestCase::DeepCompare()
GalleryTestCase::failWithStatus()
This is deprecated in Gallery 2.3 -- now tests should just return $ret and let the framework generate the right failure message.
GalleryTestCase::getEntityCounter()
Get the entity counter listener which contains the types and number of elements deleted.
GalleryTestCase::setUp()
GalleryTestCase::tearDown()
GalleryTestCase::_array_unshift_key_value()
Utility method to array_unshift a single key => value pair.
GalleryTestCase::_becomeGuestUser()
GalleryTestCase::_createDerivative()
GalleryTestCase::_createLinkedItem()
Create a random link item
GalleryTestCase::_createRandomAlbum()
Create a random album
GalleryTestCase::_createRandomDataItem()
Create a random data item
GalleryTestCase::_createRandomGroup()
Create a random group
GalleryTestCase::_createRandomUser()
Create a random user
GalleryTestCase::_createUser()
GalleryTestCase::_deleteAndVerifyEntity()
GalleryTestCase::_disableUserName()
Convenience method to mark a username as disabled.
GalleryTestCase::_getRootId()
GalleryTestCase::_getUnusedId()
Get an id that is not used for anything.
GalleryTestCase::_initEventListenersForTest()
Disable all but some core event listeners by default.
GalleryTestCase::_markEventListenersForCleanup()
Create a backup of the registered event listeners which will be restored in tearDown.
GalleryTestCase::_markFactoryForCleanup()
Create a backup of the factory data which will be restored in tearDown.
GalleryTestCase::_markFactoryModuleForCleanup()
GalleryTestCase::_markForCleanup()
GalleryTestCase::_markPluginParametersForCleanup()
Store plugin parameters to be restored in tearDown
GalleryTestCase::_markToolkitForCleanup()
GalleryTestCase::_registerEventListener()
Register a The NullEventListener for a test
GalleryTestCase::_registerFactoryImplementationForTest()
Register a factory implementation temporarily for this test.
GalleryTestCase::_registerTestEventListener()
Register and event name and associated listener (deprecated).
GalleryTestCase::_setMarkupType()
Set core parameter for markup type.
GalleryTestCase::_signUrl()
Adds an authToken to the given URL
GalleryTestCase::_unregisterFactoryImplementationForTest()
Unregister a specific factory implementation or all implementations of a spefific type temporarily for this test.
GalleryTestCase::_verifyEntity()
GalleryTestCase::_verifyFields()
GalleryTestCase::_verifyMissing()

[ Top ]
Method Summary
PluginCallbackTest   PluginCallbackTest()  
void   setUp()  
void   tearDown()  
void   testActivateModule()   Activate a module that doesn't require configuration (this should succeed)
void   testActivateModuleNeedsConfiguration()   Activate a module that requires configuration (this should fail)
void   testActivateModuleWithRedirect()   Activate a module that sends back a redirect
void   testActivateTheme()   Activate a theme.
void   testActivateThemeWithRedirect()   Activate a theme that sends back a redirect
void   testCalculateStateChangesIds()  
void   testCalculateStateChangesIdsDontConflict()  
void   testCalculateStateChangesNoChange()  
void   testCalculateStateChangesPluginDeleted()  
void   testDeactivateAlreadyDeactivatedModule()  
void   testDeactivateAlreadyDeactivatedTheme()  
void   testDeactivateDefaultTheme()  
void   testDeactivateModule()  
void   testDeactivateTheme()  
void   testDeleteActiveModule()  
void   testDeleteModuleFailsToRmdir()  
void   testFailureInCallbackTriggersRollback()  
void   testFailureInPluginStatesAfterHandlingRequestTriggersRollback()  
void   testFailureInPluginStatesBeforeHandlingRequestTriggersRollback()  
void   testGetPluginStateActive()  
void   testGetPluginStateCore()  
void   testGetPluginStateInactive()  
void   testGetPluginStateIncompatibleCoreApi()  
void   testGetPluginStateIncompatibleModuleApi()  
void   testGetPluginStateUnconfigured()  
void   testGetPluginStateUninstalled()  
void   testGetPluginStateUnupgraded()  
void   testInstallModule()  
void   testInstallModuleNeedsConfiguration()  
void   testInstallModuleThatReportsWrongAutoConfigureResult()  
void   testInstallTheme()  
void   testUninstallActiveModule()  
void   testUninstallInactiveModule()  
void   testUninstallTheme()  
void   testUpgradeModule()  
void   testUpgradeTheme()  
void   _getPluginState()  
void   _handleCallback()  

[ Top ]
Methods
Constructor PluginCallbackTest  [line 37]

  PluginCallbackTest PluginCallbackTest( $methodName  )

Parameters:
   $methodName: 


[ Top ]
setUp  [line 41]

  void setUp( )



Redefinition of:
GalleryTestCase::setUp()

[ Top ]
tearDown  [line 60]

  void tearDown( )



Redefinition of:
GalleryTestCase::tearDown()

[ Top ]
testActivateModule  [line 197]

  void testActivateModule( )

Activate a module that doesn't require configuration (this should succeed)



[ Top ]
testActivateModuleNeedsConfiguration  [line 261]

  void testActivateModuleNeedsConfiguration( )

Activate a module that requires configuration (this should fail)



[ Top ]
testActivateModuleWithRedirect  [line 228]

  void testActivateModuleWithRedirect( )

Activate a module that sends back a redirect



[ Top ]
testActivateTheme  [line 213]

  void testActivateTheme( )

Activate a theme.



[ Top ]
testActivateThemeWithRedirect  [line 245]

  void testActivateThemeWithRedirect( )

Activate a theme that sends back a redirect



[ Top ]
testCalculateStateChangesIds  [line 536]

  void testCalculateStateChangesIds( )



[ Top ]
testCalculateStateChangesIdsDontConflict  [line 527]

  void testCalculateStateChangesIdsDontConflict( )



[ Top ]
testCalculateStateChangesNoChange  [line 519]

  void testCalculateStateChangesNoChange( )



[ Top ]
testCalculateStateChangesPluginDeleted  [line 547]

  void testCalculateStateChangesPluginDeleted( )



[ Top ]
testDeactivateAlreadyDeactivatedModule  [line 325]

  void testDeactivateAlreadyDeactivatedModule( )



[ Top ]
testDeactivateAlreadyDeactivatedTheme  [line 337]

  void testDeactivateAlreadyDeactivatedTheme( )



[ Top ]
testDeactivateDefaultTheme  [line 307]

  void testDeactivateDefaultTheme( )



[ Top ]
testDeactivateModule  [line 274]

  void testDeactivateModule( )



[ Top ]
testDeactivateTheme  [line 287]

  void testDeactivateTheme( )



[ Top ]
testDeleteActiveModule  [line 385]

  void testDeleteActiveModule( )



[ Top ]
testDeleteModuleFailsToRmdir  [line 425]

  void testDeleteModuleFailsToRmdir( )



[ Top ]
testFailureInCallbackTriggersRollback  [line 578]

  void testFailureInCallbackTriggersRollback( )



[ Top ]
testFailureInPluginStatesAfterHandlingRequestTriggersRollback  [line 602]

  void testFailureInPluginStatesAfterHandlingRequestTriggersRollback( )



[ Top ]
testFailureInPluginStatesBeforeHandlingRequestTriggersRollback  [line 555]

  void testFailureInPluginStatesBeforeHandlingRequestTriggersRollback( )



[ Top ]
testGetPluginStateActive  [line 457]

  void testGetPluginStateActive( )



[ Top ]
testGetPluginStateCore  [line 452]

  void testGetPluginStateCore( )



[ Top ]
testGetPluginStateInactive  [line 509]

  void testGetPluginStateInactive( )



[ Top ]
testGetPluginStateIncompatibleCoreApi  [line 465]

  void testGetPluginStateIncompatibleCoreApi( )



[ Top ]
testGetPluginStateIncompatibleModuleApi  [line 473]

  void testGetPluginStateIncompatibleModuleApi( )



[ Top ]
testGetPluginStateUnconfigured  [line 499]

  void testGetPluginStateUnconfigured( )



[ Top ]
testGetPluginStateUninstalled  [line 481]

  void testGetPluginStateUninstalled( )



[ Top ]
testGetPluginStateUnupgraded  [line 490]

  void testGetPluginStateUnupgraded( )



[ Top ]
testInstallModule  [line 84]

  void testInstallModule( )



[ Top ]
testInstallModuleNeedsConfiguration  [line 119]

  void testInstallModuleNeedsConfiguration( )



[ Top ]
testInstallModuleThatReportsWrongAutoConfigureResult  [line 135]

  void testInstallModuleThatReportsWrongAutoConfigureResult( )



[ Top ]
testInstallTheme  [line 103]

  void testInstallTheme( )



[ Top ]
testUninstallActiveModule  [line 348]

  void testUninstallActiveModule( )



[ Top ]
testUninstallInactiveModule  [line 361]

  void testUninstallInactiveModule( )



[ Top ]
testUninstallTheme  [line 373]

  void testUninstallTheme( )



[ Top ]
testUpgradeModule  [line 159]

  void testUpgradeModule( )



[ Top ]
testUpgradeTheme  [line 178]

  void testUpgradeTheme( )



[ Top ]
_getPluginState  [line 441]

  void _getPluginState( $type, $status  )

Parameters:
   $type: 
   $status: 


[ Top ]
_handleCallback  [line 75]

  void _handleCallback( $command  )

Parameters:
   $command: 


[ Top ]

Documentation generated on Fri, 08 Oct 2010 05:46:43 -0700 by phpDocumentor 1.3.0RC6