<surefireAggregatedReport _class='hudson.maven.reporters.SurefireAggregatedReport'><failCount>6</failCount><skipCount>0</skipCount><totalCount>7</totalCount><urlName>testReport</urlName><childReport><child _class='hudson.maven.MavenBuild'><action _class='hudson.maven.reporters.SurefireReport'><failCount>5</failCount><skipCount>0</skipCount><totalCount>6</totalCount><urlName>testReport</urlName></action><action></action><action _class='hudson.maven.reporters.MavenArtifactRecord'><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-rest/57/mavenArtifacts/</url></action><action></action><artifact><displayPath>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT-javadoc.jar</displayPath><fileName>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT-javadoc.jar</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-rest/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT-javadoc.jar</relativePath></artifact><artifact><displayPath>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT-sources.jar</displayPath><fileName>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT-sources.jar</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-rest/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT-sources.jar</relativePath></artifact><artifact><displayPath>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT.pom</displayPath><fileName>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT.pom</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-rest/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT.pom</relativePath></artifact><artifact><displayPath>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT.war</displayPath><fileName>dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT.war</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-rest/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-rest-0.1.0-SNAPSHOT.war</relativePath></artifact><building>false</building><displayName>#57</displayName><duration>49696</duration><estimatedDuration>70905</estimatedDuration><fullDisplayName>microstories-2526-teamA » REST #57</fullDisplayName><id>57</id><keepLog>false</keepLog><number>57</number><queueId>-1</queueId><result>UNSTABLE</result><timestamp>1762282093872</timestamp><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-rest/57/</url><builtOn></builtOn><changeSet _class='hudson.maven.FilteredChangeLogSet'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>rest/src/test/resources/datasets/stories.xml</affectedPath><commitId>21ca767de17ccc36cad1cb87d9e2bffd37b2a60e</commitId><timestamp>1762281759000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/43324098+sad8787</absoluteUrl><fullName>43324098+sad8787</fullName></author><authorEmail>43324098+sad8787@users.noreply.github.com</authorEmail><comment>TSK12: Añadir funcionalidad para recuperar relatos por texto (EJB)
Se implementa en el servicio la búsqueda de relatos que contienen un
texto específico. La consulta permite la paginación para optimizar el
rendimiento y limitar los resultados.
</comment><date>2025-11-04 19:42:39 +0100</date><id>21ca767de17ccc36cad1cb87d9e2bffd37b2a60e</id><msg>TSK12: Añadir funcionalidad para recuperar relatos por texto (EJB)</msg><path><editType>add</editType><file>rest/src/test/resources/datasets/stories.xml</file></path></item><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</affectedPath><commitId>8c29da133ee897d65cfcc36be3e2ba26b9ef7e48</commitId><timestamp>1762281759000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/43324098+sad8787</absoluteUrl><fullName>43324098+sad8787</fullName></author><authorEmail>43324098+sad8787@users.noreply.github.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 19:42:39 +0100</date><id>8c29da133ee897d65cfcc36be3e2ba26b9ef7e48</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>5cb81589b6a8855c434c5e8a8b015a2436bb1885</commitId><timestamp>1762281759000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/43324098+sad8787</absoluteUrl><fullName>43324098+sad8787</fullName></author><authorEmail>43324098+sad8787@users.noreply.github.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 19:42:39 +0100</date><id>5cb81589b6a8855c434c5e8a8b015a2436bb1885</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>service/src/test/java/es/uvigo/esei/microstories/services/StoryServiceIntegrationTest.java</affectedPath><affectedPath>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</affectedPath><commitId>eb41f89a19834aed1f8e12c5ad04082ebd16d749</commitId><timestamp>1762281788000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/43324098+sad8787</absoluteUrl><fullName>43324098+sad8787</fullName></author><authorEmail>43324098+sad8787@users.noreply.github.com</authorEmail><comment>tsk:12 correction of tests
</comment><date>2025-11-04 19:43:08 +0100</date><id>eb41f89a19834aed1f8e12c5ad04082ebd16d749</id><msg>tsk:12 correction of tests</msg><path><editType>edit</editType><file>service/src/test/java/es/uvigo/esei/microstories/services/StoryServiceIntegrationTest.java</file></path><path><editType>edit</editType><file>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</file></path></item></changeSet><culprit><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/43324098+sad8787</absoluteUrl><fullName>43324098+sad8787</fullName></culprit><mavenArtifacts><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-rest/57/mavenArtifacts/</url></mavenArtifacts></child><result _class='hudson.tasks.junit.TestResult'><duration>36.939</duration><empty>false</empty><failCount>5</failCount><passCount>1</passCount><skipCount>0</skipCount><suite><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.835</duration><errorDetails>Failed while seeding database.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while seeding database.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.AUTHOR -  (Non-uppercase input column: author) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>57</failedSince><name>beforeGet</name><skipped>false</skipped><status>REGRESSION</status><stdout>&amp;amp#27;[0m19:49:21,236 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:21,858 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
&amp;amp#27;[0m&amp;amp#27;[0m19:49:22,160 INFO  [org.jboss.as] (MSC service thread 1-2) WFLYSRV0049: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) starting
&amp;amp#27;[0m&amp;amp#27;[0m19:49:26,933 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
&amp;amp#27;[0m&amp;amp#27;[0m19:49:26,970 INFO  [org.xnio] (MSC service thread 1-1) XNIO version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:26,993 INFO  [org.xnio.nio] (MSC service thread 1-1) XNIO NIO Implementation Version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,147 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 4.0.21.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,221 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 36) WFLYCLINF0001: Activating Infinispan subsystem.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,268 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 44) WFLYNAM0001: Activating Naming Subsystem
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,343 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 49) WFLYSEC0002: Activating Security Subsystem
&amp;amp#27;[0m&amp;amp#27;[33m19:49:27,333 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 50) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,392 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 42) WFLYJSF0007: Activated the following JSF Implementations: [main]
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,424 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 35) WFLYIO001: Worker 'default' has auto-configured to 4 core threads with 32 task threads based on your 2 available processors
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,434 INFO  [org.jboss.as.security] (MSC service thread 1-2) WFLYSEC0001: Current PicketBox version=4.9.6.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,445 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 30) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,464 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 52) WFLYWS0002: Activating WebServices Extension
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,485 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0003: Undertow 1.4.0.Final starting
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,492 INFO  [org.jboss.as.connector] (MSC service thread 1-4) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final)
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,817 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-2) WFLYJCA0018: Started Driver service with driver-name = h2
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,818 INFO  [org.jboss.as.naming] (MSC service thread 1-2) WFLYNAM0003: Starting Naming Service
&amp;amp#27;[0m&amp;amp#27;[0m19:49:27,834 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-4) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]
&amp;amp#27;[0m&amp;amp#27;[0m19:49:28,121 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 51) WFLYUT0014: Creating file handler for path '/var/lib/jenkins/workspace/microstories-2526-teamA/rest/target/wildfly-10.1.0.Final/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']
&amp;amp#27;[0m&amp;amp#27;[0m19:49:28,237 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0012: Started server default-server.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:28,244 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0018: Host default-host starting
&amp;amp#27;[0m&amp;amp#27;[0m19:49:28,808 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:28080
&amp;amp#27;[0m&amp;amp#27;[0m19:49:29,495 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-2) WFLYJCA0001: Bound data source [java:jboss/datasources/dgss2526/teamA/microstories]
&amp;amp#27;[0m&amp;amp#27;[0m19:49:29,496 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS]
&amp;amp#27;[0m&amp;amp#27;[0m19:49:30,797 INFO  [org.jboss.ws.common.management] (MSC service thread 1-3) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.6) 
&amp;amp#27;[0m&amp;amp#27;[0m19:49:30,973 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-3) WFLYDS0013: Started FileSystemDeploymentService for directory /var/lib/jenkins/workspace/microstories-2526-teamA/rest/target/wildfly-10.1.0.Final/standalone/deployments
&amp;amp#27;[0m&amp;amp#27;[0m19:49:31,145 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-1) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:31,288 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 54) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:31,292 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 54) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:33,025 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 55) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:33,026 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 55) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:33,482 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:29990/management
&amp;amp#27;[0m&amp;amp#27;[0m19:49:33,482 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:29990
&amp;amp#27;[0m&amp;amp#27;[0m19:49:33,483 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started in 11942ms - Started 302 of 506 services (325 services are lazy, passive or on-demand)
&amp;amp#27;[0m&amp;amp#27;[33m19:49:34,701 WARNING [org.jboss.arquillian.core.spi.ObserverMethod] (main) Argument 2 for ArquillianServiceDeployer.doServiceDeploy is null. It won't be invoked.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:36,326 INFO  [org.jboss.remoting] (main) JBoss Remoting version 5.0.2.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:36,390 INFO  [org.xnio] (main) XNIO version 3.5.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:36,406 INFO  [org.xnio.nio] (main) XNIO NIO Implementation Version 3.5.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:36,526 INFO  [org.wildfly.security] (main) ELY00001: WildFly Elytron version 1.1.2.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:38,127 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location /var/lib/jenkins/workspace/microstories-2526-teamA/rest/target/wildfly-10.1.0.Final/standalone/data/content/1c/78734571fd40581bfdbe5f09299f4ff4a3ea7d/content
&amp;amp#27;[0m&amp;amp#27;[0m19:49:38,204 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0027: Starting deployment of "test.war" (runtime-name: "test.war")
&amp;amp#27;[0m&amp;amp#27;[0m19:49:40,519 INFO  [org.jboss.as.jpa] (MSC service thread 1-1) WFLYJPA0002: Read persistence.xml for test
&amp;amp#27;[0m&amp;amp#27;[0m19:49:40,949 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 6) WFLYJPA0010: Starting Persistence Unit (phase 1 of 2) Service 'test.war#test'
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,051 INFO  [org.hibernate.jpa.internal.util.LogHelper] (ServerService Thread Pool -- 6) HHH000204: Processing PersistenceUnitInfo [
	name: test
	...]
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,235 INFO  [org.jboss.weld.deployer] (MSC service thread 1-3) WFLYWELD0003: Processing weld deployment test.war
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,411 INFO  [org.hibernate.Version] (ServerService Thread Pool -- 6) HHH000412: Hibernate Core {5.0.10.Final}
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,413 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 6) HHH000206: hibernate.properties not found
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,416 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 6) HHH000021: Bytecode provider name : javassist
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,441 INFO  [org.hibernate.validator.internal.util.Version] (MSC service thread 1-3) HV000001: Hibernate Validator 5.2.4.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,587 INFO  [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 6) HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
&amp;amp#27;[0m&amp;amp#27;[0m19:49:41,797 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-3) WFLYEJB0473: JNDI bindings for session bean named 'StoryService' in deployment unit 'deployment "test.war"' are as follows:

	java:global/test/StoryService!es.uvigo.esei.microstories.services.StoryService
	java:app/test/StoryService!es.uvigo.esei.microstories.services.StoryService
	java:module/StoryService!es.uvigo.esei.microstories.services.StoryService
	java:global/test/StoryService
	java:app/test/StoryService
	java:module/StoryService

&amp;amp#27;[0m&amp;amp#27;[0m19:49:42,214 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:42,215 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 6) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:49:42,376 INFO  [org.jboss.weld.Version] (MSC service thread 1-2) WELD-000900: 2.3.5 (Final)
&amp;amp#27;[0m&amp;amp#27;[0m19:49:43,118 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 21) WFLYJPA0010: Starting Persistence Unit (phase 2 of 2) Service 'test.war#test'
&amp;amp#27;[0m&amp;amp#27;[0m19:49:44,189 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 6) WFLYCLINF0002: Started client-mappings cache from ejb container
&amp;amp#27;[0m&amp;amp#27;[0m19:49:44,693 INFO  [org.hibernate.dialect.Dialect] (ServerService Thread Pool -- 21) HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
&amp;amp#27;[0m&amp;amp#27;[33m19:49:44,705 WARN  [org.hibernate.dialect.H2Dialect] (ServerService Thread Pool -- 21) HHH000431: Unable to determine H2 database version, certain features may not work
&amp;amp#27;[0m&amp;amp#27;[0m19:49:44,940 INFO  [org.hibernate.envers.boot.internal.EnversServiceImpl] (ServerService Thread Pool -- 21) Envers integration enabled? : true
&amp;amp#27;[0m&amp;amp#27;[0m19:49:47,201 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 21) HHH000227: Running hbm2ddl schema export
&amp;amp#27;[0mHibernate: drop table story if exists
Hibernate: drop table story_themes if exists
Hibernate: create table story (id bigint generated by default as identity, content varchar(1000) not null, genre varchar(255) not null, published_at timestamp, title varchar(50) not null, primary key (id))
Hibernate: create table story_themes (story_id bigint not null, theme varchar(20) not null, primary key (story_id, theme))
Hibernate: alter table story_themes add constraint FK9xe5ttl75r1h6075frr65d2wl foreign key (story_id) references story
&amp;amp#27;[0m19:49:47,230 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 21) HHH000230: Schema export complete
&amp;amp#27;[0m&amp;amp#27;[0m19:49:50,543 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 21) WFLYUT0021: Registered web context: /test
&amp;amp#27;[0m&amp;amp#27;[0m19:49:50,635 INFO  [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0010: Deployed "test.war" (runtime-name : "test.war")
&amp;amp#27;[0m</stdout></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>3.097</duration><errorDetails>
Expected: a collection with size &lt;6&gt;
     but: collection size was &lt;0&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: a collection with size &lt;6&gt;
     but: collection size was &lt;0&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.listRecentStories(StoryResourceRestTest.java:86)
</errorStackTrace><failedSince>57</failedSince><name>listRecentStories</name><skipped>false</skipped><status>REGRESSION</status><stderr>log4j:WARN No appenders could be found for logger (org.jboss.resteasy.plugins.providers.DocumentProvider).
log4j:WARN Please initialize the log4j system properly.
</stderr><stdout>&amp;amp#27;[33m19:49:53,276 WARN  [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-9) RESTEASY002120: ClassNotFoundException: Unable to load builtin provider org.jboss.resteasy.plugins.providers.jackson.ResteasyJacksonProvider from jar:file:/var/lib/jenkins/.m2/repository/org/jboss/resteasy/resteasy-jackson-provider/3.0.24.Final/resteasy-jackson-provider-3.0.24.Final.jar!/META-INF/services/javax.ws.rs.ext.Providers: java.lang.ClassNotFoundException: org.jboss.resteasy.plugins.providers.jackson.ResteasyJacksonProvider from [Module "deployment.test.war" from Service Module Loader]
	at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:412) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:400) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	at org.jboss.resteasy.plugins.providers.RegisterBuiltin.registerProviders(RegisterBuiltin.java:70) [resteasy-jaxrs-3.0.19.Final.jar:3.0.19.Final]
	at org.jboss.resteasy.plugins.providers.RegisterBuiltin.register(RegisterBuiltin.java:31) [resteasy-jaxrs-3.0.19.Final.jar:3.0.19.Final]
	at org.jboss.resteasy.spi.ResteasyDeployment.start(ResteasyDeployment.java:230) [resteasy-jaxrs-3.0.19.Final.jar:3.0.19.Final]
	at org.jboss.resteasy.plugins.server.servlet.ServletContainerDispatcher.init(ServletContainerDispatcher.java:113) [resteasy-jaxrs-3.0.19.Final.jar:3.0.19.Final]
	at org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher.init(HttpServletDispatcher.java:36) [resteasy-jaxrs-3.0.19.Final.jar:3.0.19.Final]
	at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:117) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at org.wildfly.extension.undertow.security.RunAsLifecycleInterceptor.init(RunAsLifecycleInterceptor.java:78)
	at io.undertow.servlet.core.LifecyleInterceptorInvocation.proceed(LifecyleInterceptorInvocation.java:103) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.core.ManagedServlet$DefaultInstanceStrategy.start(ManagedServlet.java:250) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.core.ManagedServlet.getServlet(ManagedServlet.java:171) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:84) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:62) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.java:36) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78)
	at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:131) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.security.ServletAuthenticationCallHandler.handleRequest(ServletAuthenticationCallHandler.java:57) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.security.handlers.AuthenticationConstraintHandler.handleRequest(AuthenticationConstraintHandler.java:53) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:46) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:64) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.security.ServletSecurityConstraintHandler.handleRequest(ServletSecurityConstraintHandler.java:59) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.security.handlers.AuthenticationMechanismsHandler.handleRequest(AuthenticationMechanismsHandler.java:60) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:77) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.security.handlers.NotificationReceiverHandler.handleRequest(NotificationReceiverHandler.java:50) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.security.handlers.AbstractSecurityContextAssociationHandler.handleRequest(AbstractSecurityContextAssociationHandler.java:43) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61)
	at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:43) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletInitialHandler.handleFirstRequest(ServletInitialHandler.java:292) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletInitialHandler.access$100(ServletInitialHandler.java:81) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:138) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletInitialHandler$2.call(ServletInitialHandler.java:135) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.core.ServletRequestContextThreadSetupAction$1.call(ServletRequestContextThreadSetupAction.java:48) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.core.ContextClassLoaderSetupAction$1.call(ContextClassLoaderSetupAction.java:43) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.api.LegacyThreadSetupActionWrapper$1.call(LegacyThreadSetupActionWrapper.java:44) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletInitialHandler.dispatchRequest(ServletInitialHandler.java:272) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletInitialHandler.access$000(ServletInitialHandler.java:81) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.servlet.handlers.ServletInitialHandler$1.handleRequest(ServletInitialHandler.java:104) [undertow-servlet-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.server.Connectors.executeRootHandler(Connectors.java:202) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at io.undertow.server.HttpServerExchange$1.run(HttpServerExchange.java:805) [undertow-core-1.4.0.Final.jar:1.4.0.Final]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [rt.jar:1.8.0_144]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [rt.jar:1.8.0_144]
	at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_144]

&amp;amp#27;[0m&amp;amp#27;[33m19:49:53,479 WARN  [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-9) RESTEASY002142: Multiple resource methods match request "GET /microstories/recents". Selecting one. Matching methods: [public javax.ws.rs.core.Response es.uvigo.esei.microstories.rest.StoryResource.getStoryById(java.lang.Long), public javax.ws.rs.core.Response es.uvigo.esei.microstories.rest.StoryResource.listRecentStories()]
&amp;amp#27;[0m&amp;amp#27;[0m19:49:53,733 INFO  [org.hibernate.hql.internal.QueryTranslatorFactoryInitiator] (default task-9) HHH000397: Using ASTQueryTranslatorFactory
&amp;amp#27;[0mHibernate: select story0_.id as id1_0_, story0_.content as content2_0_, story0_.genre as genre3_0_, story0_.published_at as publishe4_0_, story0_.title as title5_0_ from story story0_ order by story0_.published_at DESC limit ?
</stdout></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.089</duration><errorDetails>
Expected: status &lt;OK&gt;
     but: was &lt;404&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: status &lt;OK&gt;
     but: was &lt;404&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.testGetStoryById_Success(StoryResourceRestTest.java:100)
</errorStackTrace><failedSince>57</failedSince><name>testGetStoryById_Success</name><skipped>false</skipped><status>REGRESSION</status><stdout>Hibernate: select story0_.id as id1_0_0_, story0_.content as content2_0_0_, story0_.genre as genre3_0_0_, story0_.published_at as publishe4_0_0_, story0_.title as title5_0_0_ from story story0_ where story0_.id=?
</stdout></case><case><age>0</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.046</duration><failedSince>0</failedSince><name>testGetStoryById_NotFound</name><skipped>false</skipped><status>PASSED</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.051</duration><errorDetails>
Expected: status &lt;OK&gt;
     but: was &lt;404&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: status &lt;OK&gt;
     but: was &lt;404&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.testSearchStories_ReturnsResults(StoryResourceRestTest.java:129)
</errorStackTrace><failedSince>57</failedSince><name>testSearchStories_ReturnsResults</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.034</duration><errorDetails>
Expected: is &lt;400&gt;
     but: was &lt;404&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: is &lt;400&gt;
     but: was &lt;404&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.testSearchStories_InvalidText_ReturnsBadRequest(StoryResourceRestTest.java:152)
</errorStackTrace><failedSince>57</failedSince><name>testSearchStories_InvalidText_ReturnsBadRequest</name><skipped>false</skipped><status>REGRESSION</status></case><duration>36.939</duration><name>es.uvigo.esei.microstories.rest.ResourceUnitTestSuite</name></suite></result></childReport><childReport><child _class='hudson.maven.MavenBuild'><action _class='hudson.maven.reporters.SurefireReport'><failCount>1</failCount><skipCount>0</skipCount><totalCount>1</totalCount><urlName>testReport</urlName></action><action></action><action _class='hudson.maven.reporters.MavenArtifactRecord'><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-service/57/mavenArtifacts/</url></action><action></action><artifact><displayPath>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-javadoc.jar</displayPath><fileName>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-javadoc.jar</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-service/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-javadoc.jar</relativePath></artifact><artifact><displayPath>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-sources.jar</displayPath><fileName>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-sources.jar</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-service/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-sources.jar</relativePath></artifact><artifact><displayPath>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-tests.jar</displayPath><fileName>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-tests.jar</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-service/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT-tests.jar</relativePath></artifact><artifact><displayPath>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT.jar</displayPath><fileName>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT.jar</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-service/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT.jar</relativePath></artifact><artifact><displayPath>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT.pom</displayPath><fileName>dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT.pom</fileName><relativePath>es.uvigo.esei.dgss.teamA.microstories/dgss2526-teamA-microstories-service/0.1.0-SNAPSHOT/dgss2526-teamA-microstories-service-0.1.0-SNAPSHOT.pom</relativePath></artifact><building>false</building><displayName>#57</displayName><duration>32657</duration><estimatedDuration>63778</estimatedDuration><fullDisplayName>microstories-2526-teamA » Service #57</fullDisplayName><id>57</id><keepLog>false</keepLog><number>57</number><queueId>-1</queueId><result>UNSTABLE</result><timestamp>1762282093872</timestamp><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-service/57/</url><builtOn></builtOn><changeSet _class='hudson.maven.FilteredChangeLogSet'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>service/src/test/java/es/uvigo/esei/microstories/services/StoryServiceIntegrationTest.java</affectedPath><affectedPath>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</affectedPath><commitId>eb41f89a19834aed1f8e12c5ad04082ebd16d749</commitId><timestamp>1762281788000</timestamp><author><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/43324098+sad8787</absoluteUrl><fullName>43324098+sad8787</fullName></author><authorEmail>43324098+sad8787@users.noreply.github.com</authorEmail><comment>tsk:12 correction of tests
</comment><date>2025-11-04 19:43:08 +0100</date><id>eb41f89a19834aed1f8e12c5ad04082ebd16d749</id><msg>tsk:12 correction of tests</msg><path><editType>edit</editType><file>service/src/test/java/es/uvigo/esei/microstories/services/StoryServiceIntegrationTest.java</file></path><path><editType>edit</editType><file>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</file></path></item></changeSet><culprit><absoluteUrl>http://sing.ei.uvigo.es/dt/jenkins/user/43324098+sad8787</absoluteUrl><fullName>43324098+sad8787</fullName></culprit><mavenArtifacts><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-service/57/mavenArtifacts/</url></mavenArtifacts></child><result _class='hudson.tasks.junit.TestResult'><duration>19.828</duration><empty>false</empty><failCount>1</failCount><passCount>0</passCount><skipCount>0</skipCount><suite><case><age>1</age><className>es.uvigo.esei.microstories.services.StoryServiceIntegrationTest</className><duration>19.827</duration><errorDetails>Cannot deploy test.war: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" =&gt; {"Operation step-1" =&gt; {"WFLYCTL0080: Failed services" =&gt; {"jboss.deployment.unit.\"test.war\".POST_MODULE" =&gt; "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"test.war\".POST_MODULE: WFLYSRV0153: Failed to process phase POST_MODULE of deployment \"test.war\"
    Caused by: java.lang.RuntimeException: WFLYSRV0177: Error getting reflective information for class es.uvigo.esei.microstories.services.StoryService with ClassLoader ModuleClassLoader for Module \"deployment.test.war\" from Service Module Loader
    Caused by: java.lang.NoClassDefFoundError: es/uvigo/esei/microstories/services/exceptions/EntityNotFoundException
    Caused by: java.lang.ClassNotFoundException: es.uvigo.esei.microstories.services.exceptions.EntityNotFoundException from [Module \"deployment.test.war\" from Service Module Loader]"},"WFLYCTL0412: Required services that are not installed:" =&gt; ["jboss.deployment.unit.\"test.war\".POST_MODULE"],"WFLYCTL0180: Services with missing/unavailable dependencies" =&gt; undefined}}}</errorDetails><errorStackTrace>org.jboss.arquillian.container.spi.client.container.DeploymentException: 
Cannot deploy test.war: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" =&gt; {"Operation step-1" =&gt; {"WFLYCTL0080: Failed services" =&gt; {"jboss.deployment.unit.\"test.war\".POST_MODULE" =&gt; "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"test.war\".POST_MODULE: WFLYSRV0153: Failed to process phase POST_MODULE of deployment \"test.war\"
    Caused by: java.lang.RuntimeException: WFLYSRV0177: Error getting reflective information for class es.uvigo.esei.microstories.services.StoryService with ClassLoader ModuleClassLoader for Module \"deployment.test.war\" from Service Module Loader
    Caused by: java.lang.NoClassDefFoundError: es/uvigo/esei/microstories/services/exceptions/EntityNotFoundException
    Caused by: java.lang.ClassNotFoundException: es.uvigo.esei.microstories.services.exceptions.EntityNotFoundException from [Module \"deployment.test.war\" from Service Module Loader]"},"WFLYCTL0412: Required services that are not installed:" =&gt; ["jboss.deployment.unit.\"test.war\".POST_MODULE"],"WFLYCTL0180: Services with missing/unavailable dependencies" =&gt; undefined}}}
</errorStackTrace><failedSince>57</failedSince><name>es.uvigo.esei.microstories.services.StoryServiceIntegrationTest</name><skipped>false</skipped><status>FAILED</status><stdout>&amp;amp#27;[0m19:48:47,221 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:48:47,824 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
&amp;amp#27;[0m&amp;amp#27;[0m19:48:48,343 INFO  [org.jboss.as] (MSC service thread 1-1) WFLYSRV0049: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) starting
&amp;amp#27;[0m&amp;amp#27;[0m19:48:51,787 INFO  [org.jboss.as.server] (Controller Boot Thread) WFLYSRV0039: Creating http management service using socket-binding (management-http)
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,381 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,416 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,652 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 4.0.21.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,761 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 44) WFLYNAM0001: Activating Naming Subsystem
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,798 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 49) WFLYSEC0002: Activating Security Subsystem
&amp;amp#27;[0m&amp;amp#27;[33m19:48:52,832 WARN  [org.jboss.as.txn] (ServerService Thread Pool -- 50) WFLYTX0013: Node identifier property is set to the default value. Please make sure it is unique.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,818 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 36) WFLYCLINF0001: Activating Infinispan subsystem.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,869 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 52) WFLYWS0002: Activating WebServices Extension
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,939 INFO  [org.jboss.as.security] (MSC service thread 1-1) WFLYSEC0001: Current PicketBox version=4.9.6.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:48:52,940 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 42) WFLYJSF0007: Activated the following JSF Implementations: [main]
&amp;amp#27;[0m&amp;amp#27;[0m19:48:53,031 INFO  [org.jboss.as.naming] (MSC service thread 1-2) WFLYNAM0003: Starting Naming Service
&amp;amp#27;[0m&amp;amp#27;[0m19:48:53,165 INFO  [org.wildfly.extension.io] (ServerService Thread Pool -- 35) WFLYIO001: Worker 'default' has auto-configured to 4 core threads with 32 task threads based on your 2 available processors
&amp;amp#27;[0m&amp;amp#27;[0m19:48:53,231 INFO  [org.jboss.as.connector] (MSC service thread 1-2) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final)
&amp;amp#27;[0m&amp;amp#27;[0m19:48:53,286 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0003: Undertow 1.4.0.Final starting
&amp;amp#27;[0m&amp;amp#27;[0m19:48:53,386 INFO  [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 30) WFLYJCA0004: Deploying JDBC-compliant driver class org.h2.Driver (version 1.3)
&amp;amp#27;[0m&amp;amp#27;[0m19:48:53,416 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-3) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]
&amp;amp#27;[0m&amp;amp#27;[0m19:48:53,449 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-1) WFLYJCA0018: Started Driver service with driver-name = h2
&amp;amp#27;[0m&amp;amp#27;[0m19:48:54,126 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 51) WFLYUT0014: Creating file handler for path '/var/lib/jenkins/workspace/microstories-2526-teamA/service/target/wildfly-10.1.0.Final/welcome-content' with options [directory-listing: 'false', follow-symlink: 'false', case-sensitive: 'true', safe-symlink-paths: '[]']
&amp;amp#27;[0m&amp;amp#27;[0m19:48:54,188 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0012: Started server default-server.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:54,193 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-1) WFLYUT0018: Host default-host starting
&amp;amp#27;[0m&amp;amp#27;[0m19:48:54,538 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:28080
&amp;amp#27;[0m&amp;amp#27;[0m19:48:55,064 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) WFLYJCA0001: Bound data source [java:jboss/datasources/ExampleDS]
&amp;amp#27;[0m&amp;amp#27;[0m19:48:55,124 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-1) WFLYJCA0001: Bound data source [java:jboss/datasources/dgss2526/teamA/microstories]
&amp;amp#27;[0m&amp;amp#27;[0m19:48:55,954 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-4) WFLYDS0013: Started FileSystemDeploymentService for directory /var/lib/jenkins/workspace/microstories-2526-teamA/service/target/wildfly-10.1.0.Final/standalone/deployments
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,322 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-1) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,504 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 56) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,509 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 56) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,562 INFO  [org.jboss.ws.common.management] (MSC service thread 1-3) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.6) 
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,565 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 55) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,567 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 55) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,835 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0060: Http management interface listening on http://127.0.0.1:29990/management
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,836 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0051: Admin console listening on http://127.0.0.1:29990
&amp;amp#27;[0m&amp;amp#27;[0m19:48:56,836 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started in 9345ms - Started 302 of 506 services (325 services are lazy, passive or on-demand)
&amp;amp#27;[0m&amp;amp#27;[33m19:48:57,851 WARNING [org.jboss.arquillian.core.spi.ObserverMethod] (main) Argument 2 for ArquillianServiceDeployer.doServiceDeploy is null. It won't be invoked.
&amp;amp#27;[0m&amp;amp#27;[0m19:48:59,992 INFO  [org.jboss.remoting] (main) JBoss Remoting version 5.0.2.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:00,182 INFO  [org.xnio] (main) XNIO version 3.5.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:00,232 INFO  [org.xnio.nio] (main) XNIO NIO Implementation Version 3.5.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:00,592 INFO  [org.wildfly.security] (main) ELY00001: WildFly Elytron version 1.1.2.Final
&amp;amp#27;[0m&amp;amp#27;[0m19:49:02,715 INFO  [org.jboss.as.repository] (management-handler-thread - 2) WFLYDR0001: Content added at location /var/lib/jenkins/workspace/microstories-2526-teamA/service/target/wildfly-10.1.0.Final/standalone/data/content/58/ed7f8249a992b17b16d2a492c1a6e1c825a0f1/content
&amp;amp#27;[0m&amp;amp#27;[0m19:49:02,749 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-1) WFLYSRV0027: Starting deployment of "test.war" (runtime-name: "test.war")
&amp;amp#27;[0m&amp;amp#27;[0m19:49:04,193 INFO  [org.jboss.as.jpa] (MSC service thread 1-4) WFLYJPA0002: Read persistence.xml for test
&amp;amp#27;[0m&amp;amp#27;[0m19:49:04,386 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 13) WFLYJPA0010: Starting Persistence Unit (phase 1 of 2) Service 'test.war#test'
&amp;amp#27;[0m&amp;amp#27;[31m19:49:04,453 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.deployment.unit."test.war".POST_MODULE: org.jboss.msc.service.StartException in service jboss.deployment.unit."test.war".POST_MODULE: WFLYSRV0153: Failed to process phase POST_MODULE of deployment "test.war"
	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:154) [wildfly-server-3.0.3.Final.jar:3.0.3.Final]
	at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:2032) [jboss-msc-1.2.7.SP1.jar:1.2.7.SP1]
	at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1955) [jboss-msc-1.2.7.SP1.jar:1.2.7.SP1]
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) [rt.jar:1.8.0_144]
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) [rt.jar:1.8.0_144]
	at java.lang.Thread.run(Thread.java:748) [rt.jar:1.8.0_144]
Caused by: java.lang.RuntimeException: WFLYSRV0177: Error getting reflective information for class es.uvigo.esei.microstories.services.StoryService with ClassLoader ModuleClassLoader for Module "deployment.test.war" from Service Module Loader
	at org.jboss.as.server.deployment.reflect.DeploymentReflectionIndex.getClassIndex(DeploymentReflectionIndex.java:70) [wildfly-server-3.0.3.Final.jar:3.0.3.Final]
	at org.jboss.as.ee.metadata.MethodAnnotationAggregator.runtimeAnnotationInformation(MethodAnnotationAggregator.java:57)
	at org.jboss.as.ee.component.deployers.InterceptorAnnotationProcessor.handleAnnotations(InterceptorAnnotationProcessor.java:106)
	at org.jboss.as.ee.component.deployers.InterceptorAnnotationProcessor.processComponentConfig(InterceptorAnnotationProcessor.java:91)
	at org.jboss.as.ee.component.deployers.InterceptorAnnotationProcessor.deploy(InterceptorAnnotationProcessor.java:76)
	at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:147) [wildfly-server-3.0.3.Final.jar:3.0.3.Final]
	... 5 more
Caused by: java.lang.NoClassDefFoundError: es/uvigo/esei/microstories/services/exceptions/EntityNotFoundException
	at java.lang.Class.getDeclaredFields0(Native Method) [rt.jar:1.8.0_144]
	at java.lang.Class.privateGetDeclaredFields(Class.java:2583) [rt.jar:1.8.0_144]
	at java.lang.Class.getDeclaredFields(Class.java:1916) [rt.jar:1.8.0_144]
	at org.jboss.as.server.deployment.reflect.ClassReflectionIndex.&lt;init&gt;(ClassReflectionIndex.java:72) [wildfly-server-3.0.3.Final.jar:3.0.3.Final]
	at org.jboss.as.server.deployment.reflect.DeploymentReflectionIndex.getClassIndex(DeploymentReflectionIndex.java:66) [wildfly-server-3.0.3.Final.jar:3.0.3.Final]
	... 10 more
Caused by: java.lang.ClassNotFoundException: es.uvigo.esei.microstories.services.exceptions.EntityNotFoundException from [Module "deployment.test.war" from Service Module Loader]
	at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:412) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:400) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:116) [jboss-modules-1.6.1.Final.jar:1.6.1.Final]
	... 15 more

&amp;amp#27;[0m&amp;amp#27;[0m19:49:04,579 INFO  [org.hibernate.jpa.internal.util.LogHelper] (ServerService Thread Pool -- 13) HHH000204: Processing PersistenceUnitInfo [
	name: test
	...]
&amp;amp#27;[0m&amp;amp#27;[0m19:49:04,778 INFO  [org.hibernate.Version] (ServerService Thread Pool -- 13) HHH000412: Hibernate Core {5.0.10.Final}
&amp;amp#27;[0m&amp;amp#27;[0m19:49:04,781 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 13) HHH000206: hibernate.properties not found
&amp;amp#27;[0m&amp;amp#27;[0m19:49:04,784 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 13) HHH000021: Bytecode provider name : javassist
&amp;amp#27;[0m&amp;amp#27;[0m19:49:04,863 INFO  [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 13) HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
&amp;amp#27;[0m&amp;amp#27;[31m19:49:05,021 ERROR [org.jboss.as.controller.management-operation] (management-handler-thread - 2) WFLYCTL0013: Operation ("add") failed - address: ([("deployment" =&gt; "test.war")]) - failure description: {
    "WFLYCTL0080: Failed services" =&gt; {"jboss.deployment.unit.\"test.war\".POST_MODULE" =&gt; "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"test.war\".POST_MODULE: WFLYSRV0153: Failed to process phase POST_MODULE of deployment \"test.war\"
    Caused by: java.lang.RuntimeException: WFLYSRV0177: Error getting reflective information for class es.uvigo.esei.microstories.services.StoryService with ClassLoader ModuleClassLoader for Module \"deployment.test.war\" from Service Module Loader
    Caused by: java.lang.NoClassDefFoundError: es/uvigo/esei/microstories/services/exceptions/EntityNotFoundException
    Caused by: java.lang.ClassNotFoundException: es.uvigo.esei.microstories.services.exceptions.EntityNotFoundException from [Module \"deployment.test.war\" from Service Module Loader]"},
    "WFLYCTL0412: Required services that are not installed:" =&gt; ["jboss.deployment.unit.\"test.war\".POST_MODULE"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" =&gt; undefined
}
&amp;amp#27;[0m&amp;amp#27;[31m19:49:05,026 ERROR [org.jboss.as.server] (management-handler-thread - 2) WFLYSRV0021: Deploy of deployment "test.war" was rolled back with the following failure message: 
{
    "WFLYCTL0080: Failed services" =&gt; {"jboss.deployment.unit.\"test.war\".POST_MODULE" =&gt; "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"test.war\".POST_MODULE: WFLYSRV0153: Failed to process phase POST_MODULE of deployment \"test.war\"
    Caused by: java.lang.RuntimeException: WFLYSRV0177: Error getting reflective information for class es.uvigo.esei.microstories.services.StoryService with ClassLoader ModuleClassLoader for Module \"deployment.test.war\" from Service Module Loader
    Caused by: java.lang.NoClassDefFoundError: es/uvigo/esei/microstories/services/exceptions/EntityNotFoundException
    Caused by: java.lang.ClassNotFoundException: es.uvigo.esei.microstories.services.exceptions.EntityNotFoundException from [Module \"deployment.test.war\" from Service Module Loader]"},
    "WFLYCTL0412: Required services that are not installed:" =&gt; ["jboss.deployment.unit.\"test.war\".POST_MODULE"],
    "WFLYCTL0180: Services with missing/unavailable dependencies" =&gt; undefined
}
&amp;amp#27;[0m&amp;amp#27;[0m19:49:05,034 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 13) WFLYJPA0011: Stopping Persistence Unit (phase 1 of 2) Service 'test.war#test'
&amp;amp#27;[0m&amp;amp#27;[0m19:49:05,056 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-4) WFLYSRV0028: Stopped deployment test.war (runtime-name: test.war) in 31ms
&amp;amp#27;[0m&amp;amp#27;[0m19:49:05,057 INFO  [org.jboss.as.controller] (management-handler-thread - 2) WFLYCTL0183: Service status report
WFLYCTL0186:   Services which failed to start:      service jboss.deployment.unit."test.war".POST_MODULE

&amp;amp#27;[0m&amp;amp#27;[33m19:49:05,088 WARN  [org.jboss.as.arquillian.container.ArchiveDeployer] (main) Failed to undeploy test.war: {"WFLYCTL0062: Composite operation failed and was rolled back. Steps that failed:" =&gt; {"Operation step-1" =&gt; "WFLYCTL0216: Management resource '[(\"deployment\" =&gt; \"test.war\")]' not found"}}
&amp;amp#27;[0m</stdout></case><duration>19.828</duration><name>es.uvigo.esei.microstories.services.ServiceIntegrationTestSuite</name></suite></result></childReport></surefireAggregatedReport>