mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
Convert the brittle xml-based result-count tests into 'normal' result set tests. Remove all tests for string comparison using less than/greater than. This is not supported according to the CMIS spec. See "2.1.14.2.4.1 Comparisons permitted in the WHERE clause" here: http://docs.oasis-open.org/cmis/CMIS/v1.1/csprd01/CMIS-v1.1-csprd01.html#x1-10500014 Nb. String ordering (in an ORDER BY clause) is repository specific - i.e. it's not specified in the CMIS spec. Assume that our current ordering is how we want it to be (e.g. '1' comes before '.').
121 lines
4.5 KiB
XML
121 lines
4.5 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-search-and-insight-parent</artifactId>
|
|
<version>1.5.0-SNAPSHOT</version>
|
|
</parent>
|
|
<groupId>search-analytics-e2e-test</groupId>
|
|
<artifactId>search-analytics-e2e-test</artifactId>
|
|
<name>Search Analytics E2E Tests</name>
|
|
<description>Test Project to test Search Service and Analytics Features on a complete setup of Alfresco, Share</description>
|
|
<properties>
|
|
<tas.rest.api.version>1.15</tas.rest.api.version>
|
|
<tas.cmis.api.version>1.9</tas.cmis.api.version>
|
|
<tas.utility.version>3.0.14</tas.utility.version>
|
|
<rm.version>3.2.0</rm.version>
|
|
<suiteXmlFile>src/test/resources/SearchSuite.xml</suiteXmlFile>
|
|
<test.exclude></test.exclude>
|
|
<test.include></test.include>
|
|
<jackson.databind.version>2.7.7</jackson.databind.version>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<suiteXmlFiles>
|
|
<suiteXmlFile>${suiteXmlFile}</suiteXmlFile>
|
|
</suiteXmlFiles>
|
|
<excludedGroups>${test.exclude}</excludedGroups>
|
|
<groups>${test.include}</groups>
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-insight-jdbc</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco.tas</groupId>
|
|
<artifactId>restapi</artifactId>
|
|
<version>${tas.rest.api.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco.tas</groupId>
|
|
<artifactId>cmis</artifactId>
|
|
<version>${tas.cmis.api.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-governance-services-automation-enterprise-rest-api</artifactId>
|
|
<version>${rm.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${jackson.databind.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-governance-services-automation-community-rest-api</artifactId>
|
|
<version>${rm.version}</version>
|
|
<classifier>tests</classifier>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- alfresco tester settings -->
|
|
<dependency>
|
|
<groupId>org.alfresco.tas</groupId>
|
|
<artifactId>utility</artifactId>
|
|
<version>${tas.utility.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.18.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.openjfx</groupId>
|
|
<artifactId>javafx-fxml</artifactId>
|
|
<version>12-ea+10</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |