use of com.github.mjeanroy.junit.servers.tomcat.EmbeddedTomcat in project junit-servers by mjeanroy.
the class TomcatServerExtensionTest method it_should_start_given_tomcat_server_before_all_tests.
@Test
void it_should_start_given_tomcat_server_before_all_tests() {
final EmbeddedTomcat tomcat = new EmbeddedTomcatMockBuilder().build();
final TomcatServerExtension extension = new TomcatServerExtension(tomcat);
final FixtureClass testInstance = new FixtureClass();
final FakeExtensionContext context = new FakeExtensionContext(testInstance);
extension.beforeAll(context);
final FakeStore store = context.getSingleStore();
final EmbeddedServerRunner serverAdapter = store.get("serverAdapter", EmbeddedServerRunner.class);
assertThat(serverAdapter).isNotNull();
assertThat(serverAdapter.getServer()).isSameAs(tomcat);
assertThat(serverAdapter.getServer().isStarted()).isTrue();
}
use of com.github.mjeanroy.junit.servers.tomcat.EmbeddedTomcat in project junit-servers by mjeanroy.
the class EmbeddedTomcatMockBuilder method build.
/**
* Build mock instance of {@link EmbeddedTomcat}.
*
* @return The mock instance.
*/
public EmbeddedTomcat build() {
final EmbeddedTomcat tomcat = mock(EmbeddedTomcat.class);
when(tomcat.getScheme()).thenReturn(scheme);
when(tomcat.getHost()).thenReturn(host);
when(tomcat.getPort()).thenReturn(port);
when(tomcat.getPath()).thenReturn(path);
when(tomcat.isStarted()).thenReturn(false);
String url = this.url == null ? url(scheme, host, port, path) : this.url;
when(tomcat.getUrl()).thenReturn(url);
EmbeddedTomcatConfiguration configuration = this.configuration == null ? new EmbeddedTomcatConfigurationMockBuilder().build() : this.configuration;
when(tomcat.getConfiguration()).thenReturn(configuration);
doAnswer(new IsStartedAnswer(tomcat, true)).when(tomcat).start();
doAnswer(new IsStartedAnswer(tomcat, false)).when(tomcat).stop();
return tomcat;
}
use of com.github.mjeanroy.junit.servers.tomcat.EmbeddedTomcat in project junit-servers by mjeanroy.
the class TomcatServerJunit4RuleTest method it_should_create_rule_with_server.
@Test
void it_should_create_rule_with_server() throws Throwable {
final EmbeddedTomcatConfiguration config = mock(EmbeddedTomcatConfiguration.class);
final EmbeddedTomcat tomcat = new EmbeddedTomcatMockBuilder().withConfiguration(config).build();
final TomcatServerJunit4Rule rule = createRule(tomcat);
assertThat(rule.getServer()).isSameAs(tomcat);
assertThat(rule.getScheme()).isEqualTo(tomcat.getScheme());
assertThat(rule.getHost()).isEqualTo(tomcat.getHost());
assertThat(rule.getPort()).isEqualTo(tomcat.getPort());
assertThat(rule.getPath()).isEqualTo(tomcat.getPath());
assertThat(rule.getUrl()).isEqualTo(tomcat.getUrl());
verify(tomcat, never()).start();
verify(tomcat, never()).stop();
evaluateRule(rule);
InOrder inOrder = inOrder(tomcat);
inOrder.verify(tomcat).start();
inOrder.verify(tomcat).stop();
}
Aggregations