mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-15 03:55:09 +08:00
165 lines
12 KiB
Java
165 lines
12 KiB
Java
package vip.mate.goal;
|
|
|
|
import org.flywaydb.core.Flyway;
|
|
import org.junit.jupiter.api.Test;
|
|
import org.junit.jupiter.api.io.TempDir;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.WebApplicationType;
|
|
import org.springframework.boot.test.context.TestConfiguration;
|
|
import org.springframework.context.ConfigurableApplicationContext;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Primary;
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
import org.springframework.jdbc.datasource.DriverManagerDataSource;
|
|
import vip.mate.MateClawApplication;
|
|
import vip.mate.exception.MateClawException;
|
|
import vip.mate.goal.model.GoalStatus;
|
|
import vip.mate.goal.service.GoalJsonAcceptanceService;
|
|
import vip.mate.goal.service.GoalJsonBindingService;
|
|
import vip.mate.goal.service.GoalService;
|
|
import vip.mate.goal.service.ManagedGoalJsonService;
|
|
import vip.mate.memory.spi.MemoryManager;
|
|
|
|
import java.nio.file.Path;
|
|
import java.util.List;
|
|
|
|
import static org.junit.jupiter.api.Assertions.*;
|
|
|
|
/** File-backed database, actual migrations and independently closed application contexts. */
|
|
class GoalJsonRestartIntegrationTest {
|
|
@TempDir Path directory;
|
|
|
|
@Test void legacyUpgradeAndManagedBindingsSurviveApplicationRestart() {
|
|
String url = "jdbc:h2:file:" + directory.resolve("goals")
|
|
+ ";MODE=MySQL;DATABASE_TO_LOWER=TRUE;CASE_INSENSITIVE_IDENTIFIERS=TRUE";
|
|
Flyway.configure().dataSource(url, "sa", "").locations("classpath:db/migration/h2")
|
|
.placeholderReplacement(false).target("193").load().migrate();
|
|
var jdbc = new JdbcTemplate(new DriverManagerDataSource(url, "sa", ""));
|
|
jdbc.update("""
|
|
INSERT INTO mate_user(id,username,password,enabled,role,create_time,update_time,deleted)
|
|
VALUES (88001,'restart-owner','unused',TRUE,'user',CURRENT_TIMESTAMP,CURRENT_TIMESTAMP,0)
|
|
""");
|
|
for (long id : List.of(88002L, 88003L)) {
|
|
jdbc.update("""
|
|
INSERT INTO mate_conversation(id,conversation_id,username,workspace_id,agent_id,create_time,update_time,deleted)
|
|
VALUES (?,?,'restart-owner',1,1,CURRENT_TIMESTAMP,CURRENT_TIMESTAMP,0)
|
|
""", id, "restart-" + id);
|
|
jdbc.update("""
|
|
INSERT INTO mate_agent_goal(id,conversation_id,agent_id,workspace_id,created_by,title,description,create_time,update_time)
|
|
VALUES (?,?,1,1,'restart-owner','Legacy report','Migration fixture',CURRENT_TIMESTAMP,CURRENT_TIMESTAMP)
|
|
""", id, "restart-" + id);
|
|
}
|
|
assertEquals(0, jdbc.queryForObject("SELECT COUNT(*) FROM information_schema.columns WHERE table_name='mate_agent_goal' AND column_name='json_acceptance_required'", Integer.class));
|
|
ManagedGoalJsonService.Artifact saved;
|
|
try (var first = start(url)) {
|
|
var goals = first.getBean(GoalService.class);
|
|
var requirements = first.getBean(GoalJsonAcceptanceService.class);
|
|
var artifacts = first.getBean(ManagedGoalJsonService.class);
|
|
var bindings = first.getBean(GoalJsonBindingService.class);
|
|
assertFalse(goals.getById(88002L).isJsonAcceptanceRequired());
|
|
assertFalse(requirements.get(88002L, "restart-owner").required());
|
|
assertEquals(GoalStatus.COMPLETED, goals.markCompleted(88003L, null).getStatus());
|
|
requirements.configure(88002L, "r", new GoalJsonAcceptanceService.ConfigureRequest(0L, "report", List.of("summary")), "restart-owner");
|
|
saved = artifacts.publish(88002L, "report", new ManagedGoalJsonService.PublishRequest(0L, "{\"summary\":false,\"unicode\":\"报告\"}"), "restart-owner");
|
|
assertTrue(bindings.check(88002L, "r", new GoalJsonBindingService.CheckRequest(1L, saved.artifactId(), 1L), "restart-owner").acceptanceEligible());
|
|
}
|
|
try (var second = start(url)) {
|
|
var goals = second.getBean(GoalService.class);
|
|
var requirements = second.getBean(GoalJsonAcceptanceService.class);
|
|
var artifacts = second.getBean(ManagedGoalJsonService.class);
|
|
var bindings = second.getBean(GoalJsonBindingService.class);
|
|
assertTrue(goals.getById(88002L).isJsonAcceptanceRequired());
|
|
assertEquals(List.of("summary"), requirements.get(88002L, "restart-owner").requirements().getFirst().requiredFields());
|
|
var loaded = artifacts.read(88002L, saved.artifactId(), "restart-owner");
|
|
assertEquals(saved, loaded.artifact());
|
|
assertEquals("{\"summary\":false,\"unicode\":\"报告\"}", loaded.jsonContent());
|
|
assertTrue(bindings.state(88002L, "restart-owner").getFirst().acceptanceEligible());
|
|
requirements.configure(88002L, "r", new GoalJsonAcceptanceService.ConfigureRequest(1L, "report", List.of("summary", "sources")), "restart-owner");
|
|
}
|
|
try (var third = start(url)) {
|
|
var goals = third.getBean(GoalService.class);
|
|
var artifacts = third.getBean(ManagedGoalJsonService.class);
|
|
var bindings = third.getBean(GoalJsonBindingService.class);
|
|
assertEquals("REQUIREMENT_CHANGED", bindings.state(88002L, "restart-owner").getFirst().status());
|
|
assertThrows(MateClawException.class, () -> goals.markCompleted(88002L, null));
|
|
var current = artifacts.publish(88002L, "report", new ManagedGoalJsonService.PublishRequest(1L, "{\"summary\":false,\"sources\":[]}"), "restart-owner");
|
|
assertEquals(2, current.generation());
|
|
assertTrue(bindings.check(88002L, "r", new GoalJsonBindingService.CheckRequest(2L, current.artifactId(), 2L), "restart-owner").acceptanceEligible());
|
|
assertEquals(GoalStatus.COMPLETED, goals.markCompleted(88002L, null).getStatus());
|
|
}
|
|
try (var fourth = start(url)) {
|
|
var goals = fourth.getBean(GoalService.class);
|
|
assertEquals(GoalStatus.COMPLETED, goals.getById(88002L).getStatus());
|
|
assertEquals(1, goals.listEvents(88002L, 20).stream().filter(e -> "completed".equals(e.getEventType())).count());
|
|
assertThrows(MateClawException.class, () -> fourth.getBean(ManagedGoalJsonService.class)
|
|
.publish(88002L, "report", new ManagedGoalJsonService.PublishRequest(2L, "{}"), "restart-owner"));
|
|
}
|
|
}
|
|
|
|
@Test void upgradingAmbiguousLegacyTimestampsExpiresEvidenceWithoutDisablingRequirements() throws Exception {
|
|
String url = "jdbc:h2:file:" + directory.resolve("legacy-json")
|
|
+ ";MODE=MySQL;DATABASE_TO_LOWER=TRUE;CASE_INSENSITIVE_IDENTIFIERS=TRUE";
|
|
Flyway.configure().dataSource(url, "sa", "").locations("classpath:db/migration/h2")
|
|
.placeholderReplacement(false).target("196").load().migrate();
|
|
var jdbc = new JdbcTemplate(new DriverManagerDataSource(url, "sa", ""));
|
|
jdbc.update("INSERT INTO mate_user(id,username,password,enabled,role,create_time,update_time,deleted) VALUES (88101,'legacy-json-owner','unused',TRUE,'user',CURRENT_TIMESTAMP,CURRENT_TIMESTAMP,0)");
|
|
jdbc.update("INSERT INTO mate_conversation(id,conversation_id,username,workspace_id,agent_id,create_time,update_time,deleted) VALUES (88102,'legacy-json','legacy-json-owner',1,1,CURRENT_TIMESTAMP,CURRENT_TIMESTAMP,0)");
|
|
jdbc.update("INSERT INTO mate_agent_goal(id,conversation_id,agent_id,workspace_id,created_by,title,description,json_acceptance_required,create_time,update_time) VALUES (88102,'legacy-json',1,1,'legacy-json-owner','Legacy JSON','Migration fixture',TRUE,CURRENT_TIMESTAMP,CURRENT_TIMESTAMP)");
|
|
jdbc.update("INSERT INTO mate_goal_json_requirement(goal_id,criterion_key,artifact_slot,revision,required_fields,created_by,updated_by,created_at,updated_at) VALUES (88102,'r','report',1,'[\"summary\"]','legacy-json-owner','legacy-json-owner',CURRENT_TIMESTAMP,CURRENT_TIMESTAMP)");
|
|
String body = "{\"summary\":false}";
|
|
String artifact = java.util.UUID.randomUUID().toString();
|
|
String sha = java.util.HexFormat.of().formatHex(java.security.MessageDigest.getInstance("SHA-256")
|
|
.digest(body.getBytes(java.nio.charset.StandardCharsets.UTF_8)));
|
|
var expires = java.sql.Timestamp.from(java.time.Instant.now().plusSeconds(86400));
|
|
jdbc.update("INSERT INTO mate_goal_json_artifact(artifact_id,goal_id,artifact_slot,generation,json_body,sha256,byte_length,producer_kind,producer_id,created_at,expires_at) VALUES (?,88102,'report',1,?,?,?,'user','legacy-json-owner',CURRENT_TIMESTAMP,?)", artifact, body, sha, body.length(), expires);
|
|
jdbc.update("INSERT INTO mate_goal_json_slot(goal_id,artifact_slot,generation,artifact_id) VALUES (88102,'report',1,?)", artifact);
|
|
jdbc.update("INSERT INTO mate_goal_json_binding(goal_id,criterion_key,requirement_revision,evaluation_revision,artifact_id,generation,sha256,recipe_id,recipe_revision,check_status,checked_at,expires_at) VALUES (88102,'r',1,0,?,1,?,'json-required-fields',1,'MATCH',CURRENT_TIMESTAMP,?)", artifact, sha, expires);
|
|
try (var context = start(url)) {
|
|
var goals = context.getBean(GoalService.class);
|
|
var artifacts = context.getBean(ManagedGoalJsonService.class);
|
|
var bindings = context.getBean(GoalJsonBindingService.class);
|
|
assertTrue(goals.getById(88102L).isJsonAcceptanceRequired());
|
|
assertEquals(body, artifacts.read(88102L, artifact, "legacy-json-owner").jsonContent());
|
|
assertEquals("EXPIRED", bindings.state(88102L, "legacy-json-owner").getFirst().status());
|
|
assertThrows(MateClawException.class, () -> goals.markCompleted(88102L, null));
|
|
var current = artifacts.publish(88102L, "report", new ManagedGoalJsonService.PublishRequest(1L, body), "legacy-json-owner");
|
|
assertEquals(2, current.generation());
|
|
assertTrue(bindings.check(88102L, "r", new GoalJsonBindingService.CheckRequest(1L, current.artifactId(), 2L), "legacy-json-owner").acceptanceEligible());
|
|
assertEquals(GoalStatus.COMPLETED, goals.markCompleted(88102L, null).getStatus());
|
|
}
|
|
}
|
|
|
|
@Test void expiryDoesNotChangeWhenASeparateJvmUsesAnotherTimezone() throws Exception {
|
|
for (String phase : List.of("write", "read")) {
|
|
Path log = directory.resolve(phase + ".log");
|
|
Process child = new ProcessBuilder(Path.of(System.getProperty("java.home"), "bin", "java").toString(),
|
|
"-Xmx768m", "-Duser.timezone=" + (phase.equals("write") ? "Asia/Shanghai" : "UTC"),
|
|
"-cp", System.getProperty("surefire.test.class.path", System.getProperty("java.class.path")),
|
|
GoalJsonTimezoneProcessProbe.class.getName(), directory.toString(), phase)
|
|
.redirectErrorStream(true).redirectOutput(log.toFile()).start();
|
|
if (!child.waitFor(60, java.util.concurrent.TimeUnit.SECONDS)) {
|
|
child.destroyForcibly(); fail("Timezone child JVM timed out: " + phase);
|
|
}
|
|
assertEquals(0, child.exitValue(), () -> {
|
|
try { return java.nio.file.Files.readString(log); }
|
|
catch (java.io.IOException error) { return error.toString(); }
|
|
});
|
|
}
|
|
}
|
|
|
|
private ConfigurableApplicationContext start(String url) {
|
|
var application = new SpringApplication(MateClawApplication.class, MemoryFixture.class);
|
|
application.setWebApplicationType(WebApplicationType.NONE);
|
|
return application.run("--spring.datasource.url=" + url,
|
|
"--spring.ai.dashscope.api-key=restart-fixture-no-provider",
|
|
"--mateclaw.goal.enabled=false", "--mateclaw.plugin.enabled=false",
|
|
"--mateclaw.skill.workspace.auto-init=false",
|
|
"--mateclaw.skill.workspace.root=" + directory.resolve("skills"));
|
|
}
|
|
|
|
@TestConfiguration
|
|
static class MemoryFixture {
|
|
@Bean @Primary MemoryManager restartMemory() { return org.mockito.Mockito.mock(MemoryManager.class); }
|
|
}
|
|
}
|