Search in sources :

Example 1 with MockServletContext

use of cn.taketoday.mock.web.MockServletContext in project today-infrastructure by TAKETODAY.

the class ConditionalOnWebApplicationTests method testWebApplicationWithServletContext.

@Test
void testWebApplicationWithServletContext() {
    AnnotationConfigServletWebApplicationContext ctx = new AnnotationConfigServletWebApplicationContext();
    ctx.register(AnyWebApplicationConfiguration.class, ServletWebApplicationConfiguration.class, ReactiveWebApplicationConfiguration.class);
    ctx.setServletContext(new MockServletContext());
    ctx.refresh();
    this.context = ctx;
    assertThat(this.context.getBeansOfType(String.class)).containsExactly(entry("any", "any"), entry("servlet", "servlet"));
}
Also used : AnnotationConfigServletWebApplicationContext(cn.taketoday.framework.web.servlet.context.AnnotationConfigServletWebApplicationContext) MockServletContext(cn.taketoday.mock.web.MockServletContext) Test(org.junit.jupiter.api.Test)

Example 2 with MockServletContext

use of cn.taketoday.mock.web.MockServletContext in project today-framework by TAKETODAY.

the class WebApplicationContextRunner method withMockServletContext.

/**
 * Decorate the specified {@code contextFactory} to set a {@link MockServletContext}
 * on each newly created {@link WebApplicationContext}.
 *
 * @param contextFactory the context factory to decorate
 * @return an updated supplier that will set the {@link MockServletContext}
 */
public static Supplier<ConfigurableWebApplicationContext> withMockServletContext(Supplier<ConfigurableWebServletApplicationContext> contextFactory) {
    return (contextFactory != null) ? () -> {
        ConfigurableWebServletApplicationContext context = contextFactory.get();
        context.setServletContext(new MockServletContext());
        return context;
    } : null;
}
Also used : ConfigurableWebServletApplicationContext(cn.taketoday.web.context.ConfigurableWebServletApplicationContext) MockServletContext(cn.taketoday.mock.web.MockServletContext)

Example 3 with MockServletContext

use of cn.taketoday.mock.web.MockServletContext in project today-framework by TAKETODAY.

the class AbstractGenericWebContextLoader method configureWebResources.

/**
 * Configures web resources for the supplied web application context (WAC).
 * <h4>Implementation Details</h4>
 * <p>If the supplied WAC has no parent or its parent is not a WAC, the
 * supplied WAC will be configured as the Root WAC (see "<em>Root WAC
 * Configuration</em>" below).
 * <p>Otherwise the context hierarchy of the supplied WAC will be traversed
 * to find the top-most WAC (i.e., the root); and the {@link ServletContext}
 * of the Root WAC will be set as the {@code ServletContext} for the supplied
 * WAC.
 * <h4>Root WAC Configuration</h4>
 * <ul>
 * <li>The resource base path is retrieved from the supplied
 * {@code WebMergedContextConfiguration}.</li>
 * <li>A {@link ResourceLoader} is instantiated for the {@link MockServletContext}:
 * if the resource base path is prefixed with "{@code classpath:}", a
 * {@link DefaultResourceLoader} will be used; otherwise, a
 * {@link FileSystemResourceLoader} will be used.</li>
 * <li>A {@code MockServletContext} will be created using the resource base
 * path and resource loader.</li>
 * <li>The supplied {@link GenericWebServletApplicationContext} is then stored in
 * the {@code MockServletContext} under the
 * {@link WebServletApplicationContext#ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE} key.</li>
 * <li>Finally, the {@code MockServletContext} is set in the
 * {@code WebServletApplicationContext}.</li>
 * </ul>
 *
 * @param context the web application context for which to configure the web resources
 * @param webMergedConfig the merged context configuration to use to load the web application context
 */
protected void configureWebResources(GenericWebServletApplicationContext context, WebMergedContextConfiguration webMergedConfig) {
    ApplicationContext parent = context.getParent();
    // set the current context as the root WebServletApplicationContext:
    if (!(parent instanceof WebServletApplicationContext)) {
        String resourceBasePath = webMergedConfig.getResourceBasePath();
        ResourceLoader resourceLoader = (resourceBasePath.startsWith(ResourceLoader.CLASSPATH_URL_PREFIX) ? new DefaultResourceLoader() : new FileSystemResourceLoader());
        ServletContext servletContext = new MockServletContext(resourceBasePath, resourceLoader);
        servletContext.setAttribute(WebServletApplicationContext.ROOT_WEB_APPLICATION_CONTEXT_ATTRIBUTE, context);
        context.setServletContext(servletContext);
    } else {
        ServletContext servletContext = null;
        // Find the root WebServletApplicationContext
        while (parent != null) {
            if (parent instanceof WebServletApplicationContext && !(parent.getParent() instanceof WebServletApplicationContext)) {
                servletContext = ((WebServletApplicationContext) parent).getServletContext();
                break;
            }
            parent = parent.getParent();
        }
        Assert.state(servletContext != null, "Failed to find root WebServletApplicationContext in the context hierarchy");
        context.setServletContext(servletContext);
    }
}
Also used : FileSystemResourceLoader(cn.taketoday.core.io.FileSystemResourceLoader) ResourceLoader(cn.taketoday.core.io.ResourceLoader) DefaultResourceLoader(cn.taketoday.core.io.DefaultResourceLoader) GenericWebServletApplicationContext(cn.taketoday.web.context.support.GenericWebServletApplicationContext) WebServletApplicationContext(cn.taketoday.web.servlet.WebServletApplicationContext) ConfigurableApplicationContext(cn.taketoday.context.ConfigurableApplicationContext) ApplicationContext(cn.taketoday.context.ApplicationContext) FileSystemResourceLoader(cn.taketoday.core.io.FileSystemResourceLoader) MockServletContext(cn.taketoday.mock.web.MockServletContext) ServletContext(jakarta.servlet.ServletContext) GenericWebServletApplicationContext(cn.taketoday.web.context.support.GenericWebServletApplicationContext) WebServletApplicationContext(cn.taketoday.web.servlet.WebServletApplicationContext) MockServletContext(cn.taketoday.mock.web.MockServletContext) DefaultResourceLoader(cn.taketoday.core.io.DefaultResourceLoader)

Example 4 with MockServletContext

use of cn.taketoday.mock.web.MockServletContext in project today-framework by TAKETODAY.

the class EnvironmentSystemIntegrationTests method registerServletParamPropertySources_GenericWebApplicationContext.

@Test
void registerServletParamPropertySources_GenericWebApplicationContext() {
    MockServletContext servletContext = new MockServletContext();
    servletContext.addInitParameter("pCommon", "pCommonContextValue");
    servletContext.addInitParameter("pContext1", "pContext1Value");
    GenericWebServletApplicationContext ctx = new GenericWebServletApplicationContext();
    ctx.setServletContext(servletContext);
    ctx.refresh();
    ConfigurableEnvironment environment = ctx.getEnvironment();
    assertThat(environment).isInstanceOf(StandardServletEnvironment.class);
    PropertySources propertySources = environment.getPropertySources();
    assertThat(propertySources.contains(StandardServletEnvironment.SERVLET_CONTEXT_PROPERTY_SOURCE_NAME)).isTrue();
    // ServletContext params are available
    assertThat(environment.getProperty("pCommon")).isEqualTo("pCommonContextValue");
    assertThat(environment.getProperty("pContext1")).isEqualTo("pContext1Value");
    // Servlet* PropertySources have precedence over System* PropertySources
    assertThat(propertySources.precedenceOf(PropertySource.named(StandardServletEnvironment.SERVLET_CONTEXT_PROPERTY_SOURCE_NAME))).isLessThan(propertySources.precedenceOf(PropertySource.named(StandardEnvironment.SYSTEM_PROPERTIES_PROPERTY_SOURCE_NAME)));
    // Replace system properties with a mock property source for convenience
    MockPropertySource mockSystemProperties = new MockPropertySource(StandardEnvironment.SYSTEM_PROPERTIES_PROPERTY_SOURCE_NAME);
    mockSystemProperties.setProperty("pCommon", "pCommonSysPropsValue");
    mockSystemProperties.setProperty("pSysProps1", "pSysProps1Value");
    propertySources.replace(StandardEnvironment.SYSTEM_PROPERTIES_PROPERTY_SOURCE_NAME, mockSystemProperties);
    // assert that servletcontext init params resolve with higher precedence than sysprops
    assertThat(environment.getProperty("pCommon")).isEqualTo("pCommonContextValue");
    assertThat(environment.getProperty("pSysProps1")).isEqualTo("pSysProps1Value");
}
Also used : GenericWebServletApplicationContext(cn.taketoday.web.context.support.GenericWebServletApplicationContext) MockPropertySource(cn.taketoday.mock.env.MockPropertySource) MockServletContext(cn.taketoday.mock.web.MockServletContext) Test(org.junit.jupiter.api.Test)

Example 5 with MockServletContext

use of cn.taketoday.mock.web.MockServletContext in project today-framework by TAKETODAY.

the class EnvironmentSystemIntegrationTests method registerServletParamPropertySources_AbstractRefreshableWebApplicationContext.

@Test
void registerServletParamPropertySources_AbstractRefreshableWebApplicationContext() {
    MockServletContext servletContext = new MockServletContext();
    servletContext.addInitParameter("pCommon", "pCommonContextValue");
    servletContext.addInitParameter("pContext1", "pContext1Value");
    MockServletConfig servletConfig = new MockServletConfig(servletContext);
    servletConfig.addInitParameter("pCommon", "pCommonConfigValue");
    servletConfig.addInitParameter("pConfig1", "pConfig1Value");
    AbstractRefreshableWebApplicationContext ctx = new AnnotationConfigWebApplicationContext();
    ctx.setConfigLocation(EnvironmentAwareBean.class.getName());
    ctx.setServletConfig(servletConfig);
    ctx.refresh();
    ConfigurableEnvironment environment = ctx.getEnvironment();
    assertThat(environment).isInstanceOf(StandardServletEnvironment.class);
    PropertySources propertySources = environment.getPropertySources();
    assertThat(propertySources.contains(StandardServletEnvironment.SERVLET_CONTEXT_PROPERTY_SOURCE_NAME)).isTrue();
    assertThat(propertySources.contains(StandardServletEnvironment.SERVLET_CONFIG_PROPERTY_SOURCE_NAME)).isTrue();
    // ServletConfig gets precedence
    assertThat(environment.getProperty("pCommon")).isEqualTo("pCommonConfigValue");
    assertThat(propertySources.precedenceOf(PropertySource.named(StandardServletEnvironment.SERVLET_CONFIG_PROPERTY_SOURCE_NAME))).isLessThan(propertySources.precedenceOf(PropertySource.named(StandardServletEnvironment.SERVLET_CONTEXT_PROPERTY_SOURCE_NAME)));
    // but all params are available
    assertThat(environment.getProperty("pContext1")).isEqualTo("pContext1Value");
    assertThat(environment.getProperty("pConfig1")).isEqualTo("pConfig1Value");
    // Servlet* PropertySources have precedence over System* PropertySources
    assertThat(propertySources.precedenceOf(PropertySource.named(StandardServletEnvironment.SERVLET_CONFIG_PROPERTY_SOURCE_NAME))).isLessThan(propertySources.precedenceOf(PropertySource.named(StandardEnvironment.SYSTEM_PROPERTIES_PROPERTY_SOURCE_NAME)));
    // Replace system properties with a mock property source for convenience
    MockPropertySource mockSystemProperties = new MockPropertySource(StandardEnvironment.SYSTEM_PROPERTIES_PROPERTY_SOURCE_NAME);
    mockSystemProperties.setProperty("pCommon", "pCommonSysPropsValue");
    mockSystemProperties.setProperty("pSysProps1", "pSysProps1Value");
    propertySources.replace(StandardEnvironment.SYSTEM_PROPERTIES_PROPERTY_SOURCE_NAME, mockSystemProperties);
    // assert that servletconfig params resolve with higher precedence than sysprops
    assertThat(environment.getProperty("pCommon")).isEqualTo("pCommonConfigValue");
    assertThat(environment.getProperty("pSysProps1")).isEqualTo("pSysProps1Value");
}
Also used : MockServletConfig(cn.taketoday.mock.web.MockServletConfig) AbstractRefreshableWebApplicationContext(cn.taketoday.web.context.support.AbstractRefreshableWebApplicationContext) MockPropertySource(cn.taketoday.mock.env.MockPropertySource) AnnotationConfigWebApplicationContext(cn.taketoday.web.context.support.AnnotationConfigWebApplicationContext) MockServletContext(cn.taketoday.mock.web.MockServletContext) Test(org.junit.jupiter.api.Test)

Aggregations

MockServletContext (cn.taketoday.mock.web.MockServletContext)12 Test (org.junit.jupiter.api.Test)8 MockPropertySource (cn.taketoday.mock.env.MockPropertySource)6 MockServletConfig (cn.taketoday.mock.web.MockServletConfig)4 GenericWebServletApplicationContext (cn.taketoday.web.context.support.GenericWebServletApplicationContext)4 ApplicationContext (cn.taketoday.context.ApplicationContext)2 ConfigurableApplicationContext (cn.taketoday.context.ConfigurableApplicationContext)2 DefaultResourceLoader (cn.taketoday.core.io.DefaultResourceLoader)2 FileSystemResourceLoader (cn.taketoday.core.io.FileSystemResourceLoader)2 ResourceLoader (cn.taketoday.core.io.ResourceLoader)2 AnnotationConfigServletWebApplicationContext (cn.taketoday.framework.web.servlet.context.AnnotationConfigServletWebApplicationContext)2 ConfigurableWebServletApplicationContext (cn.taketoday.web.context.ConfigurableWebServletApplicationContext)2 AbstractRefreshableWebApplicationContext (cn.taketoday.web.context.support.AbstractRefreshableWebApplicationContext)2 AnnotationConfigWebApplicationContext (cn.taketoday.web.context.support.AnnotationConfigWebApplicationContext)2 StaticWebServletApplicationContext (cn.taketoday.web.context.support.StaticWebServletApplicationContext)2 WebServletApplicationContext (cn.taketoday.web.servlet.WebServletApplicationContext)2 ServletContext (jakarta.servlet.ServletContext)2