\JTwitterFriendsTest
Test class for JTwitterFriends.
Synopsis
class JTwitterFriendsTest
extends TestCase
{
- // members
- protected JRegistry $options;
- protected JHttp $client;
- protected JInput $input;
- protected JTwitterFriends $object;
- protected JTwitterOAuth $oauth;
- protected $sampleString;
- protected $errorString;
- protected $friendsRateLimit;
- protected $friendshipsRateLimit;
- protected $followersRateLimit;
- // Inherited members from TestCase
- protected $expectedErrors;
- // methods
- protected void setUp()
- public array seedUser()
- public void testGetFriendIds()
- public void testGetFriendIdsFailure()
- public array seedFriendshipDetails()
- public void testGetFriendshipDetails()
- public void testGetFriendshipDetailsFailure()
- public void testGetFollowerIds()
- public void testGetFollowerIdsFailure()
- public void testGetFriendshipsIncoming()
- public void testGetFriendshipsIncomingFailure()
- public void testGetFriendshipsOutgoing()
- public void testGetFriendshipsOutgoingFailure()
- public array seedFriendship()
- public void testFollow()
- public void testFollowFailure()
- public void testUnfollow()
- public void testUnfollowFailure()
- public array seedFriendshipsLookup()
- public void testGetFriendshipsLookup()
- public void testGetFriendshipsLookupFailure()
- public void testUpdateFriendship()
- public void testUpdateFriendshipFailure()
- public void testGetFriendshipNoRetweetIds()
- public void testGetFriendshipNoRetweetIdsFailure()
- // Inherited methods from TestCase
- public static boolean errorCallback()
- public void assignMockCallbacks()
- public void assignMockReturns()
- public JException expectedErrorCallback()
- public JApplication getMockApplication()
- public JApplicationCms getMockCmsApp()
- public JConfig getMockConfig()
- public JDatabase getMockDatabase()
- public JEventDispatcher getMockDispatcher()
- public JDocument getMockDocument()
- public JLanguage getMockLanguage()
- public JSession getMockSession()
- public JApplicationWeb getMockWeb()
- public void setExpectedError()
- protected void restoreErrorHandlers()
- protected void restoreFactoryState()
- protected void saveErrorHandlers()
- protected void saveFactoryState()
- protected void setErrorHandlers()
- protected void setErrorCallback()
- protected void setUp()
- protected void tearDown()
Hierarchy
Extends
Members
protected
- $client — JHttp
- $errorString — string
- $expectedErrors — array
- $followersRateLimit — string
- $friendsRateLimit — string
- $friendshipsRateLimit — string
- $input — JInput
- $oauth — JTwitterOAuth
- $object — JTwitterFriends
- $options — JRegistry
- $sampleString — string
Methods
protected
- setUp() — Sets up the fixture, for example, opens a network connection.
public
- seedFriendship() — Provides test data for request format detection.
- seedFriendshipDetails() — Provides test data for request format detection.
- seedFriendshipsLookup() — Provides test data for request format detection.
- seedUser() — Provides test data for request format detection.
- testFollow() — Tests the follow method
- testFollowFailure() — Tests the follow method - failure
- testGetFollowerIds() — Tests the getFollowerIds method
- testGetFollowerIdsFailure() — Tests the getFollowerIds method - failure
- testGetFriendIds() — Tests the getFriendIds method
- testGetFriendIdsFailure() — Tests the getFriendIds method - failure
- testGetFriendshipDetails() — Tests the getFriendshipDetails method
- testGetFriendshipDetailsFailure() — Tests the getFriendshipDetails method - failure
- testGetFriendshipNoRetweetIds() — Tests the getFriendshipNoRetweetIds method
- testGetFriendshipNoRetweetIdsFailure() — Tests the getFriendshipNoRetweetIds method - failure
- testGetFriendshipsIncoming() — Tests the getFriendshipsIncoming method
- testGetFriendshipsIncomingFailure() — Tests the getFriendshipsIncoming method - failure
- testGetFriendshipsLookup() — Tests the getFriendshipsLookup method
- testGetFriendshipsLookupFailure() — Tests the getFriendshipsLookup method - failure
- testGetFriendshipsOutgoing() — Tests the getFriendshipsOutgoing method
- testGetFriendshipsOutgoingFailure() — Tests the getFriendshipsOutgoing method - failure
- testUnfollow() — Tests the unfollow method
- testUnfollowFailure() — Tests the unfollow method - failure
- testUpdateFriendship() — Tests the updateFriendship method
- testUpdateFriendshipFailure() — Tests the updateFriendship method - failure
Inherited from TestCase
protected
- restoreErrorHandlers() — Sets the JError error handlers.
- restoreFactoryState() — Sets the Factory pointers
- saveErrorHandlers() — Saves the current state of the JError error handlers.
- saveFactoryState() — Saves the Factory pointers
- setErrorCallback() — Sets the JError error handlers to callback mode and points them at the test logging method.
- setErrorHandlers() — Sets the JError error handlers.
- setUp() — Overrides the parent setup method.
- tearDown() — Overrides the parent tearDown method.
public
- assignMockCallbacks() — Assigns mock callbacks to methods.
- assignMockReturns() — Assigns mock values to methods.
- errorCallback() — Receives the callback from JError and logs the required error information for the test.
- expectedErrorCallback() — Callback receives the error from JError and deals with it appropriately If a test expects a JError to be raised, it should call this setExpectedError first If you don't call this method first, the test will fail.
- getMockApplication() — Gets a mock application object.
- getMockCmsApp() — Gets a mock CMS application object.
- getMockConfig() — Gets a mock configuration object.
- getMockDatabase() — Gets a mock database object.
- getMockDispatcher() — Gets a mock dispatcher object.
- getMockDocument() — Gets a mock document object.
- getMockLanguage() — Gets a mock language object.
- getMockSession() — Gets a mock session object.
- getMockWeb() — Gets a mock web object.
- setExpectedError() — Tells the unit tests that a method or action you are about to attempt is expected to result in JError::raiseSomething being called.