Skip to content

Commit

Permalink
[ISSUE apache#3605] Fix the error of combination plugin IT (apache#3611)
Browse files Browse the repository at this point in the history
* Fix the error of combination plugin IT

* Add todo
  • Loading branch information
JooKS-me authored Jun 24, 2022
1 parent b769aaa commit 783639e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@

http://localhost:9095/actuator/health
http://localhost:8189/test/path/123?name=tom
http://localhost:8011/actuator/health
http://localhost:55290/test/grpc/hello
http://localhost:8081/actuator/health
http://localhost:8002/actuator/health
http://localhost:28011/actuator/health
http://localhost:9195/actuator/health
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import org.apache.shenyu.plugin.cryptor.handler.CryptorRuleHandler;
import org.apache.shenyu.plugin.cryptor.strategy.RsaStrategy;
import org.apache.shenyu.web.controller.LocalPluginController.RuleLocalData;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;

Expand Down Expand Up @@ -215,10 +214,4 @@ private void cleanRateLimiter() throws IOException {
String res = cleanPluginData(PluginEnum.RATE_LIMITER.getName());
assertThat(res, is("success"));
}

@AfterAll
public static void cleanAll() throws IOException {
String res = cleanPluginData(PluginEnum.DUBBO.getName());
assertThat(res, is("success"));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,6 @@ public static void testIsOneThreadPool() throws IOException {
assertEquals(spring, grpc);
String motan = HttpHelper.INSTANCE.getFromGateway("/shenyu/getFromMotan", String.class);
assertEquals(spring, motan);
// TODO test sofa
}
}

0 comments on commit 783639e

Please sign in to comment.