-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix repository update with the same settings but different type #31458
Merged
vladimirdolzhenko
merged 9 commits into
elastic:master
from
vladimirdolzhenko:fix_repo_update_diff_type
Jun 22, 2018
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b20fa77
fix repository update with the same settings but different type
fc5e94d
fix comment
3f606bd
use equals instead of check each property of repo metadata; improve t…
c3dd0f6
integration test has to be IT; added check for the instance; add some…
a857d2b
minor test case enhancements
8f7eb41
make variables final; explicit start a single master node
bd44fe4
Merge remote-tracking branch 'remotes/origin/master' into fix_repo_up…
f7d1a30
do not stuck with a single master case
4fd7576
final polish
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
99 changes: 99 additions & 0 deletions
99
server/src/test/java/org/elasticsearch/repositories/RepositoriesServiceIT.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,99 @@ | ||
/* | ||
* 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.repositories; | ||
|
||
import org.elasticsearch.action.admin.cluster.repositories.get.GetRepositoriesResponse; | ||
import org.elasticsearch.client.Client; | ||
import org.elasticsearch.cluster.metadata.RepositoryMetaData; | ||
import org.elasticsearch.common.settings.Settings; | ||
import org.elasticsearch.plugins.Plugin; | ||
import org.elasticsearch.repositories.fs.FsRepository; | ||
import org.elasticsearch.snapshots.mockstore.MockRepository; | ||
import org.elasticsearch.test.ESIntegTestCase; | ||
import org.elasticsearch.test.InternalTestCluster; | ||
|
||
import java.util.Collection; | ||
import java.util.Collections; | ||
|
||
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertAcked; | ||
import static org.hamcrest.Matchers.equalTo; | ||
import static org.hamcrest.Matchers.hasSize; | ||
import static org.hamcrest.Matchers.instanceOf; | ||
import static org.hamcrest.Matchers.not; | ||
import static org.hamcrest.Matchers.sameInstance; | ||
|
||
public class RepositoriesServiceIT extends ESIntegTestCase { | ||
|
||
@Override | ||
protected Collection<Class<? extends Plugin>> nodePlugins() { | ||
return Collections.singletonList(MockRepository.Plugin.class); | ||
} | ||
|
||
public void testUpdateRepository() throws Exception { | ||
waitNoPendingTasksOnAll(); | ||
final InternalTestCluster cluster = internalCluster(); | ||
|
||
final String repositoryName = "test-repo"; | ||
|
||
final Client client = client(); | ||
final RepositoriesService repositoriesService = | ||
cluster.getDataOrMasterNodeInstances(RepositoriesService.class).iterator().next(); | ||
final Settings settings = cluster.getDefaultSettings(); | ||
|
||
final Settings.Builder repoSettings = Settings.builder().put(settings).put("location", randomRepoPath()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You don't need to pass the default cluster |
||
|
||
assertAcked(client.admin().cluster().preparePutRepository(repositoryName) | ||
.setType(FsRepository.TYPE) | ||
.setSettings(repoSettings) | ||
.get()); | ||
|
||
final GetRepositoriesResponse originalGetRepositoriesResponse = | ||
client.admin().cluster().prepareGetRepositories(repositoryName).get(); | ||
|
||
assertThat(originalGetRepositoriesResponse.repositories(), hasSize(1)); | ||
RepositoryMetaData originalRepositoryMetaData = originalGetRepositoriesResponse.repositories().get(0); | ||
|
||
assertThat(originalRepositoryMetaData.type(), equalTo(FsRepository.TYPE)); | ||
|
||
final Repository originalRepository = repositoriesService.repository(repositoryName); | ||
assertThat(originalRepository, instanceOf(FsRepository.class)); | ||
|
||
// update repository | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you can remove this comment |
||
|
||
final boolean updated = randomBoolean(); | ||
final String updatedRepositoryType = updated ? "mock" : FsRepository.TYPE; | ||
|
||
assertAcked(client.admin().cluster().preparePutRepository(repositoryName) | ||
.setType(updatedRepositoryType) | ||
.setSettings(repoSettings) | ||
.get()); | ||
|
||
final GetRepositoriesResponse updatedGetRepositoriesResponse = | ||
client.admin().cluster().prepareGetRepositories(repositoryName).get(); | ||
|
||
assertThat(updatedGetRepositoriesResponse.repositories(), hasSize(1)); | ||
final RepositoryMetaData updatedRepositoryMetaData = updatedGetRepositoriesResponse.repositories().get(0); | ||
|
||
assertThat(updatedRepositoryMetaData.type(), equalTo(updatedRepositoryType)); | ||
|
||
final Repository updatedRepository = repositoriesService.repository(repositoryName); | ||
assertThat(updatedRepository, updated ? not(sameInstance(originalRepository)) : sameInstance(originalRepository)); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thinking about it twice, I don't think that this is necessary. I think you can remove it, run the test multiple times andsee if it fails or not.