Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#738 allowing for trace URIs with extensions #745

Merged
merged 1 commit into from
Feb 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,23 @@
package com.marklogic.quickstart.service;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.marklogic.client.DatabaseClient;
import com.marklogic.client.document.DocumentPage;
import com.marklogic.client.document.DocumentRecord;
import com.marklogic.client.document.GenericDocumentManager;
import com.marklogic.client.document.ServerTransform;
import com.marklogic.client.io.Format;
import com.marklogic.client.io.StringHandle;
import com.marklogic.client.io.marker.JSONReadHandle;
import com.marklogic.client.query.QueryManager;
import com.marklogic.client.query.RawCombinedQueryDefinition;
import com.marklogic.client.query.StructuredQueryBuilder;
import com.marklogic.client.query.StructuredQueryDefinition;
import com.marklogic.quickstart.exception.DataHubException;
import com.marklogic.quickstart.model.TraceQuery;

import java.io.IOException;
import java.util.ArrayList;

public class TraceService extends SearchableService {
Expand Down Expand Up @@ -87,6 +93,23 @@ public StringHandle getTraces(TraceQuery traceQuery) {
}

public JsonNode getTrace(String traceId) {
return docMgr.readAs("/" + traceId, JsonNode.class, new ServerTransform("ml:traceUISearchResults"));
// Traces can be .json or .xml. Legacy traces may not have an extension. Figure out what we have.
DocumentPage docs = this.docMgr.read(
new ServerTransform("ml:traceUISearchResults"),
"/" + traceId, "/" + traceId + ".json", "/" + traceId + ".xml");

if (docs.size() < 1) {
throw new DataHubException("Could not find traceId " + traceId, null);
}

ObjectMapper mapper = new ObjectMapper();
StringHandle traceStr = docs.nextContent(new StringHandle());
JsonNode result = null;
try {
result = mapper.readTree(traceStr.toString());
} catch (IOException e) {
e.printStackTrace();
}
return result;
}
}
Original file line number Diff line number Diff line change
@@ -1,28 +1,115 @@
package com.marklogic.quickstart.service;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.marklogic.client.DatabaseClient;
import com.marklogic.client.DatabaseClientFactory;
import com.marklogic.client.io.StringHandle;
import com.marklogic.hub.HubConfig;
import com.marklogic.hub.HubConfigBuilder;
import com.marklogic.hub.HubTestBase;
import com.marklogic.hub.flow.*;
import com.marklogic.hub.scaffold.Scaffolding;
import com.marklogic.quickstart.auth.ConnectionAuthenticationToken;
import com.marklogic.quickstart.model.EnvironmentConfig;
import com.marklogic.quickstart.model.TraceQuery;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.*;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.test.context.junit4.SpringRunner;

import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.HashMap;

@RunWith(SpringRunner.class)
@SpringBootTest()
public class TraceServiceTest extends HubTestBase {

private DatabaseClient traceClient;
private static Path projectDir = Paths.get(".", PROJECT_PATH);
private static String ENTITY = "test-entity";

@Autowired
FlowManagerService flowMgrService;

public TraceServiceTest() {
traceClient = DatabaseClientFactory.newClient("localhost", 8012, "admin", "admin", DatabaseClientFactory.Authentication.DIGEST);
}

@BeforeClass
public static void setup() throws IOException {
public static void setupClass() throws IOException {

EnvironmentConfig envConfig = new EnvironmentConfig(projectDir.toString(), "local", "admin", "admin");
envConfig.setMlSettings(HubConfigBuilder.newHubConfigBuilder(projectDir.toString()).withPropertiesFromEnvironment().build());
envConfig.checkIfInstalled();
setEnvConfig(envConfig);

deleteProjectDir();
installHub();

enableTracing();

Scaffolding scaffolding = new Scaffolding(projectDir.toString(), stagingClient);
scaffolding.createEntity(ENTITY);
scaffolding.createFlow(ENTITY, "sjs-json-harmonize-flow", FlowType.HARMONIZE,
CodeFormat.JAVASCRIPT, DataFormat.JSON);

scaffolding.createFlow(ENTITY, "xqy-xml-harmonize-flow", FlowType.HARMONIZE,
CodeFormat.XQUERY, DataFormat.XML);

installUserModules(getHubConfig(), true);

}

@AfterClass
public static void teardown() {
uninstallHub();
}

@Before
public void setUp() throws IOException {
clearDatabases(HubConfig.DEFAULT_STAGING_NAME, HubConfig.DEFAULT_FINAL_NAME, HubConfig.DEFAULT_TRACE_NAME, HubConfig.DEFAULT_JOB_NAME);

final String FLOW_NAME = "sjs-json-harmonize-flow";
Flow flow = flowMgrService.getServerFlow(ENTITY, FLOW_NAME, FlowType.HARMONIZE);
flowMgrService.runFlow(flow, 1, 1, new HashMap<String, Object>(), (jobId, percentComplete, message) -> { });
}

private static void setEnvConfig(EnvironmentConfig envConfig) {
ConnectionAuthenticationToken authenticationToken = new ConnectionAuthenticationToken("admin", "admin", "localhost", 1, "local");
authenticationToken.setEnvironmentConfig(envConfig);
SecurityContextHolder.getContext().setAuthentication(authenticationToken);
}

@Test
public void getTraces() {
DatabaseClient traceClient = DatabaseClientFactory.newClient("localhost", 8012, "admin", "admin", DatabaseClientFactory.Authentication.DIGEST);
TraceService tm = new TraceService(traceClient);
TraceQuery traceQuery = new TraceQuery();
traceQuery.start = new Long(1);
traceQuery.count = new Long(10);
traceQuery.start = 1L;
traceQuery.count = 10L;
tm.getTraces(traceQuery);
}

@Test
public void getTrace() throws IOException {
TraceService tm = new TraceService(traceClient);
TraceQuery traceQuery = new TraceQuery();
traceQuery.start = 1L;
traceQuery.count = 1L;
StringHandle traces = tm.getTraces(traceQuery);

String resultStr = traces.toString();
ObjectMapper mapper = new ObjectMapper();
JsonNode node = mapper.readTree(resultStr);
JsonNode results = node.findValue("results");
String traceId = results.get(0).findValue("content").findValue("traceId").asText();

JsonNode trace = tm.getTrace(traceId);
Assert.assertNotNull(trace);
Assert.assertEquals(traceId, trace.findValue("traceId").asText());
}
}