Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing old GenericContainerTest #794

Merged
merged 2 commits into from
Sep 15, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,54 @@
*/
package br.com.caelum.vraptor.ioc.cdi;

import static br.com.caelum.vraptor.VRaptorMatchers.canHandle;
import static br.com.caelum.vraptor.VRaptorMatchers.hasOneCopyOf;
import static java.util.Arrays.asList;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.assertEquals;

import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map.Entry;

import javax.enterprise.event.Event;
import javax.inject.Inject;

import org.hamcrest.Matcher;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;

import br.com.caelum.cdi.component.UsingCacheComponent;
import br.com.caelum.vraptor.WeldJunitRunner;
import br.com.caelum.vraptor.converter.*;
import br.com.caelum.vraptor.core.Converters;
import br.com.caelum.vraptor.events.VRaptorInitialized;
import br.com.caelum.vraptor.ioc.GenericContainerTest;
import br.com.caelum.vraptor.http.route.Route;
import br.com.caelum.vraptor.http.route.Router;
import br.com.caelum.vraptor.interceptor.InterceptorRegistry;
import br.com.caelum.vraptor.ioc.fixture.ControllerInTheClasspath;
import br.com.caelum.vraptor.ioc.fixture.ConverterInTheClasspath;
import br.com.caelum.vraptor.ioc.fixture.InterceptorInTheClasspath;
import br.com.caelum.vraptor.serialization.Deserializer;
import br.com.caelum.vraptor.serialization.Deserializers;

@RunWith(WeldJunitRunner.class)
public class CDIBasedContainerTest extends GenericContainerTest {
public class CDIBasedContainerTest {

@Inject private CDIBasedContainer cdiBasedContainer;
@Inject private Event<VRaptorInitialized> initEvent;
@Inject private Contexts contexts;

@Override
public void setup() throws Exception {
@Before
public void setup() {
contexts.startApplicationScope();
contexts.startSessionScope();
initEvent.fire(new VRaptorInitialized(null));
super.setup();
}

@After
Expand All @@ -58,5 +79,78 @@ public void shouldCreateComponentsWithCache(){
assertEquals(component.putWithLRU("test","test"),"test");
assertEquals(component.putWithDefault("test2","test2"),"test2");
}

@Test
public void shoudRegisterResourcesInRouter() {
Router router = instanceFor(Router.class);
Matcher<Iterable<? super Route>> hasItem = hasItem(canHandle(ControllerInTheClasspath.class,
ControllerInTheClasspath.class.getDeclaredMethods()[0]));
assertThat(router.allRoutes(), hasItem);
}

@Test
public void shoudRegisterConvertersInConverters() {
Converters converters = instanceFor(Converters.class);
Converter<?> converter = converters.to(Void.class);
assertThat(converter, is(instanceOf(ConverterInTheClasspath.class)));
}

/**
* Check if exist {@link Deserializer} registered in VRaptor for determined Content-Types.
*/
@Test
public void shouldReturnAllDefaultDeserializers() {

Deserializers deserializers = instanceFor(Deserializers.class);
List<String> types = asList("application/json", "json", "application/xml",
"xml", "text/xml", "application/x-www-form-urlencoded");

for (String type : types) {
assertThat("deserializer not found: " + type,
deserializers.deserializerFor(type, cdiBasedContainer), is(notNullValue()));
}
}

@Test
public void shouldReturnAllDefaultConverters() {
Converters converters = instanceFor(Converters.class);
final HashMap<Class<?>, Class<?>> EXPECTED_CONVERTERS = new HashMap<Class<?>, Class<?>>() {
{
put(int.class, PrimitiveIntConverter.class);
put(long.class, PrimitiveLongConverter.class);
put(short.class, PrimitiveShortConverter.class);
put(byte.class, PrimitiveByteConverter.class);
put(double.class, PrimitiveDoubleConverter.class);
put(float.class, PrimitiveFloatConverter.class);
put(boolean.class, PrimitiveBooleanConverter.class);
put(Integer.class, IntegerConverter.class);
put(Long.class, LongConverter.class);
put(Short.class, ShortConverter.class);
put(Byte.class, ByteConverter.class);
put(Double.class, DoubleConverter.class);
put(Float.class, FloatConverter.class);
put(Boolean.class, BooleanConverter.class);
put(Calendar.class, CalendarConverter.class);
put(Date.class, DateConverter.class);
put(Enum.class, EnumConverter.class);
}
private static final long serialVersionUID = 8559316558416038474L;
};

for (Entry<Class<?>, Class<?>> entry : EXPECTED_CONVERTERS.entrySet()) {
Converter<?> converter = converters.to((Class<?>) entry.getKey());
assertThat(converter, is(instanceOf(entry.getValue())));
}
}

@Test
public void shoudRegisterInterceptorsInInterceptorRegistry() {
InterceptorRegistry registry = instanceFor(InterceptorRegistry.class);
assertThat(registry.all(), hasOneCopyOf(InterceptorInTheClasspath.class));
}

private <T> T instanceFor(final Class<T> component) {
return cdiBasedContainer.instanceFor(component);
}

}