http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d145eb4b/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV1ImplTest.java ---------------------------------------------------------------------- diff --git a/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV1ImplTest.java b/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV1ImplTest.java new file mode 100644 index 0000000..40431d1 --- /dev/null +++ b/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV1ImplTest.java @@ -0,0 +1,57 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.usergrid.persistence.collection.serialization.impl; + + +import org.junit.Test; +import org.junit.runner.RunWith; + +import org.apache.usergrid.persistence.collection.guice.TestCollectionModule; +import org.apache.usergrid.persistence.collection.serialization.UniqueValueSerializationStrategy; +import org.apache.usergrid.persistence.core.test.ITRunner; +import org.apache.usergrid.persistence.core.test.UseModules; + +import com.google.inject.Inject; +import com.netflix.astyanax.connectionpool.exceptions.ConnectionException; + +import static org.junit.Assert.assertEquals; + + +@RunWith( ITRunner.class ) +@UseModules( TestCollectionModule.class ) +public class UniqueValueSerializationStrategyV1ImplTest extends UniqueValueSerializationStrategyImplTest { + + @Inject + private UniqueValueSerializationStrategyV1Impl strategy; + + + /** + * Get the unique value serialization + */ + protected UniqueValueSerializationStrategy getUniqueSerializationStrategy() { + return strategy; + } + + + @Test + public void testVersion() throws ConnectionException, InterruptedException { + + assertEquals( CollectionDataVersions.INITIAL.getVersion(), strategy.getImplementationVersion() ); + } +}
http://git-wip-us.apache.org/repos/asf/incubator-usergrid/blob/d145eb4b/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV2ImplTest.java ---------------------------------------------------------------------- diff --git a/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV2ImplTest.java b/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV2ImplTest.java new file mode 100644 index 0000000..8de52fd --- /dev/null +++ b/stack/corepersistence/collection/src/test/java/org/apache/usergrid/persistence/collection/serialization/impl/UniqueValueSerializationStrategyV2ImplTest.java @@ -0,0 +1,58 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.usergrid.persistence.collection.serialization.impl; + + +import org.junit.Test; +import org.junit.runner.RunWith; + +import org.apache.usergrid.persistence.collection.guice.TestCollectionModule; +import org.apache.usergrid.persistence.collection.serialization.UniqueValueSerializationStrategy; +import org.apache.usergrid.persistence.core.test.ITRunner; +import org.apache.usergrid.persistence.core.test.UseModules; + +import com.google.inject.Inject; +import com.netflix.astyanax.connectionpool.exceptions.ConnectionException; + +import static org.junit.Assert.assertEquals; + + +@RunWith( ITRunner.class ) +@UseModules( TestCollectionModule.class ) +public class UniqueValueSerializationStrategyV2ImplTest extends UniqueValueSerializationStrategyImplTest { + + @Inject + private UniqueValueSerializationStrategyV2Impl strategy; + + + /** + * Get the unique value serialization + */ + protected UniqueValueSerializationStrategy getUniqueSerializationStrategy() { + return strategy; + } + + + @Test + public void testVersion() throws ConnectionException, InterruptedException { + + assertEquals( CollectionDataVersions.LOG_REMOVAL.getVersion(), strategy.getImplementationVersion() ); + } +}
