use of io.github.jhipster.config.JHipsterProperties in project hello-world by haoziapple.
the class WebConfigurerTest method setup.
@Before
public void setup() {
servletContext = spy(new MockServletContext());
doReturn(new MockFilterRegistration()).when(servletContext).addFilter(anyString(), any(Filter.class));
doReturn(new MockServletRegistration()).when(servletContext).addServlet(anyString(), any(Servlet.class));
env = new MockEnvironment();
props = new JHipsterProperties();
webConfigurer = new WebConfigurer(env, props);
metricRegistry = new MetricRegistry();
webConfigurer.setMetricRegistry(metricRegistry);
}
use of io.github.jhipster.config.JHipsterProperties in project cetc by DiscoverForever.
the class WebConfigurerTest method setup.
@Before
public void setup() {
servletContext = spy(new MockServletContext());
doReturn(new MockFilterRegistration()).when(servletContext).addFilter(anyString(), any(Filter.class));
doReturn(new MockServletRegistration()).when(servletContext).addServlet(anyString(), any(Servlet.class));
env = new MockEnvironment();
props = new JHipsterProperties();
webConfigurer = new WebConfigurer(env, props, null);
metricRegistry = new MetricRegistry();
webConfigurer.setMetricRegistry(metricRegistry);
}
use of io.github.jhipster.config.JHipsterProperties in project cetc by DiscoverForever.
the class JWTFilterTest method setup.
@Before
public void setup() {
JHipsterProperties jHipsterProperties = new JHipsterProperties();
tokenProvider = new TokenProvider(jHipsterProperties);
ReflectionTestUtils.setField(tokenProvider, "secretKey", "test secret");
ReflectionTestUtils.setField(tokenProvider, "tokenValidityInMilliseconds", 60000);
jwtFilter = new JWTFilter(tokenProvider);
SecurityContextHolder.getContext().setAuthentication(null);
}
use of io.github.jhipster.config.JHipsterProperties in project FuryViewer by TheDoctor-95.
the class JWTFilterTest method setup.
@Before
public void setup() {
JHipsterProperties jHipsterProperties = new JHipsterProperties();
tokenProvider = new TokenProvider(jHipsterProperties);
ReflectionTestUtils.setField(tokenProvider, "secretKey", "test secret");
ReflectionTestUtils.setField(tokenProvider, "tokenValidityInMilliseconds", 60000);
jwtFilter = new JWTFilter(tokenProvider);
SecurityContextHolder.getContext().setAuthentication(null);
}
use of io.github.jhipster.config.JHipsterProperties in project xm-ms-entity by xm-online.
the class WebConfigurerIntTest method setup.
@Before
public void setup() {
servletContext = spy(new MockServletContext());
doReturn(new MockFilterRegistration()).when(servletContext).addFilter(anyString(), any(Filter.class));
doReturn(new MockServletRegistration()).when(servletContext).addServlet(anyString(), any(Servlet.class));
env = new MockEnvironment();
props = new JHipsterProperties();
webConfigurer = new WebConfigurer(env, props, new MockHazelcastInstance());
metricRegistry = new MetricRegistry();
webConfigurer.setMetricRegistry(metricRegistry);
}
Aggregations