summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java6
-rw-r--r--vnf-sdk-function-test/src/test/java/org/openo/vnfsdk/functests/FileUtilTest.java13
2 files changed, 12 insertions, 7 deletions
diff --git a/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java b/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java
index d7ed67e..f6cffba 100644
--- a/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java
+++ b/vnf-sdk-function-test/src/main/java/org/openo/vnfsdk/functest/common/ServiceRegistration.java
@@ -36,11 +36,15 @@ public class ServiceRegistration implements Runnable {
LOG.info("start extsys microservice register");
boolean flag = false;
int retry = 0;
- while(!flag || retry < 1000) {
+
+ while(!flag) {
LOG.info("VNF-SDK function test microservice register.retry:" + retry);
retry++;
flag = MicroserviceBusConsumer.registerService(funcTestEntity);
+ if(retry >= 1000) {
+ flag = true;
+ }
if(flag == false) {
LOG.warn("microservice register failed, sleep 30S and try again.");
diff --git a/vnf-sdk-function-test/src/test/java/org/openo/vnfsdk/functests/FileUtilTest.java b/vnf-sdk-function-test/src/test/java/org/openo/vnfsdk/functests/FileUtilTest.java
index ba3bd5d..14db973 100644
--- a/vnf-sdk-function-test/src/test/java/org/openo/vnfsdk/functests/FileUtilTest.java
+++ b/vnf-sdk-function-test/src/test/java/org/openo/vnfsdk/functests/FileUtilTest.java
@@ -26,22 +26,23 @@ import org.openo.vnfsdk.functest.FileUtil;
public class FileUtilTest {
- private String createDirPath = "C:/Users/Administrator/Desktop/Unzip";
+ private String createDirPath = "." + File.separator + "tempvnf";
- private String deleteDirPath = "D:/deletefolder";
+ private String deleteDirPath = createDirPath;
private String zipFileName = "src/test/resources/RobotScript.zip";
- private String extractZip = "D:/Test/AA";
-
- private String getDirectory = "D:/Test/AA";
-
@Test
public void testCreateDirectory() {
assertTrue(FileUtil.createDirectory(createDirPath));
}
@Test
+ public void testDeleteDirectory() {
+ FileUtil.deleteDirectory(deleteDirPath);
+ }
+
+ @Test
public void testDeleteFile() {
assertTrue(FileUtil.deleteFile(new File(deleteDirPath)));
}