package org.springframework.social.flickr.connect; import static org.springframework.http.HttpMethod.GET; import static org.springframework.social.test.client.RequestMatchers.method; import static org.springframework.social.test.client.RequestMatchers.requestTo; import static org.springframework.social.test.client.ResponseCreators.withResponse; import org.junit.Test; /** * @author HemantS * */ public class CollectionsTemplateTest extends AbstractFlickrApiTest { @Test public void getInfoTest() { mockServer .expect(requestTo("http://api.flickr.com/services/rest/?method=flickr.collections.getInfo&format=json&nojsoncallback=1")) .andExpect(method(GET)) .andRespond( withResponse(jsonResource("testuser"), responseHeaders)); } @Test public void getTreeTest() { mockServer .expect(requestTo("http://api.flickr.com/services/rest/?method=flickr.collections.getTree&format=json&nojsoncallback=1")) .andExpect(method(GET)) .andRespond( withResponse(jsonResource("testuser"), responseHeaders)); } }