Skip to content

Commit

Permalink
Ensure we use the same GRPC version everywhere (#1137)
Browse files Browse the repository at this point in the history
* Ensure we use the same GRPC version everywhere

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

* Fix actors tests assert

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

* Revert Dapr exception asserts

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

* Increase sleep to allow Spring Context to bootstrap

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

* Revert sleep value

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

* Increase the sleep for messaging test

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

* Move sleep before each, to ensure Spring context starts

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

* Add more delays to ensure Spring Controller gets the messages

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>

---------

Signed-off-by: Artur Ciocanu <ciocanu@adobe.com>
Co-authored-by: Artur Ciocanu <ciocanu@adobe.com>
  • Loading branch information
artur-ciocanu and Artur Ciocanu authored Sep 26, 2024
1 parent 436b7df commit cedaebc
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,13 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-testing</artifactId>
<version>1.56.1</version>
<version>${grpc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-inprocess</artifactId>
<version>1.59.0</version>
<version>${grpc.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
1 change: 0 additions & 1 deletion sdk-actors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<grpc.version>1.59.0</grpc.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public void invokeException() {
ExecutionException.class,
"UNKNOWN",
"UNKNOWN: ",
() -> result.block());
result::block);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void getActorStateException() {
assertThrowsDaprException(
ExecutionException.class,
"UNKNOWN",
"UNKNOWN: ",
"UNKNOWN: Application error processing RPC",
result::block);
}

Expand All @@ -112,7 +112,7 @@ public void saveActorStateTransactionallyException() {
assertThrowsDaprException(
ExecutionException.class,
"UNKNOWN",
"UNKNOWN: ",
"UNKNOWN: Application error processing RPC",
result::block);
}
@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,15 @@ public class DaprSpringMessagingIT {
private TestRestController testRestController;

@BeforeAll
public static void setup(){
public static void beforeAll(){
org.testcontainers.Testcontainers.exposeHostPorts(8080);
}

@BeforeEach
public void beforeEach() throws InterruptedException {
Thread.sleep(1000);
}

@Test
public void testDaprMessagingTemplate() throws InterruptedException {
for (int i = 0; i < 10; i++) {
Expand All @@ -97,5 +102,4 @@ public void testDaprMessagingTemplate() throws InterruptedException {

assertThat(events.size()).isEqualTo(10);
}

}
1 change: 0 additions & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<grpc.version>1.59.0</grpc.version>
<argLine>
--add-opens java.base/java.util=ALL-UNNAMED
</argLine>
Expand Down

0 comments on commit cedaebc

Please sign in to comment.