You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by tf...@apache.org on 2023/05/02 21:52:11 UTC

[solr] branch main updated: SOLR-16718: Move placement test utils to test-framework (#1596)

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

tflobbe pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new 4ef8df9c603 SOLR-16718: Move placement test utils to test-framework (#1596)
4ef8df9c603 is described below

commit 4ef8df9c60364c70b75a7d0f04128a618092903d
Author: Tomas Eduardo Fernandez Lobbe <tf...@apache.org>
AuthorDate: Tue May 2 14:52:04 2023 -0700

    SOLR-16718: Move placement test utils to test-framework (#1596)
---
 .../cluster/placement/AttributeFetcherForTest.java    |  0
 .../org/apache/solr/cluster/placement/Builders.java   |  0
 .../cluster/placement/ClusterAbstractionsForTest.java |  0
 .../apache/solr/cluster/placement/package-info.java   | 19 +++++++++++++++++++
 .../apache/solr/cluster/placement/BuildersTest.java   |  0
 5 files changed, 19 insertions(+)

diff --git a/solr/core/src/test/org/apache/solr/cluster/placement/AttributeFetcherForTest.java b/solr/test-framework/src/java/org/apache/solr/cluster/placement/AttributeFetcherForTest.java
similarity index 100%
rename from solr/core/src/test/org/apache/solr/cluster/placement/AttributeFetcherForTest.java
rename to solr/test-framework/src/java/org/apache/solr/cluster/placement/AttributeFetcherForTest.java
diff --git a/solr/core/src/test/org/apache/solr/cluster/placement/Builders.java b/solr/test-framework/src/java/org/apache/solr/cluster/placement/Builders.java
similarity index 100%
rename from solr/core/src/test/org/apache/solr/cluster/placement/Builders.java
rename to solr/test-framework/src/java/org/apache/solr/cluster/placement/Builders.java
diff --git a/solr/core/src/test/org/apache/solr/cluster/placement/ClusterAbstractionsForTest.java b/solr/test-framework/src/java/org/apache/solr/cluster/placement/ClusterAbstractionsForTest.java
similarity index 100%
rename from solr/core/src/test/org/apache/solr/cluster/placement/ClusterAbstractionsForTest.java
rename to solr/test-framework/src/java/org/apache/solr/cluster/placement/ClusterAbstractionsForTest.java
diff --git a/solr/test-framework/src/java/org/apache/solr/cluster/placement/package-info.java b/solr/test-framework/src/java/org/apache/solr/cluster/placement/package-info.java
new file mode 100644
index 00000000000..e40bac29f56
--- /dev/null
+++ b/solr/test-framework/src/java/org/apache/solr/cluster/placement/package-info.java
@@ -0,0 +1,19 @@
+/*
+ * 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.
+ */
+
+/** Utility classes to test placement plugins. */
+package org.apache.solr.cluster.placement;
diff --git a/solr/core/src/test/org/apache/solr/cluster/placement/BuildersTest.java b/solr/test-framework/src/test/org/apache/solr/cluster/placement/BuildersTest.java
similarity index 100%
rename from solr/core/src/test/org/apache/solr/cluster/placement/BuildersTest.java
rename to solr/test-framework/src/test/org/apache/solr/cluster/placement/BuildersTest.java