View Javadoc

1   package org.kuali.ole.docstore.process;
2   
3   import org.junit.Before;
4   import org.junit.Test;
5   import org.kuali.ole.BaseTestCase;
6   import org.kuali.ole.OleDocStoreData;
7   import org.kuali.ole.RepositoryBrowser;
8   import org.kuali.ole.docstore.metrics.reindex.ReIndexingBatchStatus;
9   import org.kuali.ole.docstore.metrics.reindex.ReIndexingDocTypeStatus;
10  import org.kuali.ole.docstore.metrics.reindex.ReIndexingStatus;
11  import org.kuali.ole.docstore.model.enums.DocCategory;
12  import org.kuali.ole.docstore.model.enums.DocFormat;
13  import org.kuali.ole.docstore.model.enums.DocType;
14  import org.slf4j.Logger;
15  import org.slf4j.LoggerFactory;
16  
17  import java.util.Iterator;
18  import java.util.List;
19  import java.util.Map;
20  import java.util.Set;
21  
22  import static org.junit.Assert.fail;
23  
24  /**
25   * Class to test RebuildIndexesHandler.
26   *
27   * @author Rajesh Chowdary K
28   * @created May 2, 2012
29   */
30  public class RebuildIndexesHandler_UT extends BaseTestCase {
31  
32      private static final Logger LOG = LoggerFactory.getLogger(RebuildIndexesHandler_UT.class);
33  
34      @Before
35      public void setUp() throws Exception {
36          System.setProperty("OLE_DOCSTORE_USE_DISCOVERY", Boolean.TRUE.toString());
37      }
38  
39      @Test
40      public void testRebuildIndexesForMarc() {
41          try {
42              RebuildIndexesHandler reBuilder = RebuildIndexesHandler.getInstance();
43              String category = DocCategory.WORK.getCode();
44              String type = DocType.INSTANCE.getDescription();
45              String format = DocFormat.MARC.getCode();
46              reBuilder.startProcess(null,null,null);
47              reBuilder.run();
48              reBuilder.stopProcess();
49              reBuilder.startProcess(category,type,format);
50              reBuilder.run();
51              reBuilder.stopProcess();
52          }
53          catch (Exception e) {
54              LOG.info(e.getMessage());
55              fail();
56          }
57      }
58  
59      @Test
60      public void testReIndexingBatchStatus(){
61          ReIndexingBatchStatus reIndexingBatchStatus = new  ReIndexingBatchStatus();
62          reIndexingBatchStatus.setBatchEndTime(reIndexingBatchStatus.getBatchEndTime());
63          reIndexingBatchStatus.setBatchIndexingTime(reIndexingBatchStatus.getBatchIndexingTime());
64          reIndexingBatchStatus.setBatchLoadTime(reIndexingBatchStatus.getBatchLoadTime());
65          reIndexingBatchStatus.setBatchStartTime(reIndexingBatchStatus.getBatchStartTime());
66          reIndexingBatchStatus.setBatchTotalTime(reIndexingBatchStatus.getBatchTotalTime());
67          reIndexingBatchStatus.setRecordsProcessed(reIndexingBatchStatus.getRecordsProcessed());
68          reIndexingBatchStatus.setRecordsRemaining(reIndexingBatchStatus.getRecordsRemaining());
69          reIndexingBatchStatus.setStatus(reIndexingBatchStatus.getStatus());
70      }
71  
72      @Test
73      public void testReIndexingStatus(){
74          ReIndexingStatus reIndexingStatus = ReIndexingStatus.getInstance();
75          reIndexingStatus.reset();
76          reIndexingStatus.getDocTypeList();
77          String docType=null;
78          String docFormat=null;
79          String category=null;
80          reIndexingStatus.startDocType(category,docType,docFormat);
81          reIndexingStatus.getDocTypeList();
82          reIndexingStatus.setReIndTypStatusList(reIndexingStatus.getReIndTypStatusList());
83          reIndexingStatus.getJsonString();
84          reIndexingStatus.toString();
85      }
86  
87      @Test
88      public void testReIndexingDocTypeStatus() {
89          ReIndexingDocTypeStatus reIndexingDocTypeStatus = new ReIndexingDocTypeStatus();
90          reIndexingDocTypeStatus.getDocCategory();
91          reIndexingDocTypeStatus.setReIndBatStatusList(reIndexingDocTypeStatus.getReIndBatStatusList());
92          reIndexingDocTypeStatus.getDocCategory();
93          reIndexingDocTypeStatus.getDocFormat();
94          reIndexingDocTypeStatus.getDocType();
95          reIndexingDocTypeStatus.getStatus();
96      }
97  
98  }