You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gora.apache.org by dr...@apache.org on 2020/03/19 13:38:58 UTC

[gora] branch master updated: GORA-646 Run integration tests on MongoDB 3.6 and 4.0 (#205)

This is an automated email from the ASF dual-hosted git repository.

drazzib pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/master by this push:
     new 0b241ad  GORA-646 Run integration tests on MongoDB 3.6 and 4.0 (#205)
0b241ad is described below

commit 0b241ad057de385691a2b5fb8d6eb9efe55e72ea
Author: Damien Raude-Morvan <dr...@drazzib.com>
AuthorDate: Thu Mar 19 14:38:49 2020 +0100

    GORA-646 Run integration tests on MongoDB 3.6 and 4.0 (#205)
    
    * GORE-646 Upgrade de.flapdoodle.embed.mongo to 2.2.0
    * GORE-646 Add new integration tests for MongoDB 3.6 and 4.0
    * GORE-646 Remove old MongoDB 2.6, 3.0 and 3.2 profiles for unsupported releases
---
 gora-mongodb/pom.xml                               |  2 +-
 .../gora/mongodb/store/TestMongoStore32.java       | 31 ----------------------
 ...TestMongoStore26.java => TestMongoStore36.java} |  6 ++---
 ...TestMongoStore30.java => TestMongoStore40.java} |  6 ++---
 4 files changed, 7 insertions(+), 38 deletions(-)

diff --git a/gora-mongodb/pom.xml b/gora-mongodb/pom.xml
index c68b13e..e3c9566 100644
--- a/gora-mongodb/pom.xml
+++ b/gora-mongodb/pom.xml
@@ -52,7 +52,7 @@
   <properties>
     <osgi.import>*</osgi.import>
     <osgi.export>org.apache.gora.mongodb*;version="${project.version}";-noimport:=true</osgi.export>
-    <mongo.embed.version>2.0.0</mongo.embed.version>
+    <mongo.embed.version>2.2.0</mongo.embed.version>
   </properties>
 
   <build>
diff --git a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore32.java b/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore32.java
deleted file mode 100644
index dde1f7e..0000000
--- a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore32.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- * 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.gora.mongodb.store;
-
-import de.flapdoodle.embed.mongo.distribution.Version;
-import org.apache.gora.mongodb.GoraMongodbTestDriver;
-
-/**
- * Perform {@link TestMongoStore} tests on MongoDB 3.2.x server.
- */
-public class TestMongoStore32 extends TestMongoStore {
-
-  static {
-    setTestDriver(new GoraMongodbTestDriver(Version.Main.V3_2));
-  }
-}
diff --git a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore26.java b/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore36.java
similarity index 84%
rename from gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore26.java
rename to gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore36.java
index 8a1f4d3..7b5d0aa 100644
--- a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore26.java
+++ b/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore36.java
@@ -21,11 +21,11 @@ import de.flapdoodle.embed.mongo.distribution.Version;
 import org.apache.gora.mongodb.GoraMongodbTestDriver;
 
 /**
- * Perform {@link TestMongoStore} tests on MongoDB 2.6.x server.
+ * Perform {@link TestMongoStore} tests on MongoDB 3.6.x server.
  */
-public class TestMongoStore26 extends TestMongoStore {
+public class TestMongoStore36 extends TestMongoStore {
 
   static {
-    setTestDriver(new GoraMongodbTestDriver(Version.Main.V2_6));
+    setTestDriver(new GoraMongodbTestDriver(Version.Main.V3_6));
   }
 }
diff --git a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore30.java b/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore40.java
similarity index 84%
rename from gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore30.java
rename to gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore40.java
index d467ff5..6cc9163 100644
--- a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore30.java
+++ b/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore40.java
@@ -21,11 +21,11 @@ import de.flapdoodle.embed.mongo.distribution.Version;
 import org.apache.gora.mongodb.GoraMongodbTestDriver;
 
 /**
- * Perform {@link TestMongoStore} tests on MongoDB 3.0.x server.
+ * Perform {@link TestMongoStore} tests on MongoDB 4.0.x server.
  */
-public class TestMongoStore30 extends TestMongoStore {
+public class TestMongoStore40 extends TestMongoStore {
 
   static {
-    setTestDriver(new GoraMongodbTestDriver(Version.Main.V3_0));
+    setTestDriver(new GoraMongodbTestDriver(Version.Main.V4_0));
   }
 }