-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Validate compatible handlers have correct version (#58304)
Validating if registered compatible rest handlers are overriding compatibleWith method and specify the right compatible version ("197 błędów / +197")
- Loading branch information
Showing
2 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
modules/rest-compatibility/src/test/java/org/elasticsearch/compat/RestCompatPluginTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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.elasticsearch.compat; | ||
|
||
import org.elasticsearch.Version; | ||
import org.elasticsearch.client.node.NodeClient; | ||
import org.elasticsearch.rest.RestChannel; | ||
import org.elasticsearch.rest.RestHandler; | ||
import org.elasticsearch.rest.RestRequest; | ||
import org.elasticsearch.test.ESTestCase; | ||
import org.hamcrest.Matchers; | ||
|
||
import java.util.List; | ||
|
||
public class RestCompatPluginTests extends ESTestCase { | ||
|
||
public void testRestHandlersValidation() { | ||
RestCompatPlugin restCompatPlugin = new RestCompatPlugin(); | ||
Version prevVersion = Version.fromString("7.0.0"); | ||
expectThrows( | ||
IllegalStateException.class, | ||
() -> restCompatPlugin.validateCompatibleHandlers(7, restHandler(prevVersion), restHandler(Version.fromString("8.0.0"))) | ||
); | ||
|
||
List<RestHandler> restHandlers = restCompatPlugin.validateCompatibleHandlers(7, restHandler(prevVersion), restHandler(prevVersion)); | ||
assertThat(restHandlers, Matchers.hasSize(2)); | ||
} | ||
|
||
private RestHandler restHandler(final Version version) { | ||
return new RestHandler() { | ||
@Override | ||
public Version compatibleWithVersion() { | ||
return version; | ||
} | ||
|
||
@Override | ||
public void handleRequest(RestRequest request, RestChannel channel, NodeClient client) throws Exception { | ||
|
||
} | ||
}; | ||
} | ||
} |