package org.baeldung.um.common.web.root;
import static org.baeldung.common.spring.util.Profiles.CLIENT;
import static org.baeldung.common.spring.util.Profiles.TEST;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.greaterThanOrEqualTo;
import java.util.List;
import org.baeldung.test.common.client.security.ITestAuthenticator;
import org.baeldung.test.common.web.util.HTTPLinkHeaderUtil;
import org.baeldung.um.client.UmPaths;
import org.baeldung.um.test.live.UmGeneralRestLiveTest;
import org.baeldung.um.util.Um;
import org.hamcrest.Matchers;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ActiveProfiles;
import com.google.common.base.Predicates;
import com.google.common.collect.Iterables;
import com.google.common.net.HttpHeaders;
import com.jayway.restassured.response.Response;
import com.jayway.restassured.specification.RequestSpecification;
@ActiveProfiles({ CLIENT, TEST })
@Ignore("the corresponding controller is ignored for now")
public class RootDiscoverabilityRestLiveTest extends UmGeneralRestLiveTest {
@Autowired
private UmPaths paths;
@Autowired
private ITestAuthenticator auth;
// tests
// GET
@Test
public final void whenGetIsDoneOnRoot_thenSomeURIAreDiscoverable() {
// When
final Response getOnRootResponse = givenAuthenticated().get(paths.getRootUri());
// Then
final List<String> allURIsDiscoverableFromRoot = HTTPLinkHeaderUtil.extractAllURIs(getOnRootResponse.getHeader(HttpHeaders.LINK));
assertThat(allURIsDiscoverableFromRoot, not(Matchers.<String> empty()));
}
@Test
public final void whenGetIsDoneOnRoot_thenEntityURIIsDiscoverable() {
// When
final Response getOnRootResponse = givenAuthenticated().get(paths.getRootUri());
// Then
final List<String> allURIsDiscoverableFromRoot = HTTPLinkHeaderUtil.extractAllURIs(getOnRootResponse.getHeader(HttpHeaders.LINK));
final int indexOfEntityUri = Iterables.indexOf(allURIsDiscoverableFromRoot, Predicates.containsPattern(paths.getUserUri()));
assertThat(indexOfEntityUri, greaterThanOrEqualTo(0));
}
// util
protected final RequestSpecification givenAuthenticated() {
return auth.givenBasicAuthenticated(Um.ADMIN_USERNAME, Um.ADMIN_PASS);
}
}