-
Notifications
You must be signed in to change notification settings - Fork 27
[MNT-25619] Allow to disable max transforms count and time checks #1244
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
Open
tiagosalvado10
wants to merge
2
commits into
master
Choose a base branch
from
fix/MNT-25619_allow-to-disable-max-transform-count-and-seconds-checks
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
139 changes: 139 additions & 0 deletions
139
engines/base/src/test/java/org/alfresco/transform/base/probes/ProbeTransformTest.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,139 @@ | ||
| /* | ||
| * #%L | ||
| * Alfresco Transform Core | ||
| * %% | ||
| * Copyright (C) 2005 - 2026 Alfresco Software Limited | ||
| * %% | ||
| * This file is part of the Alfresco software. | ||
| * - | ||
| * If the software was purchased under a paid Alfresco license, the terms of | ||
| * the paid license agreement will prevail. Otherwise, the software is | ||
| * provided under the following open source license terms: | ||
| * - | ||
| * Alfresco is free software: you can redistribute it and/or modify | ||
| * it under the terms of the GNU Lesser General Public License as published by | ||
| * the Free Software Foundation, either version 3 of the License, or | ||
| * (at your option) any later version. | ||
| * - | ||
| * Alfresco is distributed in the hope that it will be useful, | ||
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| * GNU Lesser General Public License for more details. | ||
| * - | ||
| * You should have received a copy of the GNU Lesser General Public License | ||
| * along with Alfresco. If not, see <http://www.gnu.org/licenses/>. | ||
| * #L% | ||
| */ | ||
| package org.alfresco.transform.base.probes; | ||
|
|
||
| import static org.junit.jupiter.api.Assertions.assertDoesNotThrow; | ||
| import static org.junit.jupiter.api.Assertions.assertThrows; | ||
|
|
||
| import java.util.Map; | ||
| import java.util.concurrent.atomic.AtomicLong; | ||
| import java.util.function.UnaryOperator; | ||
|
|
||
| import org.junit.jupiter.api.Test; | ||
| import org.springframework.test.util.ReflectionTestUtils; | ||
|
|
||
| import org.alfresco.transform.exceptions.TransformException; | ||
|
|
||
| class ProbeTransformTest | ||
| { | ||
| private static final long DEFAULT_MAX_TRANSFORMS = 1024; | ||
| private static final long DEFAULT_MAX_TRANSFORM_SECONDS = 120; | ||
|
|
||
| private ProbeTransform createProbe(long maxTransforms, long maxTransformSeconds) | ||
| { | ||
| return createProbe(maxTransforms, maxTransformSeconds, name -> null); | ||
| } | ||
|
|
||
| private ProbeTransform createProbe(long maxTransforms, long maxTransformSeconds, UnaryOperator<String> envReader) | ||
| { | ||
| return new ProbeTransform("probe.html", "text/html", "text/plain", Map.of(), | ||
| 107, 30, 150, maxTransforms, maxTransformSeconds, 600, envReader); | ||
| } | ||
|
|
||
| private void setTransformCount(ProbeTransform probe, long count) | ||
| { | ||
| ((AtomicLong) ReflectionTestUtils.getField(probe, "transformCount")).set(count); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformsIsZeroTransformCountCheckIsDisabled() | ||
| { | ||
| ProbeTransform probe = createProbe(0, DEFAULT_MAX_TRANSFORM_SECONDS); | ||
| setTransformCount(probe, Long.MAX_VALUE); | ||
|
|
||
| assertDoesNotThrow(() -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformsIsPositiveTransformCountCheckIsEnforced() | ||
| { | ||
| ProbeTransform probe = createProbe(5, DEFAULT_MAX_TRANSFORM_SECONDS); | ||
| setTransformCount(probe, 6); | ||
|
|
||
| assertThrows(TransformException.class, () -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformsEnvVarIsZeroItIsAcceptedAndDisablesCheck() | ||
| { | ||
| ProbeTransform probe = createProbe(DEFAULT_MAX_TRANSFORMS, DEFAULT_MAX_TRANSFORM_SECONDS, | ||
| name -> "maxTransforms".equals(name) ? "0" : null); | ||
| setTransformCount(probe, Long.MAX_VALUE); | ||
|
|
||
| assertDoesNotThrow(() -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformsEnvVarIsNegativeItFallsBackToDefault() | ||
| { | ||
| // env var "-1" is invalid, so default (5) is used and the check is enforced | ||
| ProbeTransform probe = createProbe(5, DEFAULT_MAX_TRANSFORM_SECONDS, | ||
| name -> "maxTransforms".equals(name) ? "-1" : null); | ||
| setTransformCount(probe, 6); | ||
|
|
||
| assertThrows(TransformException.class, () -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformSecondsIsZeroTimeCheckIsDisabled() | ||
| { | ||
| ProbeTransform probe = createProbe(DEFAULT_MAX_TRANSFORMS, 0); | ||
| probe.recordTransformTime(Long.MAX_VALUE); | ||
|
|
||
| assertDoesNotThrow(() -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformSecondsIsPositiveTimeCheckIsEnforced() | ||
| { | ||
| ProbeTransform probe = createProbe(DEFAULT_MAX_TRANSFORMS, 1); | ||
| probe.recordTransformTime(2000); | ||
|
|
||
| assertThrows(TransformException.class, () -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformSecondsEnvVarIsZeroItIsAcceptedAndDisablesCheck() | ||
| { | ||
| ProbeTransform probe = createProbe(DEFAULT_MAX_TRANSFORMS, DEFAULT_MAX_TRANSFORM_SECONDS, | ||
| name -> "maxTransformSeconds".equals(name) ? "0" : null); | ||
| probe.recordTransformTime(Long.MAX_VALUE); | ||
|
|
||
| assertDoesNotThrow(() -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
|
|
||
| @Test | ||
| void whenMaxTransformSecondsEnvVarIsNegativeItFallsBackToDefault() | ||
| { | ||
| // env var "-1" is invalid, so default (1 second) is used and the check is enforced | ||
| ProbeTransform probe = createProbe(DEFAULT_MAX_TRANSFORMS, 1, | ||
| name -> "maxTransformSeconds".equals(name) ? "-1" : null); | ||
| probe.recordTransformTime(2000); | ||
|
|
||
| assertThrows(TransformException.class, () -> probe.doTransformOrNothing(true, null)); | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.