Skip to content

Commit

Permalink
Filtering test for issues by app name
Browse files Browse the repository at this point in the history
Signed-off-by: Igor Braginsky <[email protected]>
  • Loading branch information
ibragins committed Oct 26, 2023
1 parent 5977f31 commit 9bc396b
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 3 deletions.
89 changes: 89 additions & 0 deletions cypress/e2e/tests/migration/dynamic-reports/filter.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/*
Copyright © 2021 the Konveyor Contributors (https://konveyor.io/)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/// <reference types="cypress" />

import {
login,
getRandomApplicationData,
getRandomAnalysisData,
resetURL,
deleteByList,
checkSuccessAlert,
} from "../../../../utils/utils";
import { Analysis } from "../../../models/migration/applicationinventory/analysis";
import { CredentialType, UserCredentials, SEC, filterIssue } from "../../../types/constants";
import * as data from "../../../../utils/data_utils";
import { CredentialsSourceControlUsername } from "../../../models/administration/credentials/credentialsSourceControlUsername";
import { infoAlertMessage } from "../../../views/common.view";
import { Issue } from "../../../models/migration/dynamicreports/issue";
let sourceCredential: CredentialsSourceControlUsername;
let applicationsList: Array<Analysis> = [];

describe(["@tier2"], "Issues filtering", () => {
before("Login", function () {
login();

// Create source Credentials
sourceCredential = new CredentialsSourceControlUsername(
data.getRandomCredentialsData(
CredentialType.sourceControl,
UserCredentials.usernamePassword,
true
)
);
sourceCredential.create();
});

beforeEach("Load data", function () {
cy.fixture("application").then(function (appData) {
this.appData = appData;
});
cy.fixture("analysis").then(function (analysisData) {
this.analysisData = analysisData;
});

// Interceptors
cy.intercept("POST", "/hub/application*").as("postApplication");
cy.intercept("GET", "/hub/application*").as("getApplication");
});

it("Running analysis and filtering issues by app name", function () {
// For source code analysis application must have source code URL git or svn
cy.log(this.analysisData[0]);
const application = new Analysis(
getRandomApplicationData("bookserverApp", {
sourceData: this.appData["bookserver-app"],
}),
getRandomAnalysisData(this.analysisData["source_analysis_on_bookserverapp"])
);
application.create();
applicationsList.push(application);
cy.wait("@getApplication");
cy.wait(2 * SEC);
application.analyze();
checkSuccessAlert(infoAlertMessage, `Submitted for analysis`);
application.verifyAnalysisStatus("Completed");

Issue.openList();
Issue.filterBy(filterIssue.appName, application.name);
cy.pause();
});

after("Perform test data clean up", function () {
deleteByList(applicationsList);
sourceCredential.delete();
});
});
6 changes: 3 additions & 3 deletions cypress/e2e/views/issue.view.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const appFilterName = "#application.name-input";
export const bsFilterName = "#businessService.name-filter-value-select";
export const tagFilterName = "#tag.id-filter-value-select";
export const appFilterName = "#application\\.name-input";
export const bsFilterName = "#businessService\\.name-filter-value-select";
export const tagFilterName = "#tag\\.id-filter-value-select";
export const categoryFilterName = "#category-input";
export const sourceFilterName = "#source-input";
export const targetFilterName = "#target-input";

0 comments on commit 9bc396b

Please sign in to comment.