no message

This commit is contained in:
2024-09-11 17:00:36 +03:00
parent 151572fd82
commit 4da2187f42
8 changed files with 102 additions and 41 deletions

View File

@@ -181,7 +181,7 @@ public class AddTasksToDVMPackage extends Pass_2021<DVMPackage> {
target.tasksCount += tasks_count;
Global.testingServer.db.Update(target);
//--
target.printCGT();
// target.printCGT();
}
@Override
protected void showDone() throws Exception {

View File

@@ -0,0 +1,11 @@
package Visual_DVM_2021.Passes.All;
import Common.Current;
import TestingSystem.Common.TestingPackage.TestingPackage;
import Visual_DVM_2021.Passes.Pass_2021;
import Visual_DVM_2021.Passes.ShowTestingPackage;
public class ShowCurrentDVMPackage extends ShowTestingPackage {
@Override
public Current currentName() {
return Current.DVMPackage;
}
}

View File

@@ -341,12 +341,17 @@ public enum PassCode_2021 {
//--
ShowSapforCompilationOut,
ShowSapforCompilationErr,
GetOldBugReports;
GetOldBugReports,
ShowCurrentDVMPackage
;
//--
public String getDescription() {
switch (this) {
case Undefined:
return "?";
case ShowCurrentDVMPackage:
return "Показать состав пакета тестирования DVM";
case GetOldBugReports:
return "Получить неиспользуемые баг репорты";
case SPF_RenameIncludes:

View File

@@ -0,0 +1,72 @@
package Visual_DVM_2021.Passes;
import Common.Current;
import Common.Global;
import TestingSystem.Common.Group.Group;
import TestingSystem.Common.Test.Test;
import TestingSystem.Common.TestingPackage.TestingPackage;
import TestingSystem.DVM.Configuration.Configuration;
import java.util.Vector;
public abstract class ShowTestingPackage extends Pass_2021<TestingPackage> {
@Override
public String getIconPath() {
return "/icons/LastOpened.png";
}
@Override
public String getButtonText() {
return "";
}
public abstract Current currentName();
@Override
protected boolean canStart(Object... args) throws Exception {
target = null;
if (Current.Check(Log, currentName())) {
target = (TestingPackage) Current.get(currentName());
return true;
}
return false;
}
@Override
protected void showPreparation() throws Exception {
Global.testingServer.db.UnselectAllGTC();
}
@Override
protected void showDone() throws Exception {
System.out.println("package="+target.id);
Vector<Configuration> configurations = target.getConfigurations();
Vector<Group> groups = target.getGroups();
Vector<Test> tests = target.getTests();
//-----
Vector<String> res = new Vector<>();
res.add("конфигурации: " + configurations.size());
for (Configuration configuration : configurations)
res.add(configuration.description);
//--
res.add("группы: " + groups.size());
for (Group group : groups)
res.add(group.description);
//--
res.add("тесты: " + tests.size());
for (Test test : tests)
res.add(test.description);
System.out.println(String.join("\n", res));
//--
for (Configuration configuration: configurations)
configuration.Select(true);
for (Group group: groups)
group.Select(true);
for (Test test: tests)
test.Select(true);
//--
if (!groups.isEmpty()){
Global.testingServer.db.groups.ShowUI(groups.lastElement().id);
}
if (!tests.isEmpty()){
Global.testingServer.db.tests.ShowUI(tests.lastElement().id);
}
if (!configurations.isEmpty()){
Global.testingServer.db.configurations.ShowUI(configurations.lastElement().id);
}
}
}