/tests/com/splunk/ExportResultsReaderTest.java

http://github.com/splunk/splunk-sdk-java · Java · 113 lines · 72 code · 17 blank · 24 comment · 5 complexity · 542870d8ec5003e5b3ff85883316e5f0 MD5 · raw file

  1. /*
  2. * Copyright 2012 Splunk, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"): you may
  5. * not use this file except in compliance with the License. You may obtain
  6. * a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations
  14. * under the License.
  15. */
  16. package com.splunk;
  17. import com.google.gson.Gson;
  18. import org.junit.Test;
  19. import org.junit.runner.RunWith;
  20. import org.junit.runners.Parameterized;
  21. import javax.xml.stream.XMLStreamException;
  22. import java.io.IOException;
  23. import java.io.InputStream;
  24. import java.util.*;
  25. import static junit.framework.TestCase.assertNotNull;
  26. /**
  27. * Test loading of data from the export endpoints.
  28. *
  29. * All the relevant data is in the data/export/ directory (for raw XML to be parsed)
  30. * and the data/export_test_data.json file (for the expected results of parsing).
  31. */
  32. @RunWith(Parameterized.class)
  33. public class ExportResultsReaderTest {
  34. private static Gson reader = new Gson();
  35. private static Map<String, Object> expectedData = reader.fromJson(
  36. SDKTestCase.streamToString(
  37. SDKTestCase.openResource(
  38. "data/export_test_data.json")),
  39. Map.class
  40. );
  41. private String version;
  42. public ExportResultsReaderTest(String version) {
  43. this.version = version;
  44. }
  45. @Parameterized.Parameters(name="from version {0}")
  46. public static Collection<Object[]> testCases() {
  47. Collection<Object[]> cases = new ArrayList<Object[]>();
  48. for (String version : (Set<String>)expectedData.keySet()) {
  49. cases.add(new Object[] {version});
  50. }
  51. return cases;
  52. }
  53. @Test
  54. public void testExportWithoutPreview() throws IOException, XMLStreamException {
  55. Map<String, Object> thisVersion = (Map<String, Object>)expectedData.get(this.version);
  56. if (!thisVersion.containsKey("without_preview")) {
  57. return; // No test case
  58. }
  59. Map<String, Object> expectedResultsSet = (Map<String, Object>)thisVersion.get("without_preview");
  60. List<Map<String, Object>> expectedEvents = (List<Map<String, Object>>)expectedResultsSet.get("results");
  61. InputStream xmlStream = new ExportResultsStream(
  62. SDKTestCase.openResource(
  63. "data/export/" + this.version + "/export_results.xml"));
  64. ResultsReaderXml resultsReader = new ResultsReaderXml(xmlStream);
  65. ResultsReaderTestFromExpectedFile.verifyResultsReader(resultsReader, expectedEvents);
  66. }
  67. @Test
  68. public void testExportWithPreview() throws IOException {
  69. Map<String, Object> thisVersion = (Map<String, Object>)expectedData.get(this.version);
  70. if (!thisVersion.containsKey("with_preview")) {
  71. return; // No test case
  72. }
  73. List<Map<String, Object>> expectedResultsSets = (List<Map<String, Object>>)thisVersion.get("with_preview");
  74. InputStream xmlStream = SDKTestCase.openResource(
  75. "data/export/" + this.version + "/export_results.xml");
  76. // Some kind of results reader here...
  77. for (Map<String, Object> expectedResultsSet : expectedResultsSets) {
  78. assertNotNull(expectedResultsSet);
  79. // check that this results set matches the corresponding part of the reader
  80. }
  81. }
  82. @Test
  83. public void testExportNonreporting() throws IOException, XMLStreamException {
  84. // TODO: This test fails on Windows due to XML attributes being out of order
  85. Map<String, Object> thisVersion = (Map<String, Object>)expectedData.get(this.version);
  86. if (!thisVersion.containsKey("nonreporting")) {
  87. return; // No test case
  88. }
  89. Map<String, Object> expectedResultsSet = (Map<String, Object>)thisVersion.get("nonreporting");
  90. List<Map<String, Object>> expectedEvents = (List<Map<String, Object>>)expectedResultsSet.get("results");
  91. InputStream xmlStream = SDKTestCase.openResource(
  92. "data/export/" + this.version + "/nonreporting.xml");
  93. ResultsReaderXml resultsReader = new ResultsReaderXml(xmlStream);
  94. ResultsReaderTestFromExpectedFile.verifyResultsReader(resultsReader, expectedEvents);
  95. }
  96. }