<surefireAggregatedReport _class='hudson.maven.reporters.SurefireAggregatedReport'><failCount>27</failCount><skipCount>0</skipCount><totalCount>32</totalCount><urlName>testReport</urlName><childReport><child _class='hudson.maven.MavenBuild'><action _class='hudson.maven.reporters.SurefireReport'><failCount>26</failCount><skipCount>0</skipCount><totalCount>31</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/72/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>#72</displayName><duration>46024</duration><estimatedDuration>70905</estimatedDuration><fullDisplayName>microstories-2526-teamA » REST #72</fullDisplayName><id>72</id><keepLog>false</keepLog><number>72</number><queueId>-1</queueId><result>UNSTABLE</result><timestamp>1762607532295</timestamp><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-rest/72/</url><builtOn></builtOn><changeSet _class='hudson.maven.FilteredChangeLogSet'><item _class='hudson.plugins.git.GitChangeSet'><affectedPath>rest/src/test/resources/datasets/stories.xml</affectedPath><commitId>a372d5194341cd7f1915c1ed543f3a1366600d95</commitId><timestamp>1762533542000</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-07 17:39:02 +0100</date><id>a372d5194341cd7f1915c1ed543f3a1366600d95</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>3cfe6783446cf4ad88042f1e6c1981504176071b</commitId><timestamp>1762533542000</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-07 17:39:02 +0100</date><id>3cfe6783446cf4ad88042f1e6c1981504176071b</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>3434e159ddb3fa052b028619d0764dde13260602</commitId><timestamp>1762533542000</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-07 17:39:02 +0100</date><id>3434e159ddb3fa052b028619d0764dde13260602</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>rest/src/test/java/es/uvigo/esei/microstories/rest/StoryResourceRestTest.java</affectedPath><commitId>6a3233c33999aa2e98f7ac7f36052a009891095f</commitId><timestamp>1762533549000</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-07 17:39:09 +0100</date><id>6a3233c33999aa2e98f7ac7f36052a009891095f</id><msg>tsk:12 correction of tests</msg><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/72/mavenArtifacts/</url></mavenArtifacts></child><result _class='hudson.tasks.junit.TestResult'><duration>31.355</duration><empty>false</empty><failCount>26</failCount><passCount>5</passCount><skipCount>0</skipCount><suite><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.83</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>72</failedSince><name>beforeListRecentStories</name><skipped>false</skipped><status>REGRESSION</status><stdout>&amp;amp#27;[0m14:13:14,594 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:15,118 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
&amp;amp#27;[0m&amp;amp#27;[0m14:13:15,464 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;[0m14:13:18,644 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;[0m14:13:18,693 INFO  [org.xnio] (MSC service thread 1-3) XNIO version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:18,728 INFO  [org.xnio.nio] (MSC service thread 1-3) XNIO NIO Implementation Version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:18,877 INFO  [org.jboss.remoting] (MSC service thread 1-3) JBoss Remoting version 4.0.21.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:18,986 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 36) WFLYCLINF0001: Activating Infinispan subsystem.
&amp;amp#27;[0m&amp;amp#27;[0m14:13:18,991 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;[0m14:13:19,028 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 44) WFLYNAM0001: Activating Naming Subsystem
&amp;amp#27;[0m&amp;amp#27;[33m14:13:19,066 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;[0m14:13:19,112 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 52) WFLYWS0002: Activating WebServices Extension
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,117 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 49) WFLYSEC0002: Activating Security Subsystem
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,203 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0003: Undertow 1.4.0.Final starting
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,248 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 42) WFLYJSF0007: Activated the following JSF Implementations: [main]
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,271 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;[0m14:13:19,299 INFO  [org.jboss.as.naming] (MSC service thread 1-4) WFLYNAM0003: Starting Naming Service
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,320 INFO  [org.jboss.as.security] (MSC service thread 1-3) WFLYSEC0001: Current PicketBox version=4.9.6.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,342 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;[0m14:13:19,410 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;[0m14:13:19,510 INFO  [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-4) WFLYJCA0018: Started Driver service with driver-name = h2
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,793 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;[0m14:13:19,841 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0012: Started server default-server.
&amp;amp#27;[0m&amp;amp#27;[0m14:13:19,849 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-2) WFLYUT0018: Host default-host starting
&amp;amp#27;[0m&amp;amp#27;[0m14:13:20,193 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:28080
&amp;amp#27;[0m&amp;amp#27;[0m14:13:20,655 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;[0m14:13:20,657 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-3) WFLYJCA0001: Bound data source [java:jboss/datasources/dgss2526/teamA/microstories]
&amp;amp#27;[0m&amp;amp#27;[0m14:13:21,506 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-4) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:21,589 INFO  [org.jboss.ws.common.management] (MSC service thread 1-2) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.6) 
&amp;amp#27;[0m&amp;amp#27;[0m14:13:21,619 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;[0m14:13:21,621 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;[0m14:13:21,621 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 57) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m14:13:21,625 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 57) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m14:13:21,629 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-1) 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;[0m14:13:21,920 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;[0m14:13:21,921 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;[0m14:13:21,921 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started in 7130ms - Started 302 of 506 services (325 services are lazy, passive or on-demand)
&amp;amp#27;[0m&amp;amp#27;[33m14:13:22,744 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;[0m14:13:24,925 INFO  [org.jboss.remoting] (main) JBoss Remoting version 5.0.2.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:24,996 INFO  [org.xnio] (main) XNIO version 3.5.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:25,013 INFO  [org.xnio.nio] (main) XNIO NIO Implementation Version 3.5.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:25,159 INFO  [org.wildfly.security] (main) ELY00001: WildFly Elytron version 1.1.2.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:27,172 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/c5/db0349d78d6ad942a5b4ef1b345f1aa7170bf5/content
&amp;amp#27;[0m&amp;amp#27;[0m14:13:27,205 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-2) WFLYSRV0027: Starting deployment of "test.war" (runtime-name: "test.war")
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,188 INFO  [org.jboss.as.jpa] (MSC service thread 1-4) WFLYJPA0002: Read persistence.xml for test
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,452 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 3) WFLYJPA0010: Starting Persistence Unit (phase 1 of 2) Service 'test.war#test'
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,494 INFO  [org.hibernate.jpa.internal.util.LogHelper] (ServerService Thread Pool -- 3) HHH000204: Processing PersistenceUnitInfo [
	name: test
	...]
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,619 INFO  [org.jboss.weld.deployer] (MSC service thread 1-4) WFLYWELD0003: Processing weld deployment test.war
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,686 INFO  [org.hibernate.Version] (ServerService Thread Pool -- 3) HHH000412: Hibernate Core {5.0.10.Final}
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,695 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 3) HHH000206: hibernate.properties not found
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,701 INFO  [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 3) HHH000021: Bytecode provider name : javassist
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,860 INFO  [org.hibernate.validator.internal.util.Version] (MSC service thread 1-4) HV000001: Hibernate Validator 5.2.4.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:13:29,900 INFO  [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 3) HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
&amp;amp#27;[0m&amp;amp#27;[0m14:13:30,158 INFO  [org.jboss.as.ejb3.deployment] (MSC service thread 1-4) 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;[0m14:13:30,482 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m14:13:30,483 INFO  [org.infinispan.configuration.cache.EvictionConfigurationBuilder] (ServerService Thread Pool -- 3) ISPN000152: Passivation configured without an eviction policy being selected. Only manually evicted entities will be passivated.
&amp;amp#27;[0m&amp;amp#27;[0m14:13:30,691 INFO  [org.jboss.weld.Version] (MSC service thread 1-3) WELD-000900: 2.3.5 (Final)
&amp;amp#27;[0m&amp;amp#27;[0m14:13:31,430 INFO  [org.jboss.as.jpa] (ServerService Thread Pool -- 19) WFLYJPA0010: Starting Persistence Unit (phase 2 of 2) Service 'test.war#test'
&amp;amp#27;[0m&amp;amp#27;[0m14:13:31,574 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 3) WFLYCLINF0002: Started client-mappings cache from ejb container
&amp;amp#27;[0m&amp;amp#27;[0m14:13:32,047 INFO  [org.hibernate.dialect.Dialect] (ServerService Thread Pool -- 19) HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
&amp;amp#27;[0m&amp;amp#27;[33m14:13:32,058 WARN  [org.hibernate.dialect.H2Dialect] (ServerService Thread Pool -- 19) HHH000431: Unable to determine H2 database version, certain features may not work
&amp;amp#27;[0m&amp;amp#27;[0m14:13:32,406 INFO  [org.hibernate.envers.boot.internal.EnversServiceImpl] (ServerService Thread Pool -- 19) Envers integration enabled? : true
&amp;amp#27;[0m&amp;amp#27;[0m14:13:33,288 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 19) HHH000227: Running hbm2ddl schema export
&amp;amp#27;[0mHibernate: drop table story if exists
Hibernate: drop table story_themes if exists
Hibernate: drop table story_views 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: create table story_views (story_id bigint not null, viewed_at timestamp not null, primary key (story_id, viewed_at))
Hibernate: alter table story_themes add constraint FK9xe5ttl75r1h6075frr65d2wl foreign key (story_id) references story
Hibernate: alter table story_views add constraint FKoarxahf8fai2nq69pypjfr9o5 foreign key (story_id) references story
&amp;amp#27;[0m14:13:33,335 INFO  [org.hibernate.tool.hbm2ddl.SchemaExport] (ServerService Thread Pool -- 19) HHH000230: Schema export complete
&amp;amp#27;[0m&amp;amp#27;[0m14:13:34,986 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 19) WFLYUT0021: Registered web context: /test
&amp;amp#27;[0m&amp;amp#27;[0m14:13:35,091 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>2.825</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:89)
</errorStackTrace><failedSince>72</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;[33m14:13:37,619 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;[33m14:13:37,794 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;[0m14:13:38,028 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.33</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterListRecentStories</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.101</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>72</failedSince><name>beforeGetStoryById</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.103</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:114)
</errorStackTrace><failedSince>72</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>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.129</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterGetStoryById</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.105</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>72</failedSince><name>beforeGetNonExistentStory</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>0</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.05</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.066</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterGetNonExistentStory</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.062</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>72</failedSince><name>beforeSearchStoriesContainsText</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.111</duration><errorDetails>
Expected: is not an empty collection
     but: was &lt;[]&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: is not an empty collection
     but: was &lt;[]&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.testSearchStories_ReturnsResults(StoryResourceRestTest.java:168)
</errorStackTrace><failedSince>72</failedSince><name>testSearchStories_ReturnsResults</name><skipped>false</skipped><status>REGRESSION</status><stdout>Hibernate: 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_ where lower(story0_.title) like lower(?) or lower(story0_.content) like lower(?) order by story0_.published_at DESC limit ?
</stdout></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.111</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterSearchStoriesContainsText</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.109</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>72</failedSince><name>beforeSearchStoriesInvalidText</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>0</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.032</duration><failedSince>0</failedSince><name>testSearchStories_InvalidText_ReturnsBadRequest</name><skipped>false</skipped><status>PASSED</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.079</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>72</failedSince><name>beforeFilterStoriesByGenre</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.083</duration><errorDetails>
Expected: a collection with size &lt;4&gt;
     but: collection size was &lt;0&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: a collection with size &lt;4&gt;
     but: collection size was &lt;0&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.listFilteredStoriesByGenre(StoryResourceRestTest.java:228)
</errorStackTrace><failedSince>72</failedSince><name>listFilteredStoriesByGenre</name><skipped>false</skipped><status>REGRESSION</status><stdout>&amp;amp#27;[33m14:13:40,653 WARN  [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-5) RESTEASY002142: Multiple resource methods match request "GET /microstories/filter". 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.getStoriesByFilter(es.uvigo.esei.microstories.domain.types.GenreType,es.uvigo.esei.microstories.domain.types.ThemeType,java.lang.String)]
&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_ where 1=1 and story0_.genre=?
</stdout></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.095</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterFilterStoriesByGenre</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.075</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>72</failedSince><name>beforeFilterStoriesByTheme</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.088</duration><errorDetails>
Expected: a collection with size &lt;3&gt;
     but: collection size was &lt;0&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: a collection with size &lt;3&gt;
     but: collection size was &lt;0&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.listFilteredStoriesByTheme(StoryResourceRestTest.java:262)
</errorStackTrace><failedSince>72</failedSince><name>listFilteredStoriesByTheme</name><skipped>false</skipped><status>REGRESSION</status><stdout>&amp;amp#27;[33m14:13:40,916 WARN  [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-9) RESTEASY002142: Multiple resource methods match request "GET /microstories/filter". 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.getStoriesByFilter(es.uvigo.esei.microstories.domain.types.GenreType,es.uvigo.esei.microstories.domain.types.ThemeType,java.lang.String)]
&amp;amp#27;[0m&amp;amp#27;[33m14:13:40,935 WARN  [org.hibernate.orm.deprecation] (default task-9) HHH90000016: Found use of deprecated 'collection property' syntax in HQL/JPQL query [null.elements]; use collection function syntax instead [elements(null)].
&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_ where 1=1 and (? in (select themes1_.theme from story_themes themes1_ where story0_.id=themes1_.story_id))
</stdout></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.085</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterFilterStoriesByTheme</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.048</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>72</failedSince><name>beforeFilterStoriesByPublicationDate</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.056</duration><errorDetails>
Expected: a collection with size &lt;9&gt;
     but: collection size was &lt;0&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: a collection with size &lt;9&gt;
     but: collection size was &lt;0&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.listFilteredStoriesByPublication(StoryResourceRestTest.java:296)
</errorStackTrace><failedSince>72</failedSince><name>listFilteredStoriesByPublication</name><skipped>false</skipped><status>REGRESSION</status><stdout>&amp;amp#27;[33m14:13:41,131 WARN  [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-10) RESTEASY002142: Multiple resource methods match request "GET /microstories/filter". 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.getStoriesByFilter(es.uvigo.esei.microstories.domain.types.GenreType,es.uvigo.esei.microstories.domain.types.ThemeType,java.lang.String)]
&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_ where 1=1 and story0_.published_at&gt;=? and story0_.published_at&lt;=?
</stdout></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.1</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterFilterStoriesByPublicationDate</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.12</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>72</failedSince><name>beforeFilterStoriesByGenreThemeAndPublication</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.062</duration><errorDetails>
Expected: a collection with size &lt;2&gt;
     but: collection size was &lt;0&gt;</errorDetails><errorStackTrace>java.lang.AssertionError: 

Expected: a collection with size &lt;2&gt;
     but: collection size was &lt;0&gt;
	at es.uvigo.esei.microstories.rest.StoryResourceRestTest.listFilteredStoriesByGenreThemeAndPublication(StoryResourceRestTest.java:330)
</errorStackTrace><failedSince>72</failedSince><name>listFilteredStoriesByGenreThemeAndPublication</name><skipped>false</skipped><status>REGRESSION</status><stdout>&amp;amp#27;[33m14:13:41,407 WARN  [org.jboss.resteasy.resteasy_jaxrs.i18n] (default task-19) RESTEASY002142: Multiple resource methods match request "GET /microstories/filter". 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.getStoriesByFilter(es.uvigo.esei.microstories.domain.types.GenreType,es.uvigo.esei.microstories.domain.types.ThemeType,java.lang.String)]
&amp;amp#27;[0m&amp;amp#27;[33m14:13:41,429 WARN  [org.hibernate.orm.deprecation] (default task-19) HHH90000016: Found use of deprecated 'collection property' syntax in HQL/JPQL query [null.elements]; use collection function syntax instead [elements(null)].
&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_ where 1=1 and story0_.genre=? and (? in (select themes1_.theme from story_themes themes1_ where story0_.id=themes1_.story_id)) and story0_.published_at&gt;=? and story0_.published_at&lt;=?
</stdout></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.081</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterFilterStoriesByGenreThemeAndPublication</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.076</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>72</failedSince><name>beforeGetTop2ReadStoriesLastMonthByGenre</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>0</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.289</duration><failedSince>0</failedSince><name>getTop2ReadStoriesLastMonthByGenre</name><skipped>false</skipped><status>PASSED</status></case><case><age>1</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.066</duration><errorDetails>Failed while comparing database state with provided data sets.</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.dbunit.exception.DBUnitDataSetHandlingException: Failed while comparing database state with provided data sets.
Caused by: org.dbunit.dataset.NoSuchColumnException: STORY.PUBLISHEDAT -  (Non-uppercase input column: publishedat) in ColumnNameToIndexes cache map. Note that the map's column names are NOT case sensitive.
</errorStackTrace><failedSince>72</failedSince><name>afterGetTop2ReadStoriesLastMonthByGenre</name><skipped>false</skipped><status>REGRESSION</status></case><case><age>0</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.048</duration><failedSince>0</failedSince><name>beforeGetTop2ReadStoriesLastMonthByGenre_empty</name><skipped>false</skipped><status>PASSED</status></case><case><age>0</age><className>es.uvigo.esei.microstories.rest.StoryResourceRestTest</className><duration>0.046</duration><failedSince>0</failedSince><name>getTop2ReadStoriesLastMonthByGenre_empty</name><skipped>false</skipped><status>PASSED</status></case><duration>31.355</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/72/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>#72</displayName><duration>27827</duration><estimatedDuration>63778</estimatedDuration><fullDisplayName>microstories-2526-teamA » Service #72</fullDisplayName><id>72</id><keepLog>false</keepLog><number>72</number><queueId>-1</queueId><result>UNSTABLE</result><timestamp>1762607532295</timestamp><url>http://sing.ei.uvigo.es/dt/jenkins/job/microstories-2526-teamA/es.uvigo.esei.dgss.teamA.microstories$dgss2526-teamA-microstories-service/72/</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>service/src/main/java/es/uvigo/esei/microstories/services/StoryService.java</affectedPath><commitId>8b0dbb8fa3b6015c7cfe963ab6c8f0ae5fc10fd7</commitId><timestamp>1762606517000</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:21 (EJB) Añadir registro de lectura de un relato Cuando se accede a
un relato debe registrarse que se ha producido una lectura. Será
necesario almacenar la fecha de la lectura.
</comment><date>2025-11-08 13:55:17 +0100</date><id>8b0dbb8fa3b6015c7cfe963ab6c8f0ae5fc10fd7</id><msg>tsk:21 (EJB) Añadir registro de lectura de un relato Cuando se accede a</msg><path><editType>edit</editType><file>service/src/main/java/es/uvigo/esei/microstories/services/StoryService.java</file></path><path><editType>edit</editType><file>service/src/test/java/es/uvigo/esei/microstories/services/StoryServiceIntegrationTest.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/72/mavenArtifacts/</url></mavenArtifacts></child><result _class='hudson.tasks.junit.TestResult'><duration>10.179</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>10.178</duration><errorDetails>Unable to locate datasets/expected-addReading-story1.xml. File does not exist also in default location datasets/</errorDetails><errorStackTrace>org.jboss.arquillian.persistence.core.exception.InvalidResourceLocation: Unable to locate datasets/expected-addReading-story1.xml. File does not exist also in default location datasets/
</errorStackTrace><failedSince>72</failedSince><name>es.uvigo.esei.microstories.services.StoryServiceIntegrationTest</name><skipped>false</skipped><status>FAILED</status><stdout>&amp;amp#27;[0m14:12:44,712 INFO  [org.jboss.modules] (main) JBoss Modules version 1.6.1.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:12:45,139 INFO  [org.jboss.msc] (main) JBoss MSC version 1.2.7.SP1
&amp;amp#27;[0m&amp;amp#27;[0m14:12:45,454 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;[0m14:12:48,559 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;[0m14:12:48,599 INFO  [org.xnio] (MSC service thread 1-4) XNIO version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:12:48,625 INFO  [org.xnio.nio] (MSC service thread 1-4) XNIO NIO Implementation Version 3.4.0.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:12:48,766 INFO  [org.jboss.remoting] (MSC service thread 1-4) JBoss Remoting version 4.0.21.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:12:48,842 INFO  [org.jboss.as.naming] (ServerService Thread Pool -- 44) WFLYNAM0001: Activating Naming Subsystem
&amp;amp#27;[0m&amp;amp#27;[0m14:12:48,886 INFO  [org.jboss.as.clustering.infinispan] (ServerService Thread Pool -- 36) WFLYCLINF0001: Activating Infinispan subsystem.
&amp;amp#27;[0m&amp;amp#27;[33m14:12:48,941 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;[0m14:12:48,961 INFO  [org.jboss.as.security] (ServerService Thread Pool -- 49) WFLYSEC0002: Activating Security Subsystem
&amp;amp#27;[0m&amp;amp#27;[0m14:12:48,964 INFO  [org.jboss.as.webservices] (ServerService Thread Pool -- 52) WFLYWS0002: Activating WebServices Extension
&amp;amp#27;[0m&amp;amp#27;[0m14:12:48,998 INFO  [org.jboss.as.jsf] (ServerService Thread Pool -- 42) WFLYJSF0007: Activated the following JSF Implementations: [main]
&amp;amp#27;[0m&amp;amp#27;[0m14:12:49,010 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;[0m14:12:49,102 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;[0m14:12:49,133 INFO  [org.jboss.as.naming] (MSC service thread 1-4) WFLYNAM0003: Starting Naming Service
&amp;amp#27;[0m&amp;amp#27;[0m14:12:49,201 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0003: Undertow 1.4.0.Final starting
&amp;amp#27;[0m&amp;amp#27;[0m14:12:49,262 INFO  [org.jboss.as.mail.extension] (MSC service thread 1-1) WFLYMAIL0001: Bound mail session [java:jboss/mail/Default]
&amp;amp#27;[0m&amp;amp#27;[0m14:12:49,263 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;[0m14:12:49,321 INFO  [org.jboss.as.connector] (MSC service thread 1-3) WFLYJCA0009: Starting JCA Subsystem (WildFly/IronJacamar 1.3.4.Final)
&amp;amp#27;[0m&amp;amp#27;[0m14:12:49,558 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;[0m14:12:50,016 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;[0m14:12:50,055 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0012: Started server default-server.
&amp;amp#27;[0m&amp;amp#27;[0m14:12:50,086 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-4) WFLYUT0018: Host default-host starting
&amp;amp#27;[0m&amp;amp#27;[0m14:12:50,381 INFO  [org.wildfly.extension.undertow] (MSC service thread 1-3) WFLYUT0006: Undertow HTTP listener default listening on 127.0.0.1:28080
&amp;amp#27;[0m&amp;amp#27;[0m14:12:50,694 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;[0m14:12:50,694 INFO  [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-4) WFLYJCA0001: Bound data source [java:jboss/datasources/dgss2526/teamA/microstories]
&amp;amp#27;[0m&amp;amp#27;[0m14:12:51,425 INFO  [org.jboss.as.server.deployment.scanner] (MSC service thread 1-3) 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;[0m14:12:51,727 INFO  [org.infinispan.factories.GlobalComponentRegistry] (MSC service thread 1-2) ISPN000128: Infinispan version: Infinispan 'Chakra' 8.2.4.Final
&amp;amp#27;[0m&amp;amp#27;[0m14:12:51,806 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;[0m14:12:51,808 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;[0m14:12:51,819 INFO  [org.jboss.ws.common.management] (MSC service thread 1-1) JBWS022052: Starting JBossWS 5.1.5.Final (Apache CXF 3.1.6) 
&amp;amp#27;[0m&amp;amp#27;[0m14:12:51,809 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;[0m14:12:51,828 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;[0m14:12:52,076 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;[0m14:12:52,076 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;[0m14:12:52,080 INFO  [org.jboss.as] (Controller Boot Thread) WFLYSRV0025: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) started in 7192ms - Started 302 of 506 services (325 services are lazy, passive or on-demand)
&amp;amp#27;[0m</stdout></case><duration>10.179</duration><name>es.uvigo.esei.microstories.services.ServiceIntegrationTestSuite</name></suite></result></childReport></surefireAggregatedReport>