diff options
Diffstat (limited to 'src/test/java/org/elasticsearch/index/gateway/CommitPointsTests.java')
-rw-r--r-- | src/test/java/org/elasticsearch/index/gateway/CommitPointsTests.java | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/src/test/java/org/elasticsearch/index/gateway/CommitPointsTests.java b/src/test/java/org/elasticsearch/index/gateway/CommitPointsTests.java new file mode 100644 index 0000000..f3182fa --- /dev/null +++ b/src/test/java/org/elasticsearch/index/gateway/CommitPointsTests.java @@ -0,0 +1,77 @@ +/* + * 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.index.gateway; + +import com.google.common.base.Charsets; +import com.google.common.collect.Lists; +import org.elasticsearch.common.logging.ESLogger; +import org.elasticsearch.common.logging.Loggers; +import org.elasticsearch.test.ElasticsearchTestCase; +import org.junit.Test; + +import java.util.ArrayList; + +import static org.hamcrest.MatcherAssert.assertThat; +import static org.hamcrest.Matchers.equalTo; +import static org.hamcrest.Matchers.nullValue; + +/** + * + */ +public class CommitPointsTests extends ElasticsearchTestCase { + + private final ESLogger logger = Loggers.getLogger(CommitPointsTests.class); + + @Test + public void testCommitPointXContent() throws Exception { + ArrayList<CommitPoint.FileInfo> indexFiles = Lists.newArrayList(); + indexFiles.add(new CommitPoint.FileInfo("file1", "file1_p", 100, "ck1")); + indexFiles.add(new CommitPoint.FileInfo("file2", "file2_p", 200, "ck2")); + + ArrayList<CommitPoint.FileInfo> translogFiles = Lists.newArrayList(); + translogFiles.add(new CommitPoint.FileInfo("t_file1", "t_file1_p", 100, null)); + translogFiles.add(new CommitPoint.FileInfo("t_file2", "t_file2_p", 200, null)); + + CommitPoint commitPoint = new CommitPoint(1, "test", CommitPoint.Type.GENERATED, indexFiles, translogFiles); + + byte[] serialized = CommitPoints.toXContent(commitPoint); + logger.info("serialized commit_point {}", new String(serialized, Charsets.UTF_8)); + + CommitPoint desCp = CommitPoints.fromXContent(serialized); + assertThat(desCp.version(), equalTo(commitPoint.version())); + assertThat(desCp.name(), equalTo(commitPoint.name())); + + assertThat(desCp.indexFiles().size(), equalTo(commitPoint.indexFiles().size())); + for (int i = 0; i < desCp.indexFiles().size(); i++) { + assertThat(desCp.indexFiles().get(i).name(), equalTo(commitPoint.indexFiles().get(i).name())); + assertThat(desCp.indexFiles().get(i).physicalName(), equalTo(commitPoint.indexFiles().get(i).physicalName())); + assertThat(desCp.indexFiles().get(i).length(), equalTo(commitPoint.indexFiles().get(i).length())); + assertThat(desCp.indexFiles().get(i).checksum(), equalTo(commitPoint.indexFiles().get(i).checksum())); + } + + assertThat(desCp.translogFiles().size(), equalTo(commitPoint.translogFiles().size())); + for (int i = 0; i < desCp.indexFiles().size(); i++) { + assertThat(desCp.translogFiles().get(i).name(), equalTo(commitPoint.translogFiles().get(i).name())); + assertThat(desCp.translogFiles().get(i).physicalName(), equalTo(commitPoint.translogFiles().get(i).physicalName())); + assertThat(desCp.translogFiles().get(i).length(), equalTo(commitPoint.translogFiles().get(i).length())); + assertThat(desCp.translogFiles().get(i).checksum(), nullValue()); + } + } +} |