fix broken ut

This commit is contained in:
fjy 2014-12-09 15:43:07 -08:00
parent d6d3ec6846
commit 7620dfbd1a
2 changed files with 222 additions and 216 deletions

View File

@ -20,223 +20,228 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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/maven-v4_0_0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>io.druid</groupId>
<artifactId>druid-server</artifactId>
<name>druid-server</name>
<description>Druid Server</description>
<parent>
<groupId>io.druid</groupId> <groupId>io.druid</groupId>
<artifactId>druid</artifactId> <artifactId>druid-server</artifactId>
<version>0.7.0-SNAPSHOT</version> <name>druid-server</name>
</parent> <description>Druid Server</description>
<dependencies> <parent>
<dependency> <groupId>io.druid</groupId>
<groupId>io.druid</groupId> <artifactId>druid</artifactId>
<artifactId>druid-processing</artifactId> <version>0.7.0-SNAPSHOT</version>
<version>${project.parent.version}</version> </parent>
</dependency>
<dependency>
<groupId>com.metamx</groupId>
<artifactId>http-client</artifactId>
</dependency>
<dependency>
<groupId>com.metamx</groupId>
<artifactId>server-metrics</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.el</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-x-discovery</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-smile-provider</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-servlet</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-guice</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-proxy</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>io.tesla.aether</groupId>
<artifactId>tesla-aether</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-api</artifactId>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
</dependency>
<dependency>
<groupId>net.spy</groupId>
<artifactId>spymemcached</artifactId>
</dependency>
<dependency>
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
</dependency>
<dependency>
<groupId>com.ircclouds.irc</groupId>
<artifactId>irc-api</artifactId>
</dependency>
<dependency>
<groupId>com.maxmind.geoip2</groupId>
<artifactId>geoip2</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.11.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbynet</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
</dependency>
<!-- Tests --> <dependencies>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>io.druid</groupId>
<artifactId>junit</artifactId> <artifactId>druid-processing</artifactId>
<scope>test</scope> <version>${project.parent.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.easymock</groupId> <groupId>com.metamx</groupId>
<artifactId>easymock</artifactId> <artifactId>http-client</artifactId>
<scope>test</scope> </dependency>
</dependency> <dependency>
<dependency> <groupId>com.metamx</groupId>
<groupId>io.druid</groupId> <artifactId>server-metrics</artifactId>
<artifactId>druid-processing</artifactId> </dependency>
<version>${project.parent.version}</version> <dependency>
<type>test-jar</type> <groupId>commons-cli</groupId>
<scope>test</scope> <artifactId>commons-cli</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.apache.curator</groupId> <groupId>commons-lang</groupId>
<artifactId>curator-test</artifactId> <artifactId>commons-lang</artifactId>
<scope>test</scope> </dependency>
</dependency> <dependency>
<dependency> <groupId>javax.inject</groupId>
<groupId>com.google.caliper</groupId> <artifactId>javax.inject</artifactId>
<artifactId>caliper</artifactId> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.glassfish</groupId>
</dependencies> <artifactId>javax.el</artifactId>
</dependency>
<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>aws-java-sdk</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-framework</artifactId>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-x-discovery</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-smile-provider</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-server</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-servlet</artifactId>
</dependency>
<dependency>
<groupId>com.sun.jersey.contribs</groupId>
<artifactId>jersey-guice</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-proxy</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
</dependency>
<dependency>
<groupId>io.tesla.aether</groupId>
<artifactId>tesla-aether</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.aether</groupId>
<artifactId>aether-api</artifactId>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
</dependency>
<dependency>
<groupId>net.spy</groupId>
<artifactId>spymemcached</artifactId>
</dependency>
<dependency>
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlets</artifactId>
</dependency>
<dependency>
<groupId>com.ircclouds.irc</groupId>
<artifactId>irc-api</artifactId>
</dependency>
<dependency>
<groupId>com.maxmind.geoip2</groupId>
<artifactId>geoip2</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.11.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbynet</artifactId>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
</dependency>
<build> <!-- Tests -->
<plugins> <dependency>
<plugin> <groupId>junit</groupId>
<groupId>org.apache.maven.plugins</groupId> <artifactId>junit</artifactId>
<artifactId>maven-source-plugin</artifactId> <scope>test</scope>
<executions> </dependency>
<execution> <dependency>
<id>attach-sources</id> <groupId>com.carrotsearch</groupId>
<goals> <artifactId>junit-benchmarks</artifactId>
<goal>jar</goal> <scope>test</scope>
</goals> </dependency>
</execution> <dependency>
</executions> <groupId>org.easymock</groupId>
</plugin> <artifactId>easymock</artifactId>
<plugin> <scope>test</scope>
<artifactId>maven-jar-plugin</artifactId> </dependency>
<executions> <dependency>
<execution> <groupId>io.druid</groupId>
<goals> <artifactId>druid-processing</artifactId>
<goal>test-jar</goal> <version>${project.parent.version}</version>
</goals> <type>test-jar</type>
</execution> <scope>test</scope>
</executions> </dependency>
<configuration> <dependency>
<archive> <groupId>org.apache.curator</groupId>
<manifest> <artifactId>curator-test</artifactId>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries> <scope>test</scope>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </dependency>
</manifest> <dependency>
</archive> <groupId>com.google.caliper</groupId>
</configuration> <artifactId>caliper</artifactId>
</plugin> <scope>test</scope>
<plugin> </dependency>
<groupId>org.antlr</groupId> </dependencies>
<artifactId>antlr4-maven-plugin</artifactId>
<executions> <build>
<execution> <plugins>
<goals> <plugin>
<goal>antlr4</goal> <groupId>org.apache.maven.plugins</groupId>
</goals> <artifactId>maven-source-plugin</artifactId>
</execution> <executions>
</executions> <execution>
</plugin> <id>attach-sources</id>
</plugins> <goals>
</build> <goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>antlr4</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project> </project>

View File

@ -35,7 +35,8 @@ import java.util.SortedSet;
*/ */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type", defaultImpl = UniformGranularitySpec.class) @JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "type", defaultImpl = UniformGranularitySpec.class)
@JsonSubTypes(value = { @JsonSubTypes(value = {
@JsonSubTypes.Type(name = "uniform", value = UniformGranularitySpec.class) @JsonSubTypes.Type(name = "uniform", value = UniformGranularitySpec.class),
@JsonSubTypes.Type(name = "arbitrary", value = ArbitraryGranularitySpec.class)
}) })
public interface GranularitySpec public interface GranularitySpec
{ {