fix(接口测试): 修复另存为新用例造成浏览器没反应的缺陷
This commit is contained in:
parent
0b0328aa27
commit
e0ef45198d
|
@ -147,7 +147,7 @@ public class TestDataGenerator {
|
||||||
if (object.has(MINLENGTH)) {
|
if (object.has(MINLENGTH)) {
|
||||||
minLength = object.get(MINLENGTH).getAsInt();
|
minLength = object.get(MINLENGTH).getAsInt();
|
||||||
}
|
}
|
||||||
String value = RandomStringUtils.randomAlphanumeric(minLength, maxLength);
|
String value = minLength > maxLength ? mockValue.toString() : RandomStringUtils.randomAlphanumeric(minLength, maxLength);
|
||||||
Object enumObj = analyzeEnumProperty(object);
|
Object enumObj = analyzeEnumProperty(object);
|
||||||
String v = enumObj == null ? "" : String.valueOf(enumObj);
|
String v = enumObj == null ? "" : String.valueOf(enumObj);
|
||||||
value = StringUtils.isNotBlank(v) ? v : value;
|
value = StringUtils.isNotBlank(v) ? v : value;
|
||||||
|
@ -174,7 +174,7 @@ public class TestDataGenerator {
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Object analyzeInteger(JsonObject object) {
|
public static Object analyzeInteger(JsonObject object) {
|
||||||
// 先设置空值
|
// 先设置空值
|
||||||
|
|
|
@ -58,7 +58,7 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
schema: {
|
"schema.type": {
|
||||||
handler() {
|
handler() {
|
||||||
this.schema.mock = this.mock;
|
this.schema.mock = this.mock;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue