Skip to content

Commit

Permalink
3.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhukovAN committed Dec 21, 2021
1 parent fa72566 commit ef10e69
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
+ [Feature] Support for PT AI 3.6.5.1541 added
### 20211102
+ [Fix] Integration tests for incremental scans are removed as those may fail
+ [Feature] Jenkins plugin "fail-if-failed" / "Fail-if-unstable" and reports generation are merged to single UI that allows to manually define set of post-AST actions including reports generation, policy processing etc.
+ [Feature] Jenkins plugin "fail-if-failed" / "fail-if-unstable" and reports generation are merged to single UI that allows to manually define set of post-AST actions including reports generation, policy processing etc.
### 20211125
+ [Fix] SignalR version changed to 6.0.0
+ [Feature] SARIF report generation added to Jenkins plugin
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ systemProp.org.gradle.internal.publish.checksums.insecure=true

rootGroup=com.ptsecurity.appsec.ai.ee.utils.ci.integration
# version=3.6.4-RC1-SNAPSHOT
version=3.6.4
version=3.6.5
junitVersion=5.7.0
slf4jVersion=1.7.30
# jenkinsVersion=2.150.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,19 @@ public void createDeleteMultipleProjectsByRegexp() {
for (Pair<String, UUID> project : projects)
Assertions.assertNull(projectTasks.searchProject(project.getLeft()));
}

@Test
@DisplayName("Delete all junit-GUID-like projects")
public void deleteAllTestProjects() {
Integer res = new CommandLine(new Plugin()).execute(
"delete-project",
"--project-name-regexp", "junit-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}",
"--yes",
"--url", URL,
"--truststore", PEM.toString(),
"--user", USER,
"--password", PASSWORD);
Assertions.assertEquals(BaseCommand.ExitCode.SUCCESS.getCode(), res);
}

}

0 comments on commit ef10e69

Please sign in to comment.