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/18 22:35:41 UTC

[gora] branch GORA-646-improve-gora-mongodb-tests updated: GORE-646 Remove old MongoDB 2.6, 3.0 and 3.2 profiles for unsupported releases

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

drazzib pushed a commit to branch GORA-646-improve-gora-mongodb-tests
in repository https://gitbox.apache.org/repos/asf/gora.git


The following commit(s) were added to refs/heads/GORA-646-improve-gora-mongodb-tests by this push:
     new 5a736aa  GORE-646 Remove old MongoDB 2.6, 3.0 and 3.2 profiles for unsupported releases
5a736aa is described below

commit 5a736aafce9494bf3a20e48c8c2b66eda655457a
Author: Damien Raude-Morvan <dr...@drazzib.com>
AuthorDate: Wed Mar 18 23:35:34 2020 +0100

    GORE-646 Remove old MongoDB 2.6, 3.0 and 3.2 profiles for unsupported releases
---
 .../gora/mongodb/store/TestMongoStore26.java       | 31 ----------------------
 .../gora/mongodb/store/TestMongoStore30.java       | 31 ----------------------
 .../gora/mongodb/store/TestMongoStore32.java       | 31 ----------------------
 3 files changed, 93 deletions(-)

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/TestMongoStore26.java
deleted file mode 100644
index 8a1f4d3..0000000
--- a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore26.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 2.6.x server.
- */
-public class TestMongoStore26 extends TestMongoStore {
-
-  static {
-    setTestDriver(new GoraMongodbTestDriver(Version.Main.V2_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/TestMongoStore30.java
deleted file mode 100644
index d467ff5..0000000
--- a/gora-mongodb/src/test/java/org/apache/gora/mongodb/store/TestMongoStore30.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.0.x server.
- */
-public class TestMongoStore30 extends TestMongoStore {
-
-  static {
-    setTestDriver(new GoraMongodbTestDriver(Version.Main.V3_0));
-  }
-}
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));
-  }
-}