Search in sources :

Example 16 with Tweet

use of org.springframework.social.twitter.api.Tweet in project spring-integration by spring-projects.

the class TwitterSearchOutboundGatewayTests method testSearchParamsQueryCustomExpression.

@Test
public void testSearchParamsQueryCustomExpression() {
    this.gateway.setSearchArgsExpression(new SpelExpressionParser().parseExpression("new SearchParameters('foo' + payload).count(5).sinceId(11)"));
    Tweet tweet = mock(Tweet.class);
    SearchMetadata searchMetadata = mock(SearchMetadata.class);
    final SearchResults searchResults = new SearchResults(Collections.singletonList(tweet), searchMetadata);
    doAnswer(invocation -> {
        SearchParameters searchParameters = invocation.getArgument(0);
        assertEquals("foobar", searchParameters.getQuery());
        assertEquals(Integer.valueOf(5), searchParameters.getCount());
        assertEquals(Long.valueOf(11), searchParameters.getSinceId());
        return searchResults;
    }).when(this.searchOps).search(any(SearchParameters.class));
    this.gateway.handleMessage(new GenericMessage<String>("bar"));
    Message<?> reply = this.outputChannel.receive(0);
    assertNotNull(reply);
    @SuppressWarnings("unchecked") List<Tweet> tweets = (List<Tweet>) reply.getPayload();
    assertEquals(1, tweets.size());
    assertSame(tweet, tweets.get(0));
    assertSame(searchMetadata, reply.getHeaders().get(TwitterHeaders.SEARCH_METADATA));
}
Also used : SearchParameters(org.springframework.social.twitter.api.SearchParameters) SpelExpressionParser(org.springframework.expression.spel.standard.SpelExpressionParser) Tweet(org.springframework.social.twitter.api.Tweet) ArrayList(java.util.ArrayList) List(java.util.List) SearchMetadata(org.springframework.social.twitter.api.SearchMetadata) SearchResults(org.springframework.social.twitter.api.SearchResults) Test(org.junit.Test)

Aggregations

Tweet (org.springframework.social.twitter.api.Tweet)16 Test (org.junit.Test)11 SearchParameters (org.springframework.social.twitter.api.SearchParameters)8 SearchResults (org.springframework.social.twitter.api.SearchResults)8 ArrayList (java.util.ArrayList)7 List (java.util.List)7 SearchMetadata (org.springframework.social.twitter.api.SearchMetadata)7 TwitterTemplate (org.springframework.social.twitter.api.impl.TwitterTemplate)6 SpelExpressionParser (org.springframework.expression.spel.standard.SpelExpressionParser)3 Properties (java.util.Properties)2 Ignore (org.junit.Ignore)2 PropertiesFactoryBean (org.springframework.beans.factory.config.PropertiesFactoryBean)2 ClassPathResource (org.springframework.core.io.ClassPathResource)2 Message (org.springframework.messaging.Message)2 Secured (org.springframework.security.access.annotation.Secured)2 SearchOperations (org.springframework.social.twitter.api.SearchOperations)2 StatusDetails (org.springframework.social.twitter.api.StatusDetails)2 Twitter (org.springframework.social.twitter.api.Twitter)2 MessageHistory (org.springframework.integration.history.MessageHistory)1 MetadataStore (org.springframework.integration.metadata.MetadataStore)1