forked from opensearch-project/opensearch-migrations
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from peternied/FixJacksonSerialization
Add a test case to make sure deserialization is tested for snapshots
- Loading branch information
Showing
1 changed file
with
89 additions
and
0 deletions.
There are no files selected for viewing
89 changes: 89 additions & 0 deletions
89
RFS/src/test/java/com/rfs/version_es_7_10/SnapshotRepoData_ES_7_10Test.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,89 @@ | ||
package com.rfs.version_es_7_10; | ||
|
||
import static org.hamcrest.CoreMatchers.equalTo; | ||
import static org.hamcrest.MatcherAssert.assertThat; | ||
|
||
import java.io.File; | ||
import java.io.FileOutputStream; | ||
import java.io.PrintWriter; | ||
import java.nio.file.Path; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
public class SnapshotRepoData_ES_7_10Test { | ||
|
||
private final String basicSnapshotJson = " {\n" + // | ||
" \"snapshots\" : [ {\n" + // | ||
" \"name\" : \"snapshot-1\",\n" + // | ||
" \"uuid\" : \"DToXzBoXTha6u2KRsQZ0Yw\",\n" + // | ||
" \"state\" : 1,\n" + // | ||
" \"index_metadata_lookup\" : {\n" + // | ||
" \"VUr1hXkwQOOeWNBnvZ7pmA\" : \"4RVV4jgXRNqALWe9TxkoYA-_na_-1-2-1\"\n" + // | ||
" },\n" + // | ||
" \"version\" : \"7.10.2\"\n" + // | ||
" } ],\n" + // | ||
" \"indices\" : {\n" + // | ||
" \"my-index\" : {\n" + // | ||
" \"id\" : \"VUr1hXkwQOOeWNBnvZ7pmA\",\n" + // | ||
" \"snapshots\" : [ \"DToXzBoXTha6u2KRsQZ0Yw\" ],\n" + // | ||
" \"shard_generations\" : [ \"VcuUZNqoR8SilY8H3VY-fQ\" ]\n" + // | ||
" }\n" + // | ||
" },\n" + // | ||
" \"min_version\" : \"7.9.0\",\n" + // | ||
" \"index_metadata_identifiers\" : {\n" + // | ||
" \"4RVV4jgXRNqALWe9TxkoYA-_na_-1-2-1\" : \"-I-dMZABiRFG_R03ChN0\"\n" + // | ||
" }\n" + // | ||
" }"; | ||
|
||
@Test | ||
void testFromRepoFile_default() { | ||
// Setup | ||
final var jsonInFile = createTempFile(basicSnapshotJson); | ||
|
||
// Act | ||
final var result = SnapshotRepoData_ES_7_10.fromRepoFile(jsonInFile); | ||
|
||
// Verify | ||
assertThat(result.minVersion, equalTo("7.9.0")); | ||
assertThat(result.indices.size(), equalTo(1)); | ||
} | ||
|
||
@Test | ||
void testFromRepoFile_extraFields() { | ||
// Setup | ||
var jsonWithExtraFields = insertAtLine(basicSnapshotJson, "\"foo\":\"bar\",", 2); | ||
final var jsonInFile = createTempFile(jsonWithExtraFields); | ||
|
||
// Act | ||
final var result = SnapshotRepoData_ES_7_10.fromRepoFile(jsonInFile); | ||
|
||
// Verify | ||
assertThat(result.minVersion, equalTo("7.9.0")); | ||
assertThat(result.indices.size(), equalTo(1)); | ||
} | ||
|
||
private String insertAtLine(final String source, final String toAdd, final int lineNumber) { | ||
final var lines = source.split("\n"); | ||
final StringBuilder sb = new StringBuilder(); | ||
for (var i = 0; i < lines.length; i++) { | ||
if (lineNumber == i) { | ||
sb.append(toAdd); | ||
} | ||
sb.append(lines[i]); | ||
} | ||
return sb.toString(); | ||
} | ||
|
||
private Path createTempFile(final String contents) { | ||
try { | ||
final var file = File.createTempFile("repoFile", ".txt"); | ||
try (final var fos = new PrintWriter(new FileOutputStream(file))) { | ||
fos.append(contents); | ||
} | ||
file.deleteOnExit(); | ||
return Path.of(file.getAbsolutePath()); | ||
} catch (Exception e) { | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} |