Skip to content

Commit

Permalink
Merge branch 'master' into userv2-endpoint-auth-check
Browse files Browse the repository at this point in the history
  • Loading branch information
ibodrov authored Nov 15, 2024
2 parents ef30bd3 + 69215c0 commit c053b3f
Show file tree
Hide file tree
Showing 12 changed files with 48 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,16 @@ public static ConcordRule configure() {
.streamAgentLogs(true)
.sharedContainerDir(sharedDir)
.useLocalMavenRepository(true)
.extraConfigurationSupplier(() -> "concord-agent { prefork { enabled = true } }");
.extraConfigurationSupplier(() -> """
concord-agent {
dependencyResolveTimeout = "5 seconds"
logMaxDelay = "250 milliseconds"
pollInterval = "250 milliseconds"
prefork {
enabled = true
}
}
""");

boolean localMode = Boolean.parseBoolean(System.getProperty("it.local.mode"));
if (localMode) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class CryptoIT extends AbstractTest {

@RegisterExtension
public final ConcordRule concord = ConcordConfiguration.configure();
public static final ConcordRule concord = ConcordConfiguration.configure();

/**
* Tests various methods of the 'crypto' plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
public class FormIT extends AbstractTest {

@RegisterExtension
public final ConcordRule concord = ConcordConfiguration.configure();
public static final ConcordRule concord = ConcordConfiguration.configure();

/**
* A straightforward single form process.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
public class ImportsIT extends AbstractTest {

@RegisterExtension
public final ConcordRule concord = ConcordConfiguration.configure()
public static final ConcordRule concord = ConcordConfiguration.configure()
.extraConfigurationSupplier(() -> "concord-server { imports { disabledProcessors = [] } }\n" +
"concord-agent { imports { disabledProcessors = [] } }");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
public class JsonStoreIT extends AbstractTest {

@RegisterExtension
public final ConcordRule concord = ConcordConfiguration.configure();
public static final ConcordRule concord = ConcordConfiguration.configure();

/**
* Tests various methods of the 'jsonStore' plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
public class KvTaskIT extends AbstractTest {

@RegisterExtension
public final ConcordRule concord = ConcordConfiguration.configure();
public static final ConcordRule concord = ConcordConfiguration.configure();

/**
* Tests various methods of the 'kv' plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
public class NodeRosterIT extends AbstractTest {

@RegisterExtension
public final ConcordRule concord = ConcordConfiguration.configure();
public static final ConcordRule concord = ConcordConfiguration.configure();

/**
* Tests various methods of the 'noderoster' plugin.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,11 @@
public class SmtpIT extends AbstractTest {

@RegisterExtension
GreenMailExtension mailServer = new GreenMailExtension(new ServerSetup(0, "0.0.0.0", ServerSetup.PROTOCOL_SMTP));
public static final GreenMailExtension mailServer = new GreenMailExtension(new ServerSetup(0, "0.0.0.0", ServerSetup.PROTOCOL_SMTP))
.withPerMethodLifecycle(false);

@RegisterExtension
public final ConcordRule concord = ConcordConfiguration.configure()
public static final ConcordRule concord = ConcordConfiguration.configure()
.containerListener(new ContainerListener() {
@Override
public void beforeStart(ContainerType type) {
Expand Down
4 changes: 4 additions & 0 deletions it/server/src/test/resources/agent.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
concord-agent {

dependencyResolveTimeout = "5 seconds"
logMaxDelay = "250 milliseconds"
pollInterval = "250 milliseconds"

prefork {
enabled = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import java.util.ArrayList;
import java.util.List;
import java.util.TimerTask;
import java.util.UUID;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.Executors;
import java.util.concurrent.LinkedBlockingQueue;
Expand All @@ -53,14 +54,17 @@ public class DefaultEventReportingService implements EventReportingService, Exec
private final int maxBatchSize;
private final Object batchLock = new Object();
private final ScheduledExecutorService flushScheduler;
private final PersistenceService persistenceService;

@Inject
public DefaultEventReportingService(InstanceId instanceId,
ProcessConfiguration processConfiguration,
ApiClient apiClient) {
ApiClient apiClient,
PersistenceService persistenceService) {
this.instanceId = instanceId;
this.processEventsApi = new ProcessEventsApi(apiClient);
this.maxBatchSize = processConfiguration.events().batchSize();
this.persistenceService = persistenceService;
this.eventQueue = initializeQueue(maxBatchSize);
this.flushScheduler = Executors.newSingleThreadScheduledExecutor();

Expand Down Expand Up @@ -132,6 +136,9 @@ private void sendBatch(List<ProcessEventRequest> eventBatch) {
try {
getProcessEventsApi().batchEvent(instanceId.getValue(), eventBatch);
} catch (ApiException e) {
for (var event: eventBatch) {
saveEvent(event);
}
log.warn("Error while sending batch of {} event{} to the server: {}",
eventBatch.size(), eventBatch.isEmpty() ? "" : "s", e.getMessage());
}
Expand All @@ -141,6 +148,7 @@ private void sendSingle(ProcessEventRequest req) {
try {
getProcessEventsApi().event(instanceId.getValue(), req);
} catch (ApiException e) {
saveEvent(req);
log.warn("error while sending an event to the server: {}", e.getMessage());
}
}
Expand Down Expand Up @@ -171,4 +179,11 @@ public void run() {
}
}

private void saveEvent(ProcessEventRequest event) {
try {
persistenceService.persistFile("invalid_event_" + UUID.randomUUID() + ".json", out -> processEventsApi.getApiClient().getObjectMapper().writeValue(out, event));
} catch (Exception e) {
log.warn("can't save event", e);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand Down Expand Up @@ -81,7 +81,7 @@ private static class MockedEventReportingService extends DefaultEventReportingSe
private final AtomicInteger flushCounter;

public MockedEventReportingService(ProcessConfiguration processConfiguration) {
super(new InstanceId(UUID.randomUUID()), processConfiguration, mock(ApiClient.class));
super(new InstanceId(UUID.randomUUID()), processConfiguration, mock(ApiClient.class), mock(PersistenceService.class));
this.mockProcessEventsApi = mock(ProcessEventsApi.class);
this.flushCounter = new AtomicInteger();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand All @@ -29,6 +29,7 @@
import javax.inject.Singleton;
import java.io.IOException;
import java.util.Map;
import java.util.regex.Pattern;

@Named
@Singleton
Expand All @@ -37,6 +38,8 @@ public class ConcordObjectMapper {
public static final TypeReference<Map<String, Object>> MAP_TYPE = new TypeReference<Map<String, Object>>() {
};

private static final Pattern CONTROL_CHARS = Pattern.compile("[\\x00-\\x1F]");

private final ObjectMapper delegate;

@Inject
Expand Down Expand Up @@ -113,7 +116,7 @@ public <T> T fromString(String s, Class<T> valueType) {
}

private static String removeUnsupportedEscape(String str) {
return str.replace("\\u0000", "");
return CONTROL_CHARS.matcher(str).replaceAll("");
}

private <T> T deserialize(String o, TypeReference<T> valueTypeRef) {
Expand Down

0 comments on commit c053b3f

Please sign in to comment.