|
25 | 25 | import java.nio.file.Files;
|
26 | 26 | import java.nio.file.Path;
|
27 | 27 | import java.text.MessageFormat;
|
| 28 | +import java.util.List; |
28 | 29 | import java.util.Properties;
|
29 | 30 | import java.util.Set;
|
30 | 31 |
|
|
77 | 78 | import static org.apache.jackrabbit.oak.plugins.index.IndexConstants.TYPE_PROPERTY_NAME;
|
78 | 79 | import static org.apache.jackrabbit.oak.plugins.index.IndexUtils.createIndexDefinition;
|
79 | 80 | import static org.apache.jackrabbit.oak.plugins.index.importer.AsyncIndexerLock.NOOP_LOCK;
|
| 81 | +import static org.apache.jackrabbit.oak.plugins.index.importer.AsyncLaneSwitcher.ASYNC_PREVIOUS; |
80 | 82 | import static org.apache.jackrabbit.oak.plugins.index.importer.IndexDefinitionUpdater.INDEX_DEFINITIONS_JSON;
|
81 | 83 | import static org.apache.jackrabbit.oak.plugins.memory.EmptyNodeState.EMPTY_NODE;
|
82 | 84 | import static org.junit.Assert.assertEquals;
|
@@ -142,6 +144,50 @@ public void switchLanes() throws Exception{
|
142 | 144 | assertEquals(AsyncLaneSwitcher.getTempLaneName("async"), idxb.getString(ASYNC_PROPERTY_NAME));
|
143 | 145 | }
|
144 | 146 |
|
| 147 | + @Test |
| 148 | + public void switchLanesLuceneToElastic() throws Exception{ |
| 149 | + NodeBuilder builder = store.getRoot().builder(); |
| 150 | + builder.child("idx-a").setProperty("type", "elasticsearch"); |
| 151 | + builder.child("idx-a").setProperty("async", "elastic-async"); |
| 152 | + |
| 153 | + store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY); |
| 154 | + createIndexDirs("/idx-a"); |
| 155 | + |
| 156 | + builder.child("idx-a").setProperty("type", "lucene"); |
| 157 | + builder.child("idx-a").setProperty("async", asList("async", "nrt"), Type.STRINGS); |
| 158 | + |
| 159 | + store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY); |
| 160 | + |
| 161 | + IndexImporter importer = new IndexImporter(store, temporaryFolder.getRoot(), provider, NOOP_LOCK); |
| 162 | + importer.switchLanes(); |
| 163 | + |
| 164 | + NodeState idxa = NodeStateUtils.getNode(store.getRoot(), "/idx-a"); |
| 165 | + assertEquals(AsyncLaneSwitcher.getTempLaneName("elastic-async"), idxa.getString(ASYNC_PROPERTY_NAME)); |
| 166 | + assertEquals(idxa.getStrings(ASYNC_PREVIOUS), List.of("elastic-async")); |
| 167 | + } |
| 168 | + |
| 169 | + @Test |
| 170 | + public void switchLanesElasticToLucene() throws Exception{ |
| 171 | + NodeBuilder builder = store.getRoot().builder(); |
| 172 | + builder.child("idx-a").setProperty("type", "lucene"); |
| 173 | + builder.child("idx-a").setProperty("async", List.of("async"), Type.STRINGS); |
| 174 | + |
| 175 | + store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY); |
| 176 | + createIndexDirs("/idx-a"); |
| 177 | + |
| 178 | + builder.child("idx-a").setProperty("type", "elasticsearch"); |
| 179 | + builder.child("idx-a").setProperty("async", List.of("elastic-async"), Type.STRINGS); |
| 180 | + |
| 181 | + store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY); |
| 182 | + |
| 183 | + IndexImporter importer = new IndexImporter(store, temporaryFolder.getRoot(), provider, NOOP_LOCK); |
| 184 | + importer.switchLanes(); |
| 185 | + |
| 186 | + NodeState idxa = NodeStateUtils.getNode(store.getRoot(), "/idx-a"); |
| 187 | + assertEquals(AsyncLaneSwitcher.getTempLaneName("async"), idxa.getString(ASYNC_PROPERTY_NAME)); |
| 188 | + assertEquals(idxa.getStrings(ASYNC_PREVIOUS), List.of("async")); |
| 189 | + } |
| 190 | + |
145 | 191 | @Test(expected = NullPointerException.class)
|
146 | 192 | public void importData_NoProvider() throws Exception{
|
147 | 193 | NodeBuilder builder = store.getRoot().builder();
|
|
0 commit comments