Search in sources :

Example 11 with DefaultQuerySpecDeserializer

use of io.crnk.core.queryspec.DefaultQuerySpecDeserializer in project crnk-framework by crnk-project.

the class HttpRequestProcessorImplTest method shouldHandleRelationshipRequest.

@Test
public void shouldHandleRelationshipRequest() throws Exception {
    // GIVEN
    String path = "/tasks/1/relationships/project";
    String requestType = "GET";
    ControllerRegistry controllerRegistry = new ControllerRegistry(null);
    RelationshipsResourceGet controller = mock(RelationshipsResourceGet.class);
    controllerRegistry.addController(controller);
    QuerySpecAdapterBuilder queryAdapterBuilder = new QuerySpecAdapterBuilder(new DefaultQuerySpecDeserializer(), moduleRegistry);
    RequestDispatcher sut = new HttpRequestProcessorImpl(moduleRegistry, controllerRegistry, null, queryAdapterBuilder);
    // WHEN
    when(controller.isAcceptable(any(JsonPath.class), eq(requestType))).thenCallRealMethod();
    Map<String, Set<String>> parameters = new HashMap<>();
    sut.dispatchRequest(path, requestType, parameters, null, null);
    // THEN
    verify(controller, times(1)).handle(any(JsonPath.class), any(QueryAdapter.class), any(RepositoryMethodParameterProvider.class), any(Document.class));
}
Also used : ControllerRegistry(io.crnk.core.engine.internal.dispatcher.ControllerRegistry) QuerySpecAdapterBuilder(io.crnk.core.queryspec.internal.QuerySpecAdapterBuilder) Set(java.util.Set) HashMap(java.util.HashMap) QueryAdapter(io.crnk.core.engine.query.QueryAdapter) DefaultQuerySpecDeserializer(io.crnk.core.queryspec.DefaultQuerySpecDeserializer) RelationshipsResourceGet(io.crnk.core.engine.internal.dispatcher.controller.RelationshipsResourceGet) Matchers.anyString(org.mockito.Matchers.anyString) JsonPath(io.crnk.core.engine.internal.dispatcher.path.JsonPath) Document(io.crnk.core.engine.document.Document) RequestDispatcher(io.crnk.core.engine.dispatcher.RequestDispatcher) HttpRequestProcessorImpl(io.crnk.core.engine.internal.http.HttpRequestProcessorImpl) RepositoryMethodParameterProvider(io.crnk.legacy.internal.RepositoryMethodParameterProvider) ExceptionMapperRegistryTest(io.crnk.core.engine.internal.exception.ExceptionMapperRegistryTest) Test(org.junit.Test)

Example 12 with DefaultQuerySpecDeserializer

use of io.crnk.core.queryspec.DefaultQuerySpecDeserializer in project crnk-framework by crnk-project.

the class HttpRequestProcessorImplTest method shouldNotifyWhenActionIsExeecuted.

@Test
public void shouldNotifyWhenActionIsExeecuted() throws Exception {
    // GIVEN
    String path = "/actionResource/1/someAction";
    String requestType = "GET";
    ControllerRegistry controllerRegistry = new ControllerRegistry(null);
    QuerySpecAdapterBuilder queryAdapterBuilder = new QuerySpecAdapterBuilder(new DefaultQuerySpecDeserializer(), moduleRegistry);
    RequestDispatcher sut = new HttpRequestProcessorImpl(moduleRegistry, controllerRegistry, null, queryAdapterBuilder);
    // WHEN
    Map<String, Set<String>> parameters = new HashMap<>();
    sut.dispatchAction(path, "GET", parameters);
    // THEN
    ArgumentCaptor<DocumentFilterContext> filterContextCaptor = ArgumentCaptor.forClass(DocumentFilterContext.class);
    Mockito.verify(documentFilter, Mockito.times(1)).filter(filterContextCaptor.capture(), Mockito.any(DocumentFilterChain.class));
    DocumentFilterContext filterContext = filterContextCaptor.getValue();
    Assert.assertEquals("GET", filterContext.getMethod());
    Assert.assertTrue(filterContext.getJsonPath() instanceof ActionPath);
}
Also used : ControllerRegistry(io.crnk.core.engine.internal.dispatcher.ControllerRegistry) QuerySpecAdapterBuilder(io.crnk.core.queryspec.internal.QuerySpecAdapterBuilder) Set(java.util.Set) HashMap(java.util.HashMap) DefaultQuerySpecDeserializer(io.crnk.core.queryspec.DefaultQuerySpecDeserializer) DocumentFilterChain(io.crnk.core.engine.filter.DocumentFilterChain) ActionPath(io.crnk.core.engine.internal.dispatcher.path.ActionPath) Matchers.anyString(org.mockito.Matchers.anyString) RequestDispatcher(io.crnk.core.engine.dispatcher.RequestDispatcher) HttpRequestProcessorImpl(io.crnk.core.engine.internal.http.HttpRequestProcessorImpl) DocumentFilterContext(io.crnk.core.engine.filter.DocumentFilterContext) ExceptionMapperRegistryTest(io.crnk.core.engine.internal.exception.ExceptionMapperRegistryTest) Test(org.junit.Test)

Example 13 with DefaultQuerySpecDeserializer

use of io.crnk.core.queryspec.DefaultQuerySpecDeserializer in project crnk-framework by crnk-project.

the class CrnkBoot method setupQuerySpecDeserializer.

private void setupQuerySpecDeserializer() {
    if (querySpecDeserializer == null) {
        setupServiceDiscovery();
        List<QuerySpecDeserializer> list = serviceDiscovery.getInstancesByType(QuerySpecDeserializer.class);
        if (list.isEmpty()) {
            querySpecDeserializer = new DefaultQuerySpecDeserializer();
        } else {
            querySpecDeserializer = list.get(0);
        }
    }
    if (querySpecDeserializer instanceof DefaultQuerySpecDeserializer) {
        if (allowUnknownAttributes == null) {
            String strAllow = propertiesProvider.getProperty(CrnkProperties.ALLOW_UNKNOWN_ATTRIBUTES);
            if (strAllow != null) {
                allowUnknownAttributes = Boolean.parseBoolean(strAllow);
            }
        }
        if (allowUnknownAttributes != null) {
            ((DefaultQuerySpecDeserializer) this.querySpecDeserializer).setAllowUnknownAttributes(allowUnknownAttributes);
        }
        if (allowUnknownParameters == null) {
            String strAllow = propertiesProvider.getProperty(CrnkProperties.ALLOW_UNKNOWN_PARAMETERS);
            if (strAllow != null) {
                allowUnknownParameters = Boolean.parseBoolean(strAllow);
            }
        }
        if (allowUnknownParameters != null) {
            ((DefaultQuerySpecDeserializer) this.querySpecDeserializer).setAllowUnknownParameters(allowUnknownParameters);
        }
    }
}
Also used : QuerySpecDeserializer(io.crnk.core.queryspec.QuerySpecDeserializer) DefaultQuerySpecDeserializer(io.crnk.core.queryspec.DefaultQuerySpecDeserializer) DefaultQuerySpecDeserializer(io.crnk.core.queryspec.DefaultQuerySpecDeserializer)

Aggregations

DefaultQuerySpecDeserializer (io.crnk.core.queryspec.DefaultQuerySpecDeserializer)13 Test (org.junit.Test)10 ControllerRegistry (io.crnk.core.engine.internal.dispatcher.ControllerRegistry)7 HttpRequestProcessorImpl (io.crnk.core.engine.internal.http.HttpRequestProcessorImpl)7 QuerySpecAdapterBuilder (io.crnk.core.queryspec.internal.QuerySpecAdapterBuilder)7 RequestDispatcher (io.crnk.core.engine.dispatcher.RequestDispatcher)6 ExceptionMapperRegistryTest (io.crnk.core.engine.internal.exception.ExceptionMapperRegistryTest)6 JsonPath (io.crnk.core.engine.internal.dispatcher.path.JsonPath)5 HashMap (java.util.HashMap)4 Set (java.util.Set)4 Document (io.crnk.core.engine.document.Document)3 CollectionGet (io.crnk.core.engine.internal.dispatcher.controller.CollectionGet)3 QueryAdapter (io.crnk.core.engine.query.QueryAdapter)3 QuerySpecDeserializer (io.crnk.core.queryspec.QuerySpecDeserializer)3 RepositoryMethodParameterProvider (io.crnk.legacy.internal.RepositoryMethodParameterProvider)3 Matchers.anyString (org.mockito.Matchers.anyString)3 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)2 CrnkBoot (io.crnk.core.boot.CrnkBoot)2 Response (io.crnk.core.engine.dispatcher.Response)2 ConstantServiceUrlProvider (io.crnk.core.engine.url.ConstantServiceUrlProvider)2