use of io.crnk.core.engine.http.HttpRequestContext in project crnk-framework by crnk-project.
the class UIModuleTest method processorNotUsedForNonBrowsePath.
@Test
public void processorNotUsedForNonBrowsePath() throws IOException {
UIHttpRequestProcessor processor = new UIHttpRequestProcessor(new UIModuleConfig());
HttpRequestContext context = Mockito.mock(HttpRequestContext.class);
Mockito.when(context.getMethod()).thenReturn("POST");
Mockito.when(context.getPath()).thenReturn("somethingDifferent/index.html");
processor.process(context);
Mockito.verify(context, Mockito.times(0)).setResponse(Mockito.anyInt(), Mockito.any(byte[].class));
}
use of io.crnk.core.engine.http.HttpRequestContext in project crnk-framework by crnk-project.
the class UIModuleTest method processorReturnsFile.
@Test
public void processorReturnsFile() throws IOException {
UIHttpRequestProcessor processor = new UIHttpRequestProcessor(new UIModuleConfig());
HttpRequestContext context = Mockito.mock(HttpRequestContext.class);
Mockito.when(context.getPath()).thenReturn("browse/index.html");
Mockito.when(context.getMethod()).thenReturn("GET");
processor.process(context);
Mockito.verify(context, Mockito.times(1)).setResponse(Mockito.eq(200), Mockito.any(byte[].class));
Mockito.verify(context, Mockito.times(1)).setContentType(Mockito.eq("text/html"));
}
use of io.crnk.core.engine.http.HttpRequestContext in project crnk-framework by crnk-project.
the class ResourceFilterDirectoryImpl method getCache.
private Map<Object, FilterBehavior> getCache(HttpMethod method) {
String key = ResourceFilterDirectoryImpl.class.getSimpleName() + method;
HttpRequestContext requestContext = requestContextProvider.getRequestContext();
if (requestContext == null) {
// e.g. testing
return new HashMap<>();
}
Map<Object, FilterBehavior> cache = (Map<Object, FilterBehavior>) requestContext.getRequestAttribute(key);
if (cache == null) {
cache = new HashMap<>();
requestContext.setRequestAttribute(key, cache);
}
return cache;
}
use of io.crnk.core.engine.http.HttpRequestContext in project crnk-framework by crnk-project.
the class ResourceFieldContributorTest method checkInclusionUponRequest.
@Test
public void checkInclusionUponRequest() {
TaskRepository repo = new TaskRepository();
Task task = new Task();
task.setId(1L);
task.setName("someTask");
repo.save(task);
HttpRequestProcessorImpl requestDispatcher = boot.getRequestDispatcher();
HttpRequestContextProvider httpRequestContextProvider = boot.getModuleRegistry().getHttpRequestContextProvider();
HttpRequestContext request = Mockito.mock(HttpRequestContext.class);
httpRequestContextProvider.onRequestStarted(request);
Map<String, Set<String>> parameters = new HashMap<>();
parameters.put("include", Sets.newHashSet("contributedProject"));
Response response = requestDispatcher.dispatchRequest("tasks", "GET", parameters, null, null);
Document document = response.getDocument();
Resource resource = document.getCollectionData().get().get(0);
Assert.assertEquals("1", resource.getId());
Assert.assertEquals("tasks", resource.getType());
Assert.assertEquals("someTask", resource.getAttributes().get("name").asText());
Relationship relationship = resource.getRelationships().get("contributedProject");
Assert.assertNotNull(relationship);
ResourceIdentifier relationshipId = relationship.getSingleData().get();
Assert.assertEquals("projects", relationshipId.getType());
Assert.assertEquals("11", relationshipId.getId());
List<Resource> included = document.getIncluded();
Assert.assertEquals(1, included.size());
Resource includedResource = included.get(0);
Assert.assertEquals("projects", includedResource.getType());
Assert.assertEquals("11", includedResource.getId());
Assert.assertEquals("someProject", includedResource.getAttributes().get("name").asText());
}
use of io.crnk.core.engine.http.HttpRequestContext in project crnk-framework by crnk-project.
the class UIModuleTest method processorNotUsedForPost.
@Test
public void processorNotUsedForPost() throws IOException {
UIHttpRequestProcessor processor = new UIHttpRequestProcessor(new UIModuleConfig());
HttpRequestContext context = Mockito.mock(HttpRequestContext.class);
Mockito.when(context.getMethod()).thenReturn("POST");
Mockito.when(context.getPath()).thenReturn("browse/index.html");
processor.process(context);
Mockito.verify(context, Mockito.times(0)).setResponse(Mockito.anyInt(), Mockito.any(byte[].class));
}
Aggregations