Search in sources :

Example 1 with EzySingletonFactory

use of com.tvd12.ezyfox.bean.EzySingletonFactory in project ezyhttp by youngmonkeys.

the class GraphQLConfigurationTest method test.

@Test
@SuppressWarnings({ "rawtypes", "unchecked" })
public void test() throws NoSuchFieldException, IllegalAccessException {
    // given
    EzyBeanContextBuilder builder = new EzySimpleBeanContext.Builder();
    Set<String> packagesToScan = RandomUtil.randomSet(8, String.class);
    packagesToScan.add("com.tvd12.ezyhttp.server.graphql.test.config");
    for (String p : packagesToScan) {
        builder.scan(p);
    }
    EzyBeanContext context = builder.build();
    GraphQLConfiguration sut = new GraphQLConfiguration();
    EzySingletonFactory singletonFactory = context.getSingletonFactory();
    sut.setSingletonFactory(singletonFactory);
    sut.setObjectMapper(new ObjectMapper());
    sut.setGraphQLEnable(true);
    // when
    sut.config();
    GraphQLController controller = (GraphQLController) singletonFactory.getSingleton(GraphQLController.class);
    Field dataFetcherManagerField = GraphQLController.class.getDeclaredField("dataFetcherManager");
    dataFetcherManagerField.setAccessible(true);
    GraphQLDataFetcherManager dataFetcherManager = (GraphQLDataFetcherManager) dataFetcherManagerField.get(controller);
    Field dataFetchersField = GraphQLDataFetcherManager.class.getDeclaredField("dataFetchers");
    dataFetchersField.setAccessible(true);
    Map<String, GraphQLDataFetcher> dataFetchers = (Map<String, GraphQLDataFetcher>) dataFetchersField.get(dataFetcherManager);
    // then
    Asserts.assertNotNull(controller);
    Asserts.assertTrue(dataFetchers.containsKey("A"));
}
Also used : GraphQLDataFetcher(com.tvd12.ezyhttp.server.graphql.GraphQLDataFetcher) EzyBeanContext(com.tvd12.ezyfox.bean.EzyBeanContext) EzyBeanContextBuilder(com.tvd12.ezyfox.bean.EzyBeanContextBuilder) GraphQLController(com.tvd12.ezyhttp.server.graphql.controller.GraphQLController) EzySingletonFactory(com.tvd12.ezyfox.bean.EzySingletonFactory) Field(java.lang.reflect.Field) EzyBeanContextBuilder(com.tvd12.ezyfox.bean.EzyBeanContextBuilder) GraphQLDataFetcherManager(com.tvd12.ezyhttp.server.graphql.GraphQLDataFetcherManager) Map(java.util.Map) GraphQLConfiguration(com.tvd12.ezyhttp.server.graphql.GraphQLConfiguration) ObjectMapper(com.fasterxml.jackson.databind.ObjectMapper) Test(org.testng.annotations.Test)

Example 2 with EzySingletonFactory

use of com.tvd12.ezyfox.bean.EzySingletonFactory in project ezyhttp by youngmonkeys.

the class ApplicationContextBuilderTest method buildViewContextTemplateResolverNotNullIsNull.

@Test
public void buildViewContextTemplateResolverNotNullIsNull() {
    // given
    EzyBeanContext beanContext = mock(EzyBeanContext.class);
    ViewContextBuilder viewContextBuilder = mock(ViewContextBuilder.class);
    when(beanContext.getSingleton(ViewContextBuilder.class)).thenReturn(viewContextBuilder);
    TemplateResolver templateResolver = mock(TemplateResolver.class);
    when(beanContext.getSingleton(TemplateResolver.class)).thenReturn(templateResolver);
    when(viewContextBuilder.templateResolver(templateResolver)).thenReturn(viewContextBuilder);
    ViewContext viewContext = mock(ViewContext.class);
    when(viewContextBuilder.build()).thenReturn(viewContext);
    EzySingletonFactory singletonFactory = mock(EzySingletonFactory.class);
    when(beanContext.getSingletonFactory()).thenReturn(singletonFactory);
    ViewDialect viewDialect = mock(ViewDialect.class);
    List<ViewDialect> viewDialects = Collections.singletonList(viewDialect);
    when(beanContext.getSingletonsOf(ViewDialect.class)).thenReturn(viewDialects);
    when(viewContextBuilder.viewDialects(viewDialects)).thenReturn(viewContextBuilder);
    ViewDecorator viewDecorator = mock(ViewDecorator.class);
    List<ViewDecorator> viewDecorators = Collections.singletonList(viewDecorator);
    when(beanContext.getSingletonsOf(ViewDecorator.class)).thenReturn(viewDecorators);
    when(viewContextBuilder.viewDecorators(viewDecorators)).thenReturn(viewContextBuilder);
    MessageProvider messageProvider = mock(MessageProvider.class);
    List<MessageProvider> messageProviders = Collections.singletonList(messageProvider);
    when(beanContext.getSingletonsOf(MessageProvider.class)).thenReturn(messageProviders);
    when(viewContextBuilder.messageProviders(messageProviders)).thenReturn(viewContextBuilder);
    AbsentMessageResolver absentMessageResolver = mock(AbsentMessageResolver.class);
    when(beanContext.getSingleton(AbsentMessageResolver.class)).thenReturn(absentMessageResolver);
    when(viewContextBuilder.absentMessageResolver(absentMessageResolver)).thenReturn(viewContextBuilder);
    ApplicationContextBuilder sut = new ApplicationContextBuilder();
    // when
    ViewContext actual = MethodInvoker.create().object(sut).method("buildViewContext").param(EzyBeanContext.class, beanContext).invoke(ViewContext.class);
    // then
    Asserts.assertEquals(viewContext, actual);
    verify(beanContext, times(1)).getSingleton(ViewContext.class);
    verify(beanContext, times(1)).getSingleton(ViewContextBuilder.class);
    verify(beanContext, times(1)).getSingleton(TemplateResolver.class);
    verify(beanContext, times(1)).getSingletonsOf(ViewDialect.class);
    verify(beanContext, times(1)).getSingletonsOf(ViewDecorator.class);
    verify(beanContext, times(1)).getSingleton(AbsentMessageResolver.class);
    verify(beanContext, times(1)).getSingletonsOf(MessageProvider.class);
    verify(viewContextBuilder, times(1)).templateResolver(templateResolver);
    verify(viewContextBuilder, times(1)).viewDialects(viewDialects);
    verify(viewContextBuilder, times(1)).viewDecorators(viewDecorators);
    verify(viewContextBuilder, times(1)).messageProviders(messageProviders);
    verify(viewContextBuilder, times(1)).absentMessageResolver(absentMessageResolver);
    verify(viewContextBuilder, times(1)).build();
    verify(singletonFactory, times(1)).addSingleton(viewContext);
}
Also used : MessageProvider(com.tvd12.ezyhttp.server.core.view.MessageProvider) AbsentMessageResolver(com.tvd12.ezyhttp.server.core.view.AbsentMessageResolver) ViewContext(com.tvd12.ezyhttp.server.core.view.ViewContext) EzyBeanContext(com.tvd12.ezyfox.bean.EzyBeanContext) ViewContextBuilder(com.tvd12.ezyhttp.server.core.view.ViewContextBuilder) EzySingletonFactory(com.tvd12.ezyfox.bean.EzySingletonFactory) TemplateResolver(com.tvd12.ezyhttp.server.core.view.TemplateResolver) ViewDialect(com.tvd12.ezyhttp.server.core.view.ViewDialect) ViewDecorator(com.tvd12.ezyhttp.server.core.view.ViewDecorator) ApplicationContextBuilder(com.tvd12.ezyhttp.server.core.ApplicationContextBuilder) Test(org.testng.annotations.Test)

Example 3 with EzySingletonFactory

use of com.tvd12.ezyfox.bean.EzySingletonFactory in project ezyhttp by youngmonkeys.

the class ApplicationContextBuilderTest method buildViewContextViewContextNotNull.

@Test
public void buildViewContextViewContextNotNull() {
    // given
    EzyBeanContext beanContext = mock(EzyBeanContext.class);
    ViewContext viewContext = mock(ViewContext.class);
    when(beanContext.getSingleton(ViewContext.class)).thenReturn(viewContext);
    EzySingletonFactory singletonFactory = mock(EzySingletonFactory.class);
    when(beanContext.getSingletonFactory()).thenReturn(singletonFactory);
    ApplicationContextBuilder sut = new ApplicationContextBuilder();
    // when
    ViewContext actual = MethodInvoker.create().object(sut).method("buildViewContext").param(EzyBeanContext.class, beanContext).invoke(ViewContext.class);
    // then
    Asserts.assertEquals(viewContext, actual);
    verify(beanContext, times(1)).getSingleton(ViewContext.class);
    verify(beanContext, times(1)).getSingletonFactory();
    verify(singletonFactory, times(1)).addSingleton(viewContext);
}
Also used : ViewContext(com.tvd12.ezyhttp.server.core.view.ViewContext) EzyBeanContext(com.tvd12.ezyfox.bean.EzyBeanContext) EzySingletonFactory(com.tvd12.ezyfox.bean.EzySingletonFactory) ApplicationContextBuilder(com.tvd12.ezyhttp.server.core.ApplicationContextBuilder) Test(org.testng.annotations.Test)

Aggregations

EzyBeanContext (com.tvd12.ezyfox.bean.EzyBeanContext)3 EzySingletonFactory (com.tvd12.ezyfox.bean.EzySingletonFactory)3 Test (org.testng.annotations.Test)3 ApplicationContextBuilder (com.tvd12.ezyhttp.server.core.ApplicationContextBuilder)2 ViewContext (com.tvd12.ezyhttp.server.core.view.ViewContext)2 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)1 EzyBeanContextBuilder (com.tvd12.ezyfox.bean.EzyBeanContextBuilder)1 AbsentMessageResolver (com.tvd12.ezyhttp.server.core.view.AbsentMessageResolver)1 MessageProvider (com.tvd12.ezyhttp.server.core.view.MessageProvider)1 TemplateResolver (com.tvd12.ezyhttp.server.core.view.TemplateResolver)1 ViewContextBuilder (com.tvd12.ezyhttp.server.core.view.ViewContextBuilder)1 ViewDecorator (com.tvd12.ezyhttp.server.core.view.ViewDecorator)1 ViewDialect (com.tvd12.ezyhttp.server.core.view.ViewDialect)1 GraphQLConfiguration (com.tvd12.ezyhttp.server.graphql.GraphQLConfiguration)1 GraphQLDataFetcher (com.tvd12.ezyhttp.server.graphql.GraphQLDataFetcher)1 GraphQLDataFetcherManager (com.tvd12.ezyhttp.server.graphql.GraphQLDataFetcherManager)1 GraphQLController (com.tvd12.ezyhttp.server.graphql.controller.GraphQLController)1 Field (java.lang.reflect.Field)1 Map (java.util.Map)1