fix(测试用例): 脑图保存节点名称不能为空
This commit is contained in:
parent
2385ff5e03
commit
d68f283578
|
@ -102,6 +102,7 @@ minder_extra_node.text_description=文本描述
|
|||
minder_extra_node.text_expected_result=预期结果
|
||||
minder_extra_node.description=备注信息
|
||||
minder_extra_node.text_node_empty=文本节点名称不能为空
|
||||
minder_extra_node.case_node_empty=用例名称不能为空
|
||||
#module:CaseReview
|
||||
case_review.id.not_blank=ID不能为空
|
||||
case_review.name.length_range=名称长度必须在1-200之间
|
||||
|
|
|
@ -138,6 +138,8 @@ minder_extra_node.text_description=TextDescription
|
|||
minder_extra_node.text_expected_result=ExpectedResult
|
||||
minder_extra_node.description=Description
|
||||
minder_extra_node.text_node_empty=Text node name cannot be empty
|
||||
minder_extra_node.case_node_empty=Case name cannot be empty
|
||||
|
||||
#module:CaseReview
|
||||
case_review.id.not_blank=ID cannot be empty
|
||||
case_review.name.length_range=The name length must be between 1 and 200
|
||||
|
|
|
@ -137,6 +137,7 @@ minder_extra_node.text_description=文本描述
|
|||
minder_extra_node.text_expected_result=预期结果
|
||||
minder_extra_node.description=备注信息
|
||||
minder_extra_node.text_node_empty=文本节点名称不能为空
|
||||
minder_extra_node.case_node_empty=用例名称不能为空
|
||||
#module:CaseReview
|
||||
case_review.id.not_blank=ID不能为空
|
||||
case_review.name.length_range=名称长度必须在1-200之间
|
||||
|
|
|
@ -138,6 +138,7 @@ minder_extra_node.text_description=文字描述
|
|||
minder_extra_node.text_expected_result=預期結果
|
||||
minder_extra_node.description=備註資訊
|
||||
minder_extra_node.text_node_empty=文字節點名稱不能為空
|
||||
minder_extra_node.case_node_empty=用例名稱不能為空
|
||||
#module:CaseReview
|
||||
case_review.id.not_blank=ID不能為空
|
||||
case_review.name.length_range=名稱長度必須在1-200之間
|
||||
|
|
|
@ -931,6 +931,9 @@ public class FunctionalCaseMinderService {
|
|||
private FunctionalCaseModule buildModule(FunctionalCaseMinderEditRequest request, String userId, FunctionalCaseModuleEditRequest functionalCaseModuleEditRequest) {
|
||||
FunctionalCaseModule functionalCaseModule = new FunctionalCaseModule();
|
||||
functionalCaseModule.setId(IDGenerator.nextStr());
|
||||
if (StringUtils.isBlank(functionalCaseModuleEditRequest.getName())) {
|
||||
throw new MSException(Translator.get("api_definition_module.name.not_blank"));
|
||||
}
|
||||
if (functionalCaseModuleEditRequest.getName().length()>255) {
|
||||
functionalCaseModuleEditRequest.setName(functionalCaseModuleEditRequest.getName().substring(0,249));
|
||||
}
|
||||
|
@ -949,6 +952,9 @@ public class FunctionalCaseMinderService {
|
|||
private FunctionalCaseModule updateModule(String userId, FunctionalCaseModuleEditRequest functionalCaseModuleEditRequest) {
|
||||
FunctionalCaseModule updateModule = new FunctionalCaseModule();
|
||||
updateModule.setId(functionalCaseModuleEditRequest.getId());
|
||||
if (StringUtils.isBlank(functionalCaseModuleEditRequest.getName())) {
|
||||
throw new MSException(Translator.get("api_definition_module.name.not_blank"));
|
||||
}
|
||||
if (functionalCaseModuleEditRequest.getName().length()>255) {
|
||||
functionalCaseModuleEditRequest.setName(functionalCaseModuleEditRequest.getName().substring(0,249));
|
||||
}
|
||||
|
@ -964,6 +970,9 @@ public class FunctionalCaseMinderService {
|
|||
private FunctionalCase updateCase(FunctionalCaseChangeRequest request, String userId, FunctionalCaseMapper caseMapper) {
|
||||
FunctionalCase functionalCase = new FunctionalCase();
|
||||
BeanUtils.copyBean(functionalCase, request);
|
||||
if (StringUtils.isBlank(functionalCase.getName())) {
|
||||
throw new MSException(Translator.get("minder_extra_node.case_node_empty"));
|
||||
}
|
||||
if (functionalCase.getName().length()>255) {
|
||||
functionalCase.setName(functionalCase.getName().substring(0,249));
|
||||
}
|
||||
|
@ -1089,6 +1098,9 @@ public class FunctionalCaseMinderService {
|
|||
if (StringUtils.isNotBlank(sourceIdAndInsertModuleIdMap.get(functionalCaseChangeRequest.getModuleId()))) {
|
||||
functionalCase.setModuleId(sourceIdAndInsertModuleIdMap.get(functionalCaseChangeRequest.getModuleId()));
|
||||
}
|
||||
if (StringUtils.isBlank(functionalCase.getName())) {
|
||||
throw new MSException(Translator.get("minder_extra_node.case_node_empty"));
|
||||
}
|
||||
if (functionalCase.getName().length()>255) {
|
||||
functionalCase.setName(functionalCase.getName().substring(0,249));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue