-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: optionally disable reset to enable concurrency (refs #70)
- Loading branch information
1 parent
3c44d52
commit 0b41641
Showing
3 changed files
with
135 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
src/test/java/usecases/ResetWireMockDisabledBetweenTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
package usecases; | ||
|
||
import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; | ||
import static com.github.tomakehurst.wiremock.client.WireMock.anyRequestedFor; | ||
import static com.github.tomakehurst.wiremock.client.WireMock.anyUrl; | ||
import static com.github.tomakehurst.wiremock.client.WireMock.get; | ||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import com.github.tomakehurst.wiremock.WireMockServer; | ||
import com.github.tomakehurst.wiremock.client.WireMock; | ||
import io.restassured.RestAssured; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Order; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
import org.wiremock.spring.ConfigureWireMock; | ||
import org.wiremock.spring.EnableWireMock; | ||
import org.wiremock.spring.InjectWireMock; | ||
|
||
@SpringBootTest | ||
@EnableWireMock({ | ||
@ConfigureWireMock( | ||
name = "wm1", | ||
portProperties = "wm1.server.port", | ||
baseUrlProperties = "wm1.server.url", | ||
resetWireMockServer = false), | ||
@ConfigureWireMock( | ||
name = "wm2", | ||
portProperties = "wm2.server.port", | ||
baseUrlProperties = "wm2.server.url") | ||
}) | ||
class ResetWireMockDisabledBetweenTest { | ||
|
||
@InjectWireMock("wm1") | ||
private WireMockServer wm1; | ||
|
||
@Value("${wm1.server.port}") | ||
private int wm1Port; | ||
|
||
@Value("${wm1.server.url}") | ||
private String wm1Url; | ||
|
||
@InjectWireMock("wm2") | ||
private WireMockServer wm2; | ||
|
||
@Value("${wm2.server.port}") | ||
private int wm2Port; | ||
|
||
@Value("${wm2.server.url}") | ||
private String wm2Url; | ||
|
||
private WireMock wm1Client; | ||
|
||
private WireMock wm2Client; | ||
|
||
@BeforeEach | ||
public void before() { | ||
this.wm1Client = WireMock.create().port(this.wm1Port).build(); | ||
this.wm2Client = WireMock.create().port(this.wm2Port).build(); | ||
} | ||
|
||
@Test | ||
@Order(1) | ||
void test1() { | ||
this.wm1Client.register( | ||
get("/wm1_configured_in_test1").willReturn(aResponse().withStatus(202))); | ||
this.wm2Client.register( | ||
get("/wm2_configured_in_test1").willReturn(aResponse().withStatus(202))); | ||
|
||
assertThat(this.wm1Client.find(anyRequestedFor(anyUrl()))).hasSize(0); | ||
assertThat(this.wm1Client.allStubMappings().getMappings()).hasSize(1); | ||
|
||
assertThat(this.wm2Client.find(anyRequestedFor(anyUrl()))).hasSize(0); | ||
assertThat(this.wm2Client.allStubMappings().getMappings()).hasSize(1); | ||
|
||
this.wm1Client.register( | ||
get("/wm1_configured_in_test1_again").willReturn(aResponse().withStatus(202))); | ||
|
||
RestAssured.when().get(this.wm1Url + "/wm1_configured_in_test1_again").then().statusCode(202); | ||
|
||
assertThat(this.wm1Client.find(anyRequestedFor(anyUrl()))).hasSize(1); | ||
assertThat(this.wm1Client.allStubMappings().getMappings()).hasSize(2); | ||
|
||
assertThat(this.wm2Client.find(anyRequestedFor(anyUrl()))).hasSize(0); | ||
assertThat(this.wm2Client.allStubMappings().getMappings()).hasSize(1); | ||
} | ||
|
||
@Test | ||
@Order(2) | ||
void test2() { | ||
assertThat(this.wm1Client.find(anyRequestedFor(anyUrl()))) | ||
.as("should not have been reset") | ||
.hasSize(1); | ||
assertThat(this.wm1Client.allStubMappings().getMappings()) | ||
.as("should not have been reset") | ||
.hasSize(2); | ||
|
||
assertThat(this.wm2Client.find(anyRequestedFor(anyUrl()))) | ||
.as("should have been reset") | ||
.hasSize(0); | ||
assertThat(this.wm2Client.allStubMappings().getMappings()) | ||
.as("should have been reset") | ||
.hasSize(0); | ||
} | ||
} |