<mavenModuleSetBuild _class='hudson.maven.MavenModuleSetBuild'><action _class='hudson.model.CauseAction'><cause _class='hudson.triggers.SCMTrigger$SCMTriggerCause'><shortDescription>Started by an SCM change</shortDescription></cause></action><action></action><action></action><action _class='hudson.plugins.git.util.BuildData'><buildsByBranchName><origindevelop _class='hudson.plugins.git.util.Build'><buildNumber>50</buildNumber><marked><SHA1>135583d00073ff057412eb207f517ad5cd94e12b</SHA1><branch><SHA1>135583d00073ff057412eb207f517ad5cd94e12b</SHA1><name>origin/develop</name></branch></marked><revision><SHA1>135583d00073ff057412eb207f517ad5cd94e12b</SHA1><branch><SHA1>135583d00073ff057412eb207f517ad5cd94e12b</SHA1><name>origin/develop</name></branch></revision></origindevelop></buildsByBranchName><lastBuiltRevision><SHA1>135583d00073ff057412eb207f517ad5cd94e12b</SHA1><branch><SHA1>135583d00073ff057412eb207f517ad5cd94e12b</SHA1><name>origin/develop</name></branch></lastBuiltRevision><remoteUrl>http://sing-group.org/dt/gitlab/dgss-2526-teamA/microstories.git</remoteUrl><scmName></scmName></action><action _class='hudson.plugins.git.GitTagAction'></action><action></action><action></action><action _class='hudson.maven.reporters.MavenAggregatedArtifactRecord'></action><action _class='hudson.maven.reporters.SurefireAggregatedReport'><failCount>0</failCount><skipCount>0</skipCount><totalCount>2</totalCount><urlName>testReport</urlName></action><action></action><action></action><action></action><building>false</building><displayName>#50</displayName><duration>155862</duration><estimatedDuration>250022</estimatedDuration><fullDisplayName>microstories-2526-teamA #50</fullDisplayName><id>50</id><keepLog>false</keepLog><number>50</number><queueId>52</queueId><result>SUCCESS</result><timestamp>1762274647389</timestamp><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/50/</url><builtOn></builtOn><changeSet _class='hudson.plugins.git.GitChangeSetList'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</affectedPath><commitId>963a0ceb022e8212464cbae394883f25c98ad26d</commitId><timestamp>1762274607000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/josecampor31</absoluteUrl><fullName>josecampor31</fullName></author><authorEmail>josecampor31@gmail.com</authorEmail><comment>tsk8: Implements REST tests for recent stories
This commit introduces REST integration tests for the
`/api/microstories/recents` endpoint, verifying that the service
correctly retrieves and orders the 6 most recent stories. To ensure
consistent results, the timestamp handling in `StoriesDataset` and the
XML datasets was adjusted to align with DBUnit expectations. The dataset
files now use SQL-style timestamps (`yyyy-MM-dd HH:mm:ss`), and
`StoriesDataset` uses
`LocalDateTime` instead of `Instant.parse()` to avoid timezone
discrepancies. These changes guarantee that the test data and database
values are interpreted consistently across environments.
</comment><date>2025-11-04 17:43:27 +0100</date><id>963a0ceb022e8212464cbae394883f25c98ad26d</id><msg>tsk8: Implements REST tests for recent stories</msg><path><editType>edit</editType><file>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</affectedPath><commitId>fd29ae1300e7590c2fdda44e86087c0f37eb206a</commitId><timestamp>1762274607000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/josecampor31</absoluteUrl><fullName>josecampor31</fullName></author><authorEmail>josecampor31@gmail.com</authorEmail><comment>tsk8: Fixes missing dataset location and adds cleanup scripts for REST
tests
This commit fixes a dataset resolution error in the REST integration
tests for the
/api/microstories/recents endpoint. The Arquillian persistence extension
was unable to locate stories.xml, so the dataset file was moved to the
datasets/ directory, matching the framework’s default lookup path.
Additionally, a cleanup.sql script was introduced to clear test tables
between executions, ensuring isolation and preventing residual data
issues.
</comment><date>2025-11-04 17:43:27 +0100</date><id>fd29ae1300e7590c2fdda44e86087c0f37eb206a</id><msg>tsk8: Fixes missing dataset location and adds cleanup scripts for REST</msg><path><editType>edit</editType><file>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>tests/src/main/java/es/uvigo/esei/dgss/teama/microstories/entities/StoriesDataset.java</affectedPath><commitId>ce20d5ece7f1664ef9c21cb512f4066f7eb13867</commitId><timestamp>1762274607000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/josecampor31</absoluteUrl><fullName>josecampor31</fullName></author><authorEmail>josecampor31@gmail.com</authorEmail><comment>tsk32: Fix date format for testing
Date format fixed to pass tests due to time offset
</comment><date>2025-11-04 17:43:27 +0100</date><id>ce20d5ece7f1664ef9c21cb512f4066f7eb13867</id><msg>tsk32: Fix date format for testing</msg><path><editType>edit</editType><file>tests/src/main/java/es/uvigo/esei/dgss/teama/microstories/entities/StoriesDataset.java</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>service/src/test/resources/test-persistence.xml</affectedPath><affectedPath>service/src/test/java/es/uvigo/esei/microstories/services/StoryServiceIntegrationTest.java</affectedPath><affectedPath>service/src/test/resources-wildfly-embedded-h2/cleanup-autoincrement-stories.sql</affectedPath><commitId>135583d00073ff057412eb207f517ad5cd94e12b</commitId><timestamp>1762274608000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/josecampor31</absoluteUrl><fullName>josecampor31</fullName></author><authorEmail>josecampor31@gmail.com</authorEmail><comment>tsk32: Service tests for recent stories
Added configuration and test for recent stories functionality
</comment><date>2025-11-04 17:43:28 +0100</date><id>135583d00073ff057412eb207f517ad5cd94e12b</id><msg>tsk32: Service tests for recent stories</msg><path><editType>add</editType><file>service/src/test/java/es/uvigo/esei/microstories/services/StoryServiceIntegrationTest.java</file></path><path><editType>add</editType><file>service/src/test/resources-wildfly-embedded-h2/cleanup-autoincrement-stories.sql</file></path><path><editType>edit</editType><file>service/src/test/resources/test-persistence.xml</file></path></item><kind>git</kind></changeSet><culprit><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/josecampor31</absoluteUrl><fullName>josecampor31</fullName></culprit><mavenArtifacts></mavenArtifacts><mavenVersionUsed>3.6.3</mavenVersionUsed></mavenModuleSetBuild>