Skip to content

Commit

Permalink
Skipping all binary analysis tests (#716)
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Braginsky <[email protected]>
  • Loading branch information
ibragins authored Sep 12, 2023
1 parent 5a8f49e commit 7e75544
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/tests/administration/repository/maven.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe(["@tier1"], "Test secure and insecure maven repository analysis", () =>
resetURL();
});

it("Bug MTA-1183 | Binary analysis with maven containing http url when insecure repository is allowed", function () {
it.skip("Bug MTA-1183 | Binary analysis with maven containing http url when insecure repository is allowed", function () {
mavenConfiguration.enableInsecureMavenRepositories();

// For tackle test app source credentials are required.
Expand All @@ -101,7 +101,7 @@ describe(["@tier1"], "Test secure and insecure maven repository analysis", () =>
application.openReport();
});

it("Bug MTA-1183 | Binary analysis with maven containing http url when insecure repository is not allowed", function () {
it.skip("Bug MTA-1183 | Binary analysis with maven containing http url when insecure repository is not allowed", function () {
// The following test case should verify if the analysis is failed rather than completed,
// but due to how maven structure works it will always pick the ( http ) link as ( https )
// which means, it will always pass regardless if the insecure toggle is disabled or not
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe(["@tier1"], "Binary Analysis", () => {
resetURL();
});

it("Bug MTA-1183 | Binary Analysis", function () {
it.skip("Bug MTA-1183 | Binary Analysis", function () {
// For binary analysis application must have group,artifcat and version.
application = new Analysis(
getRandomApplicationData("tackletestApp_binary", {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ describe(["@tier1"], "Upload Binary Analysis", () => {
application.verifyAnalysisStatus("Completed");
});

it("Bug MTA-1175 | Custom rules with custom targets", function () {
it.skip("Bug MTA-1175 | Custom rules with custom targets", function () {
// Automated https://issues.redhat.com/browse/TACKLE-561
const application = new Analysis(
getRandomApplicationData("customRule_customTarget"),
Expand All @@ -78,7 +78,7 @@ describe(["@tier1"], "Upload Binary Analysis", () => {
application.verifyAnalysisStatus("Completed");
});

it("Bug MTA-1175 | DIVA report generation", function () {
it.skip("Bug MTA-1175 | DIVA report generation", function () {
const application = new Analysis(
getRandomApplicationData("DIVA"),
getRandomAnalysisData(this.analysisData["analysis_for_DIVA-report"])
Expand All @@ -92,7 +92,7 @@ describe(["@tier1"], "Upload Binary Analysis", () => {
application.verifyAnalysisStatus("Completed");
});

it("Bug MTA-1175 | Analysis for jee-example-app upload binary ", function () {
it.skip("Bug MTA-1175 | Analysis for jee-example-app upload binary ", function () {
const application = new Analysis(
getRandomApplicationData("uploadBinary"),
getRandomAnalysisData(
Expand All @@ -107,7 +107,7 @@ describe(["@tier1"], "Upload Binary Analysis", () => {
application.verifyAnalysisStatus("Completed");
});

it("Bug MTA-1175 | Analysis for camunda-bpm-spring-boot-starter", function () {
it.skip("Bug MTA-1175 | Analysis for camunda-bpm-spring-boot-starter", function () {
const application = new Analysis(
getRandomApplicationData("uploadBinary"),
getRandomAnalysisData(this.analysisData["analysis_and_incident_validation_camunda_app"])
Expand All @@ -120,7 +120,7 @@ describe(["@tier1"], "Upload Binary Analysis", () => {
application.verifyAnalysisStatus("Completed");
});

it("Bug MTA-1175 | Analysis for complete-duke app upload binary ", function () {
it.skip("Bug MTA-1175 | Analysis for complete-duke app upload binary ", function () {
const application = new Analysis(
getRandomApplicationData("uploadBinary"),
getRandomAnalysisData(
Expand All @@ -135,7 +135,7 @@ describe(["@tier1"], "Upload Binary Analysis", () => {
application.verifyAnalysisStatus("Completed");
});

it("Bug MTA-1175 | Analysis for kafka-clients-sb app ", function () {
it.skip("Bug MTA-1175 | Analysis for kafka-clients-sb app ", function () {
const application = new Analysis(
getRandomApplicationData("uploadBinary"),
getRandomAnalysisData(this.analysisData["analysis_and_incident_validation_kafka-app"])
Expand Down

0 comments on commit 7e75544

Please sign in to comment.