Skip to content
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

[RFR] Skipping all binary analysis tests #716

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading