-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TSPS-401 add output expiration date to getPipelineRunResult response (#…
…187) Co-authored-by: Jose Soto <[email protected]>
- Loading branch information
1 parent
2815981
commit 1137821
Showing
14 changed files
with
111 additions
and
77 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
20 changes: 20 additions & 0 deletions
20
...est/java/bio/terra/pipelines/configuration/internal/PipelinesCommonConfigurationTest.java
This file contains 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,20 @@ | ||
package bio.terra.pipelines.configuration.internal; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
import bio.terra.pipelines.app.configuration.internal.PipelinesCommonConfiguration; | ||
import bio.terra.pipelines.testutils.BaseEmbeddedDbTest; | ||
import org.junit.jupiter.api.Test; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
|
||
class PipelinesCommonConfigurationTest extends BaseEmbeddedDbTest { | ||
|
||
@Autowired private PipelinesCommonConfiguration pipelinesCommonConfiguration; | ||
|
||
@Test | ||
void testPipelinesCommonConfiguration() { | ||
assertEquals(1, pipelinesCommonConfiguration.getQuotaConsumedPollingIntervalSeconds()); | ||
assertTrue(pipelinesCommonConfiguration.isQuotaConsumedUseCallCaching()); | ||
assertEquals(2, pipelinesCommonConfiguration.getUserDataTtlDays()); | ||
} | ||
} |
Oops, something went wrong.