Examples of findConnections()


Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    List<DisconnectInterceptor<?>> interceptors = getDisconnectInterceptor();
    connectController.setDisconnectInterceptors(interceptors);
    MockMvc mockMvc = standaloneSetup(connectController).build();
    mockMvc.perform(delete("/connect/oauth2Provider"))
      .andExpect(redirectedUrl("/connect/oauth2Provider"));
    assertEquals(2, connectionRepository.findConnections("provider1").size());   
    assertEquals(0, connectionRepository.findConnections("oauth2Provider").size());   
    assertFalse(((TestConnectInterceptor<?>)(interceptors.get(0))).preDisconnectInvoked);
    assertFalse(((TestConnectInterceptor<?>)(interceptors.get(0))).postDisconnectInvoked);
    assertNull(((TestConnectInterceptor<?>)(interceptors.get(0))).connectionFactory);
    assertTrue(((TestConnectInterceptor<?>)(interceptors.get(1))).preDisconnectInvoked);
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    connectController.setDisconnectInterceptors(interceptors);
    MockMvc mockMvc = standaloneSetup(connectController).build();
    mockMvc.perform(delete("/connect/oauth2Provider"))
      .andExpect(redirectedUrl("/connect/oauth2Provider"));
    assertEquals(2, connectionRepository.findConnections("provider1").size());   
    assertEquals(0, connectionRepository.findConnections("oauth2Provider").size());   
    assertFalse(((TestConnectInterceptor<?>)(interceptors.get(0))).preDisconnectInvoked);
    assertFalse(((TestConnectInterceptor<?>)(interceptors.get(0))).postDisconnectInvoked);
    assertNull(((TestConnectInterceptor<?>)(interceptors.get(0))).connectionFactory);
    assertTrue(((TestConnectInterceptor<?>)(interceptors.get(1))).preDisconnectInvoked);
    assertTrue(((TestConnectInterceptor<?>)(interceptors.get(1))).postDisconnectInvoked);
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    ConnectionFactory<TestApi2> connectionFactory = new StubOAuth2ConnectionFactory("clientId", "clientSecret", THROW_EXCEPTION);
    connectionFactoryLocator.addConnectionFactory(connectionFactory);       
    StubConnectionRepository connectionRepository = new StubConnectionRepository();
    connectionRepository.addConnection(connectionFactory.createConnection(new ConnectionData("oauth2Provider", "provider1User1", null, null, null, null, null, null, null)));
    connectionRepository.addConnection(connectionFactory.createConnection(new ConnectionData("oauth2Provider", "provider1User2", null, null, null, null, null, null, null)));
    assertEquals(2, connectionRepository.findConnections("oauth2Provider").size());   
    ConnectController connectController = new ConnectController(connectionFactoryLocator, connectionRepository);
    List<DisconnectInterceptor<?>> interceptors = getDisconnectInterceptor();
    connectController.setDisconnectInterceptors(interceptors);
    MockMvc mockMvc = standaloneSetup(connectController).build();
    mockMvc.perform(delete("/connect/oauth2Provider/provider1User1"))
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    List<DisconnectInterceptor<?>> interceptors = getDisconnectInterceptor();
    connectController.setDisconnectInterceptors(interceptors);
    MockMvc mockMvc = standaloneSetup(connectController).build();
    mockMvc.perform(delete("/connect/oauth2Provider/provider1User1"))
      .andExpect(redirectedUrl("/connect/oauth2Provider"));
    assertEquals(1, connectionRepository.findConnections("oauth2Provider").size());   
    assertFalse(((TestConnectInterceptor<?>)(interceptors.get(0))).preDisconnectInvoked);
    assertFalse(((TestConnectInterceptor<?>)(interceptors.get(0))).postDisconnectInvoked);
    assertNull(((TestConnectInterceptor<?>)(interceptors.get(0))).connectionFactory);
    assertTrue(((TestConnectInterceptor<?>)(interceptors.get(1))).preDisconnectInvoked);
    assertTrue(((TestConnectInterceptor<?>)(interceptors.get(1))).postDisconnectInvoked);
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    ConnectController connectController = new ConnectController(connectionFactoryLocator, connectionRepository);
    List<ConnectInterceptor<?>> interceptors = getConnectInterceptor();
    connectController.setConnectInterceptors(interceptors);
    connectController.afterPropertiesSet();
    MockMvc mockMvc = standaloneSetup(connectController).build();
    assertEquals(0, connectionRepository.findConnections("oauth2Provider").size());   
    mockMvc.perform(get("/connect/oauth1Provider")
            .sessionAttr("oauthToken", new OAuthToken("requestToken", "requestTokenSecret"))
            .param("oauth_token", "requestToken")
            .param("oauth_verifier", "verifier"))
      .andExpect(redirectedUrl("/connect/oauth1Provider"));
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    mockMvc.perform(get("/connect/oauth1Provider")
            .sessionAttr("oauthToken", new OAuthToken("requestToken", "requestTokenSecret"))
            .param("oauth_token", "requestToken")
            .param("oauth_verifier", "verifier"))
      .andExpect(redirectedUrl("/connect/oauth1Provider"));
    List<Connection<?>> connections = connectionRepository.findConnections("oauth1Provider");
    assertEquals(1, connections.size());
    assertEquals("oauth1Provider", connections.get(0).getKey().getProviderId());
    // Check for postConnect() only. The preConnect() is only invoked during the initial portion of the flow
    TestConnectInterceptor<?> testInterceptor1 = (TestConnectInterceptor<?>)(interceptors.get(0));
    assertTrue(testInterceptor1.postConnectInvoked);
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    ConnectionFactoryRegistry connectionFactoryLocator = new ConnectionFactoryRegistry();
    ConnectionFactory<TestApi1> connectionFactory = new StubOAuth1ConnectionFactory("clientId", "clientSecret", THROW_EXCEPTION);
    connectionFactoryLocator.addConnectionFactory(connectionFactory);
    StubConnectionRepository connectionRepository = new StubConnectionRepository();
    MockMvc mockMvc = standaloneSetup(new ConnectController(connectionFactoryLocator, connectionRepository)).build();
    assertEquals(0, connectionRepository.findConnections("oauth2Provider").size());   
    mockMvc.perform(get("/connect/oauth1Provider")
            .sessionAttr("oauthToken", new OAuthToken("requestToken", "requestTokenSecret"))
            .param("oauth_token", "requestToken")
            .param("oauth_verifier", "verifier"))
      .andExpect(redirectedUrl("/connect/oauth1Provider"))
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

            .sessionAttr("oauthToken", new OAuthToken("requestToken", "requestTokenSecret"))
            .param("oauth_token", "requestToken")
            .param("oauth_verifier", "verifier"))
      .andExpect(redirectedUrl("/connect/oauth1Provider"))
      .andExpect(request().sessionAttribute("social_provider_error", notNullValue()));
    assertEquals(0, connectionRepository.findConnections("oauth2Provider").size());   
  }

  // OAuth 2
 
  @Test
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    ConnectController connectController = new ConnectController(connectionFactoryLocator, connectionRepository);
    List<ConnectInterceptor<?>> interceptors = getConnectInterceptor();
    connectController.setConnectInterceptors(interceptors);
    connectController.afterPropertiesSet();
    MockMvc mockMvc = standaloneSetup(connectController).build();
    assertEquals(0, connectionRepository.findConnections("oauth2Provider").size());   
    mockMvc.perform(get("/connect/oauth2Provider").param("code", "oauth2Code"))
      .andExpect(redirectedUrl("/connect/oauth2Provider"));
    List<Connection<?>> connections = connectionRepository.findConnections("oauth2Provider");
    assertEquals(1, connections.size());
    assertEquals("oauth2Provider", connections.get(0).getKey().getProviderId());
View Full Code Here

Examples of org.springframework.social.connect.web.test.StubConnectionRepository.findConnections()

    connectController.afterPropertiesSet();
    MockMvc mockMvc = standaloneSetup(connectController).build();
    assertEquals(0, connectionRepository.findConnections("oauth2Provider").size());   
    mockMvc.perform(get("/connect/oauth2Provider").param("code", "oauth2Code"))
      .andExpect(redirectedUrl("/connect/oauth2Provider"));
    List<Connection<?>> connections = connectionRepository.findConnections("oauth2Provider");
    assertEquals(1, connections.size());
    assertEquals("oauth2Provider", connections.get(0).getKey().getProviderId());
    // Check for postConnect() only. The preConnect() is only invoked during the initial portion of the flow
    assertFalse(((TestConnectInterceptor<?>)(interceptors.get(0))).postConnectInvoked);
    TestConnectInterceptor<?> testInterceptor2 = (TestConnectInterceptor<?>)(interceptors.get(1));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.