/* * Copyright 2012 SURFnet bv, The Netherlands * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package nl.surfnet.coin.selenium; import nl.surfnet.coin.api.client.InMemoryOAuthRepositoryImpl; import nl.surfnet.coin.api.client.OAuthRepository; import nl.surfnet.coin.api.client.OpenConextOAuthClientImpl; import nl.surfnet.coin.api.client.domain.Group20; import nl.surfnet.coin.api.client.domain.Person; import org.junit.Before; import org.junit.Test; import java.util.List; import static org.junit.Assert.assertEquals; /** * Test Person related queries with selenium */ public class ConextApiControllerTestIntegration extends SeleniumSupport { private final String OAUTH_KEY = "https://testsp.test.surfconext.nl/shibboleth"; private final String OAUTH_SECRET = "mysecret"; private final String USER_ID = "the-person-i-am"; private OpenConextOAuthClientImpl client; @Before public void initialize() throws Exception { client = new OpenConextOAuthClientImpl(); client.setEndpointBaseUrl(getApiBaseUrl()); client.setConsumerKey(OAUTH_KEY); client.setConsumerSecret(OAUTH_SECRET); client.setCallbackUrl("http://not-used/"); OAuthRepository repository = new InMemoryOAuthRepositoryImpl(); client.setRepository(repository); } @Test public void getPerson() throws Exception { Person person = client.getPerson(USER_ID, null); assertEquals("the-person-i-am", person.getAccounts().iterator().next().getUserId()); } @Test public void getGroups20() throws Exception { final List<Group20> groups = client.getGroups20(USER_ID, null); assertEquals(3, groups.size()); } @Test public void getGroups() throws Exception { final List<Group20> groups = client.getGroups20(USER_ID, null); assertEquals(3, groups.size()); } }