commit ce1fb0b1fee03584555c92f0b97b0ddebdd2d361 Author: Krishna Date: Wed Sep 23 11:37:27 2020 +0530 First Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/.mvn/wrapper/MavenWrapperDownloader.java b/.mvn/wrapper/MavenWrapperDownloader.java new file mode 100644 index 0000000..e76d1f3 --- /dev/null +++ b/.mvn/wrapper/MavenWrapperDownloader.java @@ -0,0 +1,117 @@ +/* + * Copyright 2007-present the original author or authors. + * + * 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 + * + * https://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. + */ +import java.net.*; +import java.io.*; +import java.nio.channels.*; +import java.util.Properties; + +public class MavenWrapperDownloader { + + private static final String WRAPPER_VERSION = "0.5.6"; + /** + * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided. + */ + private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/" + + WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar"; + + /** + * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to + * use instead of the default one. + */ + private static final String MAVEN_WRAPPER_PROPERTIES_PATH = + ".mvn/wrapper/maven-wrapper.properties"; + + /** + * Path where the maven-wrapper.jar will be saved to. + */ + private static final String MAVEN_WRAPPER_JAR_PATH = + ".mvn/wrapper/maven-wrapper.jar"; + + /** + * Name of the property which should be used to override the default download url for the wrapper. + */ + private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl"; + + public static void main(String args[]) { + System.out.println("- Downloader started"); + File baseDirectory = new File(args[0]); + System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath()); + + // If the maven-wrapper.properties exists, read it and check if it contains a custom + // wrapperUrl parameter. + File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH); + String url = DEFAULT_DOWNLOAD_URL; + if(mavenWrapperPropertyFile.exists()) { + FileInputStream mavenWrapperPropertyFileInputStream = null; + try { + mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile); + Properties mavenWrapperProperties = new Properties(); + mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream); + url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url); + } catch (IOException e) { + System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'"); + } finally { + try { + if(mavenWrapperPropertyFileInputStream != null) { + mavenWrapperPropertyFileInputStream.close(); + } + } catch (IOException e) { + // Ignore ... + } + } + } + System.out.println("- Downloading from: " + url); + + File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH); + if(!outputFile.getParentFile().exists()) { + if(!outputFile.getParentFile().mkdirs()) { + System.out.println( + "- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'"); + } + } + System.out.println("- Downloading to: " + outputFile.getAbsolutePath()); + try { + downloadFileFromURL(url, outputFile); + System.out.println("Done"); + System.exit(0); + } catch (Throwable e) { + System.out.println("- Error downloading"); + e.printStackTrace(); + System.exit(1); + } + } + + private static void downloadFileFromURL(String urlString, File destination) throws Exception { + if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) { + String username = System.getenv("MVNW_USERNAME"); + char[] password = System.getenv("MVNW_PASSWORD").toCharArray(); + Authenticator.setDefault(new Authenticator() { + @Override + protected PasswordAuthentication getPasswordAuthentication() { + return new PasswordAuthentication(username, password); + } + }); + } + URL website = new URL(urlString); + ReadableByteChannel rbc; + rbc = Channels.newChannel(website.openStream()); + FileOutputStream fos = new FileOutputStream(destination); + fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE); + fos.close(); + rbc.close(); + } + +} diff --git a/.mvn/wrapper/maven-wrapper.jar b/.mvn/wrapper/maven-wrapper.jar new file mode 100644 index 0000000..2cc7d4a Binary files /dev/null and b/.mvn/wrapper/maven-wrapper.jar differ diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties new file mode 100644 index 0000000..642d572 --- /dev/null +++ b/.mvn/wrapper/maven-wrapper.properties @@ -0,0 +1,2 @@ +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip +wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git a/mvnw b/mvnw new file mode 100644 index 0000000..a16b543 --- /dev/null +++ b/mvnw @@ -0,0 +1,310 @@ +#!/bin/sh +# ---------------------------------------------------------------------------- +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you 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 +# +# https://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. +# ---------------------------------------------------------------------------- + +# ---------------------------------------------------------------------------- +# Maven Start Up Batch script +# +# Required ENV vars: +# ------------------ +# JAVA_HOME - location of a JDK home dir +# +# Optional ENV vars +# ----------------- +# M2_HOME - location of maven2's installed home dir +# MAVEN_OPTS - parameters passed to the Java VM when running Maven +# e.g. to debug Maven itself, use +# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +# MAVEN_SKIP_RC - flag to disable loading of mavenrc files +# ---------------------------------------------------------------------------- + +if [ -z "$MAVEN_SKIP_RC" ] ; then + + if [ -f /etc/mavenrc ] ; then + . /etc/mavenrc + fi + + if [ -f "$HOME/.mavenrc" ] ; then + . "$HOME/.mavenrc" + fi + +fi + +# OS specific support. $var _must_ be set to either true or false. +cygwin=false; +darwin=false; +mingw=false +case "`uname`" in + CYGWIN*) cygwin=true ;; + MINGW*) mingw=true;; + Darwin*) darwin=true + # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home + # See https://developer.apple.com/library/mac/qa/qa1170/_index.html + if [ -z "$JAVA_HOME" ]; then + if [ -x "/usr/libexec/java_home" ]; then + export JAVA_HOME="`/usr/libexec/java_home`" + else + export JAVA_HOME="/Library/Java/Home" + fi + fi + ;; +esac + +if [ -z "$JAVA_HOME" ] ; then + if [ -r /etc/gentoo-release ] ; then + JAVA_HOME=`java-config --jre-home` + fi +fi + +if [ -z "$M2_HOME" ] ; then + ## resolve links - $0 may be a link to maven's home + PRG="$0" + + # need this for relative symlinks + while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG="`dirname "$PRG"`/$link" + fi + done + + saveddir=`pwd` + + M2_HOME=`dirname "$PRG"`/.. + + # make it fully qualified + M2_HOME=`cd "$M2_HOME" && pwd` + + cd "$saveddir" + # echo Using m2 at $M2_HOME +fi + +# For Cygwin, ensure paths are in UNIX format before anything is touched +if $cygwin ; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --unix "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --unix "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --unix "$CLASSPATH"` +fi + +# For Mingw, ensure paths are in UNIX format before anything is touched +if $mingw ; then + [ -n "$M2_HOME" ] && + M2_HOME="`(cd "$M2_HOME"; pwd)`" + [ -n "$JAVA_HOME" ] && + JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`" +fi + +if [ -z "$JAVA_HOME" ]; then + javaExecutable="`which javac`" + if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then + # readlink(1) is not available as standard on Solaris 10. + readLink=`which readlink` + if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then + if $darwin ; then + javaHome="`dirname \"$javaExecutable\"`" + javaExecutable="`cd \"$javaHome\" && pwd -P`/javac" + else + javaExecutable="`readlink -f \"$javaExecutable\"`" + fi + javaHome="`dirname \"$javaExecutable\"`" + javaHome=`expr "$javaHome" : '\(.*\)/bin'` + JAVA_HOME="$javaHome" + export JAVA_HOME + fi + fi +fi + +if [ -z "$JAVACMD" ] ; then + if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + else + JAVACMD="`which java`" + fi +fi + +if [ ! -x "$JAVACMD" ] ; then + echo "Error: JAVA_HOME is not defined correctly." >&2 + echo " We cannot execute $JAVACMD" >&2 + exit 1 +fi + +if [ -z "$JAVA_HOME" ] ; then + echo "Warning: JAVA_HOME environment variable is not set." +fi + +CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher + +# traverses directory structure from process work directory to filesystem root +# first directory with .mvn subdirectory is considered project base directory +find_maven_basedir() { + + if [ -z "$1" ] + then + echo "Path not specified to find_maven_basedir" + return 1 + fi + + basedir="$1" + wdir="$1" + while [ "$wdir" != '/' ] ; do + if [ -d "$wdir"/.mvn ] ; then + basedir=$wdir + break + fi + # workaround for JBEAP-8937 (on Solaris 10/Sparc) + if [ -d "${wdir}" ]; then + wdir=`cd "$wdir/.."; pwd` + fi + # end of workaround + done + echo "${basedir}" +} + +# concatenates all lines of a file +concat_lines() { + if [ -f "$1" ]; then + echo "$(tr -s '\n' ' ' < "$1")" + fi +} + +BASE_DIR=`find_maven_basedir "$(pwd)"` +if [ -z "$BASE_DIR" ]; then + exit 1; +fi + +########################################################################################## +# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +# This allows using the maven wrapper in projects that prohibit checking in binary data. +########################################################################################## +if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found .mvn/wrapper/maven-wrapper.jar" + fi +else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..." + fi + if [ -n "$MVNW_REPOURL" ]; then + jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + else + jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + fi + while IFS="=" read key value; do + case "$key" in (wrapperUrl) jarUrl="$value"; break ;; + esac + done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties" + if [ "$MVNW_VERBOSE" = true ]; then + echo "Downloading from: $jarUrl" + fi + wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" + if $cygwin; then + wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"` + fi + + if command -v wget > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found wget ... using wget" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + wget "$jarUrl" -O "$wrapperJarPath" + else + wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath" + fi + elif command -v curl > /dev/null; then + if [ "$MVNW_VERBOSE" = true ]; then + echo "Found curl ... using curl" + fi + if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then + curl -o "$wrapperJarPath" "$jarUrl" -f + else + curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f + fi + + else + if [ "$MVNW_VERBOSE" = true ]; then + echo "Falling back to using Java to download" + fi + javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java" + # For Cygwin, switch paths to Windows format before running javac + if $cygwin; then + javaClass=`cygpath --path --windows "$javaClass"` + fi + if [ -e "$javaClass" ]; then + if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Compiling MavenWrapperDownloader.java ..." + fi + # Compiling the Java class + ("$JAVA_HOME/bin/javac" "$javaClass") + fi + if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then + # Running the downloader + if [ "$MVNW_VERBOSE" = true ]; then + echo " - Running MavenWrapperDownloader.java ..." + fi + ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR") + fi + fi + fi +fi +########################################################################################## +# End of extension +########################################################################################## + +export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"} +if [ "$MVNW_VERBOSE" = true ]; then + echo $MAVEN_PROJECTBASEDIR +fi +MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS" + +# For Cygwin, switch paths to Windows format before running java +if $cygwin; then + [ -n "$M2_HOME" ] && + M2_HOME=`cygpath --path --windows "$M2_HOME"` + [ -n "$JAVA_HOME" ] && + JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"` + [ -n "$CLASSPATH" ] && + CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + [ -n "$MAVEN_PROJECTBASEDIR" ] && + MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"` +fi + +# Provide a "standardized" way to retrieve the CLI args that will +# work with both Windows and non-Windows executions. +MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@" +export MAVEN_CMD_LINE_ARGS + +WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +exec "$JAVACMD" \ + $MAVEN_OPTS \ + -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \ + "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \ + ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@" diff --git a/mvnw.cmd b/mvnw.cmd new file mode 100644 index 0000000..c8d4337 --- /dev/null +++ b/mvnw.cmd @@ -0,0 +1,182 @@ +@REM ---------------------------------------------------------------------------- +@REM Licensed to the Apache Software Foundation (ASF) under one +@REM or more contributor license agreements. See the NOTICE file +@REM distributed with this work for additional information +@REM regarding copyright ownership. The ASF licenses this file +@REM to you under the Apache License, Version 2.0 (the +@REM "License"); you may not use this file except in compliance +@REM with the License. You may obtain a copy of the License at +@REM +@REM https://www.apache.org/licenses/LICENSE-2.0 +@REM +@REM Unless required by applicable law or agreed to in writing, +@REM software distributed under the License is distributed on an +@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +@REM KIND, either express or implied. See the License for the +@REM specific language governing permissions and limitations +@REM under the License. +@REM ---------------------------------------------------------------------------- + +@REM ---------------------------------------------------------------------------- +@REM Maven Start Up Batch script +@REM +@REM Required ENV vars: +@REM JAVA_HOME - location of a JDK home dir +@REM +@REM Optional ENV vars +@REM M2_HOME - location of maven2's installed home dir +@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands +@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending +@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven +@REM e.g. to debug Maven itself, use +@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 +@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files +@REM ---------------------------------------------------------------------------- + +@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on' +@echo off +@REM set title of command window +title %0 +@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on' +@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO% + +@REM set %HOME% to equivalent of $HOME +if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%") + +@REM Execute a user defined script before this one +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre +@REM check for pre script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat" +if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd" +:skipRcPre + +@setlocal + +set ERROR_CODE=0 + +@REM To isolate internal variables from possible post scripts, we use another setlocal +@setlocal + +@REM ==== START VALIDATION ==== +if not "%JAVA_HOME%" == "" goto OkJHome + +echo. +echo Error: JAVA_HOME not found in your environment. >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +:OkJHome +if exist "%JAVA_HOME%\bin\java.exe" goto init + +echo. +echo Error: JAVA_HOME is set to an invalid directory. >&2 +echo JAVA_HOME = "%JAVA_HOME%" >&2 +echo Please set the JAVA_HOME variable in your environment to match the >&2 +echo location of your Java installation. >&2 +echo. +goto error + +@REM ==== END VALIDATION ==== + +:init + +@REM Find the project base dir, i.e. the directory that contains the folder ".mvn". +@REM Fallback to current working directory if not found. + +set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR% +IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir + +set EXEC_DIR=%CD% +set WDIR=%EXEC_DIR% +:findBaseDir +IF EXIST "%WDIR%"\.mvn goto baseDirFound +cd .. +IF "%WDIR%"=="%CD%" goto baseDirNotFound +set WDIR=%CD% +goto findBaseDir + +:baseDirFound +set MAVEN_PROJECTBASEDIR=%WDIR% +cd "%EXEC_DIR%" +goto endDetectBaseDir + +:baseDirNotFound +set MAVEN_PROJECTBASEDIR=%EXEC_DIR% +cd "%EXEC_DIR%" + +:endDetectBaseDir + +IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig + +@setlocal EnableExtensions EnableDelayedExpansion +for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a +@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS% + +:endReadAdditionalConfig + +SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe" +set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar" +set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain + +set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + +FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO ( + IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B +) + +@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central +@REM This allows using the maven wrapper in projects that prohibit checking in binary data. +if exist %WRAPPER_JAR% ( + if "%MVNW_VERBOSE%" == "true" ( + echo Found %WRAPPER_JAR% + ) +) else ( + if not "%MVNW_REPOURL%" == "" ( + SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar" + ) + if "%MVNW_VERBOSE%" == "true" ( + echo Couldn't find %WRAPPER_JAR%, downloading it ... + echo Downloading from: %DOWNLOAD_URL% + ) + + powershell -Command "&{"^ + "$webclient = new-object System.Net.WebClient;"^ + "if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^ + "$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^ + "}"^ + "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^ + "}" + if "%MVNW_VERBOSE%" == "true" ( + echo Finished downloading %WRAPPER_JAR% + ) +) +@REM End of extension + +@REM Provide a "standardized" way to retrieve the CLI args that will +@REM work with both Windows and non-Windows executions. +set MAVEN_CMD_LINE_ARGS=%* + +%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %* +if ERRORLEVEL 1 goto error +goto end + +:error +set ERROR_CODE=1 + +:end +@endlocal & set ERROR_CODE=%ERROR_CODE% + +if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost +@REM check for post script, once with legacy .bat ending and once with .cmd ending +if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat" +if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd" +:skipRcPost + +@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on' +if "%MAVEN_BATCH_PAUSE%" == "on" pause + +if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE% + +exit /B %ERROR_CODE% diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..ee6a92b --- /dev/null +++ b/pom.xml @@ -0,0 +1,209 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.3.3.RELEASE + + + com.machint.automation + mautomation + 0.0.1-SNAPSHOT + mautomation + + Automation Testing Framework + + + 1.8 + 1.14.3 + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.seleniumhq.selenium + selenium-java + + + + org.apache.poi + poi + 3.9 + + + + org.apache.poi + poi-ooxml + 3.9 + + + + org.apache.poi + poi-ooxml-schemas + 3.9 + + + + org.apache.poi + poi-scratchpad + 3.9 + + + + org.apache.poi + openxml4j + 1.0-beta + + + + org.apache.poi + ooxml-schemas + 1.4 + + + + commons-io + commons-io + 2.6 + + + + info.cukes + cucumber-java + 1.2.5 + + + + info.cukes + cucumber-junit + 1.2.5 + + + + info.cukes + cucumber-picocontainer + 1.2.5 + + + + + info.cukes + cucumber-testng + 1.2.5 + pom + + + net.masterthought + cucumber-reporting + 5.0.2 + + + + info.cukes + gherkin + 2.12.2 + provided + + + + + + com.aventstack + extentreports + 3.1.5 + + + + com.relevantcodes + extentreports + 2.41.2 + + + + + + com.vimalselvam + cucumber-extentsreport + 3.1.1 + + + + + com.aventstack + extentreports-cucumber4-adapter + 1.2.1 + + + + info.cukes + cucumber-jvm-deps + 1.0.5 + provided + + + + org.testng + testng + 7.3.0 + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.junit.vintage + junit-vintage-engine + + + + + org.testcontainers + junit-jupiter + test + + + junit + junit + + + + org.springframework.boot + spring-boot-devtools + + + + + + + org.testcontainers + testcontainers-bom + ${testcontainers.version} + pom + import + + + + + + ${artifactId} + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/src/main/java/com/machint/automation/AutomationController.java b/src/main/java/com/machint/automation/AutomationController.java new file mode 100644 index 0000000..ca00e3d --- /dev/null +++ b/src/main/java/com/machint/automation/AutomationController.java @@ -0,0 +1,64 @@ +package com.machint.automation; + +import java.io.ByteArrayInputStream; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; +import java.util.List; + +import org.springframework.core.io.InputStreamResource; +import org.springframework.http.HttpHeaders; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RestController; +import org.testng.TestListenerAdapter; +import org.testng.TestNG; +import org.testng.collections.Lists; + +import com.machint.automation.model.FormObject; + +@RestController +public class AutomationController { + + //local + //private static final String FILE_LOCATION = "D:\\M_Automation\\MAF\\TestNGXML\\"; + //private static final String REPORT_FILE_LOCATION = "D:\\M_Automation\\MAF\\TestReport\\"; + //Server + private static final String FILE_LOCATION = "MAF/TestNGXML/"; + private static final String REPORT_FILE_LOCATION = "MAF/TestReport/"; + public static FormObject formObject; + + + @PostMapping(path="/run_test", consumes = {MediaType.APPLICATION_FORM_URLENCODED_VALUE}) + public String runTest(FormObject formData) { + formObject = formData; + System.out.println(formData); + TestListenerAdapter tla = new TestListenerAdapter(); + TestNG testng = new TestNG(); + List suites = Lists.newArrayList(); + suites.add(FILE_LOCATION+formData.getTestCase());//path to xml.. + //suites.add("c:/tests/testng2.xml"); + testng.setTestSuites(suites); + testng.addListener(tla); + testng.run(); + + return "Test Ran Successfully"; + } + +// + + @GetMapping(value = "/get_xml_report") + public ResponseEntity getXmlReport() throws IOException { + byte[] filedata = Files.readAllBytes(Paths.get(REPORT_FILE_LOCATION+"Test-Automaton-Report.html")); + ByteArrayInputStream in = new ByteArrayInputStream(filedata); + HttpHeaders headers = new HttpHeaders(); + headers.add("Content-Disposition", "attachment; filename=report.html"); + return ResponseEntity + .ok() + .headers(headers) + .body(new InputStreamResource(in)); + } + +} diff --git a/src/main/java/com/machint/automation/Feature/ERF.feature b/src/main/java/com/machint/automation/Feature/ERF.feature new file mode 100644 index 0000000..6337fde --- /dev/null +++ b/src/main/java/com/machint/automation/Feature/ERF.feature @@ -0,0 +1,16 @@ +@Pega_ERF +Feature: ERF + +Scenario: ERF Process + + Given User navigate to Pega Portal + When User enter project manager username and password + And Click on login button + And User verify the project manager home page title + And Click on Employee Requisition Form ERF + And User entered ERF code details + And User entered the Job Specifications details + And User entered the Competencies Required details + And User clicks on project manager submit button + Then Project manager page display the message + Then In project manager page click on logoff \ No newline at end of file diff --git a/src/main/java/com/machint/automation/Feature/Hr_login.feature b/src/main/java/com/machint/automation/Feature/Hr_login.feature new file mode 100644 index 0000000..880d49d --- /dev/null +++ b/src/main/java/com/machint/automation/Feature/Hr_login.feature @@ -0,0 +1,33 @@ +Feature: Login +@HRlogin +Scenario: I want to enter username and password + + Given user navigate to Machint Walk-In Drive Portal + When user verify the homepage title + Then user entered the username and password in walk-in portal + And user click on login button + Then login successfully after display the search from + And user click on Profiles + And user select from and to dates + And user click on submit button + Then display the particular from and to date data + And search the profile id + And check the that particular profile id + And click on shortlist button + Then display the alert message + + And user click on search icon + And user verify search page url + And user entered the Search Form details + And user click on search button + And search the profile id in search from + And check the that particular profile id in search from + And user click on Shortlist + Then display the alert messgae in search form + And user click on download selected + + And user click on send mail + And user click on logout icon + + + \ No newline at end of file diff --git a/src/main/java/com/machint/automation/Feature/Insurance.feature b/src/main/java/com/machint/automation/Feature/Insurance.feature new file mode 100644 index 0000000..342de32 --- /dev/null +++ b/src/main/java/com/machint/automation/Feature/Insurance.feature @@ -0,0 +1,28 @@ +@Insurance +Feature: Insurance + +Background: I want to enter username and password + + Given user navigate to parthenon page + When user validates homepage title + Then user entered the username and password + And user click on signin button + Then parthenon page should be displayed + +Scenario: Insurance process + + Given user click on actions + When user validates action page + And user click on Case management + And user create case in case management + And after select the product catalogue in SH - Advanced table click on select button + And click on continue button + And click on add customer button + Then in SH-Advanced Personal Details page displayed + And user enter personal details + And click on add new row in family details + And user enter family details + And click on next button + Then KYC documents page displayed + + \ No newline at end of file diff --git a/src/main/java/com/machint/automation/Feature/RegistrationFrom.feature b/src/main/java/com/machint/automation/Feature/RegistrationFrom.feature new file mode 100644 index 0000000..1a6a008 --- /dev/null +++ b/src/main/java/com/machint/automation/Feature/RegistrationFrom.feature @@ -0,0 +1,13 @@ +Feature: Registration Form +@registration +Scenario: I want to enter personal information + + Given user navigate to registration form + When user validates the homepage + Then user entered the Personal Information details + And user navigate to Education Information and entered the Education Information details + And user navigate to Technical Knowledge and entered the Technical Knowledge details + Then user navigate the Other Info and entered the Other Info details + And user click on choose file and upload the resume + And click on Submit button + Then your registration process completed \ No newline at end of file diff --git a/src/main/java/com/machint/automation/MautomationApplication.java b/src/main/java/com/machint/automation/MautomationApplication.java new file mode 100644 index 0000000..75304e3 --- /dev/null +++ b/src/main/java/com/machint/automation/MautomationApplication.java @@ -0,0 +1,13 @@ +package com.machint.automation; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class MautomationApplication { + + public static void main(String[] args) { + SpringApplication.run(MautomationApplication.class, args); + } + +} diff --git a/src/main/java/com/machint/automation/PageObject/ERF_PageObject.java b/src/main/java/com/machint/automation/PageObject/ERF_PageObject.java new file mode 100644 index 0000000..1b65b20 --- /dev/null +++ b/src/main/java/com/machint/automation/PageObject/ERF_PageObject.java @@ -0,0 +1,58 @@ +package com.machint.automation.PageObject; + +import org.openqa.selenium.By; + +import com.machint.automation.Utils.ActionClass; + +public class ERF_PageObject extends ActionClass +{ + //Login Deatails + + public static String Username = "UserIdentifier"; + public static String Password = "Password"; + public static String Login = "//button[@id='sub']"; + + //After login + + public static String ERF = "//span[@class='menu-item-title' and text()='Employee Requisition Form']"; + public static String Position = "//input[@id='Position']"; + public static String No_of_Positions = "NoOfPositions"; + public static String Client_Project = "Client"; + public static String Project_ID = "ProjectID"; + public static String Department = "Department"; + public static String Location = "Location"; + public static String External_Hiring = "ExternalHiring"; + public static String Reason_for_Request = "ReasonForHiring"; + public static String Salary_Range = "SalaryRange"; + public static String Reporting = "Reporting"; + public static String Target_Date_to_Fill = "inactvIcon"; + + //Please tick (√) To be filled by indentor mandatorily + + public static String Laptop = "//label[text()='Laptop']"; + public static String Bag = "//label[text()='Bag']"; + public static String HRIS = "//label[@class='rb_ rb_standard radioLabel' and text()='Yes']"; + + //Job Specifications + + public static String Job_Responsibilities = "Responsibilities"; + public static String Special_Accountabilities = "$PpyWorkPage$pAccountabilities"; + public static String Additional_Inputs_to_Roles = "RoleAuthority"; + + //Competencies Required + public static String IFrame = "//div[@id='workarea']//div[@id='moduleGroupDiv']//div[@class='iframe-wrapper yui-module' and @style='display: block;']//div[@class='bd dynamicContainer']/iframe"; + + public static String Practice = "Practice"; + public static String Domain = "$PpyWorkPage$pDomain"; + public static String Is_Certification_Required = "IsCertificationRequired"; + public static String Certifications = "//select[@name='$PpyWorkPage$pCertification']"; + public static String Technical_Competency = "//span[@id='CTRL_TA']/textarea[@id='TechnicalCompetency']"; + public static String Behavioural_Competency = "//textarea[@id='BehaviorCompetency']"; + public static String Qualification = "//select[@id='Qualification']"; + public static String Overall_Experience_In_Years = "//select[@name='$PpyWorkPage$pOverallExpYears']"; + public static String Relevant_Experience_In_Years = "//select[@id='RelevantExpYears']"; + public static String Submit = "//button[@class='Strong pzhc pzbutton' and text()='Submit']"; + By logoff = By.xpath("//a[@onclick='pd(event);']//span[@class='menu-item-title-wrap']/span[text()='Log off']"); + + +} diff --git a/src/main/java/com/machint/automation/PageObject/HR_login_PageObject.java b/src/main/java/com/machint/automation/PageObject/HR_login_PageObject.java new file mode 100644 index 0000000..bcfedc6 --- /dev/null +++ b/src/main/java/com/machint/automation/PageObject/HR_login_PageObject.java @@ -0,0 +1,41 @@ +package com.machint.automation.PageObject; + +import com.machint.automation.Utils.ActionClass; + +public class HR_login_PageObject extends ActionClass +{ + //login + public static String Employee_Email = "empEmailId"; + public static String Password = "password"; + public static String Login = "//button[@class='btn btn-primary']"; + + //After login page click on Profiles + public static String Profiles = "//a[@class='nav-link' and @title='Profiles']//span"; + public static String From = "//input[@id='fromDate']"; + public static String To = "//input[@id='toDate']"; + public static String Submit = "//button[@class='btn btn-primary']"; + public static String Search = "//input[@type='search']"; + public static String Check = "input[onclick='unChech()']"; + public static String Shortlist = "//input[@onclick='shortlistCandidate()']"; + + //Search Form List + public static String Search_Icon = "//*[@class='nav-link' and @title='Search']"; + public static String Hiring_Plan = "//select[@name='hiringPaln' and @class='form-control']"; + public static String Candidate_Shortlisted = "//select[@name='shortlist' and @class='form-control']"; + public static String Highest_Qualification = "highestQualification"; + public static String Specialization = "Specialization"; + public static String Percentage = "percentage"; + public static String Year_Of_Passing = "yop"; + public static String Knowledge_In_JAVA = "java"; + public static String Knowledge_In_PEGA = "pega"; + public static String Knowledge_In_APPIAN = "//select[@id='appain' and @class='form-control']"; + public static String Knowledge_In_RPA = "rpa"; + public static String Knowledge_In_PYTHON = "python"; + public static String Knowledge_In_DATABASE = "//select[@id='data' and @class='form-control']"; + public static String Search_btn = "//button[@class='btn btn-primary' and text()='Search']"; +// public static String Download_btn = By.xpath("//button[@class='btn btn-success']"); + public static String Check_SearchFrom = "//input[@type='checkbox' and @class='checkBoxClass']"; + public static String DownloadSelected = "//input[@onclick='downloadSelected(event)']"; + public static String Send_Mail = "//a[@class='nav-link' and @title='Send Mail']/span"; + public static String Logout = "//a[@class='nav-link' and @title='Logout']/span"; +} diff --git a/src/main/java/com/machint/automation/PageObject/Insurance_PageObject.java b/src/main/java/com/machint/automation/PageObject/Insurance_PageObject.java new file mode 100644 index 0000000..f1fddd7 --- /dev/null +++ b/src/main/java/com/machint/automation/PageObject/Insurance_PageObject.java @@ -0,0 +1,52 @@ +package com.machint.automation.PageObject; + +import com.machint.automation.Utils.ActionClass; + +public class Insurance_PageObject extends ActionClass +{ + + //Login Details + public static String Username = "un"; + public static String Password = "pw"; + public static String Signin = "//input[@onClick='return login_jsp.saveRemember && login_jsp.saveRemember() || true;']"; + + // After Login + +// By iframe = By.xpath("//div[contains(@class,'CardLayout---margin_below_standard')]//div[contains(@class,'CertifiedSAILExtension---wrapping_div')]/iframe"); + public static String Actions = "//div[@class='SiteMenuTab---nav_label' and text()='Actions']"; + public static String Case_management = "//p[contains(@class,'ParagraphText---default_direction')]/span/span/strong[text()='Case Management']"; + public static String Line_of_business = "(//div[contains(@class,'DropdownWidget---dropdown_value')])[1]"; + public static String Product_category = "(//div[contains(@class,'DropdownWidget---dropdown_value')])[2]"; + public static String Product = "(//div[contains(@class,'DropdownWidget---dropdown_value')])[3]"; + public static String Select = "(//div[contains(@class,'ColumnLayout---width_auto')])[6]//div[@class='BoxLayout---box_body']//div[contains(@class,'ButtonLayout2---center')]//button"; +// public static String Continue = "//button[contains(@class,'Button---primary appian-context-first-in-list appian-context-last-in-list')]/parent::*"; + public static String Continue = "//div/button[contains(@class,'Button---primary appian-context-first-in-list appian-context-last-in-list')]"; + public static String Add_customer = "//div[contains(@class,'FieldLayout---inAccentBackground')]//strong[@class='StrongText---richtext_strong' and text()='Add Customer']"; + + //Personal Details + + public static String Title = "(//div[@class='DropdownWidget---dropdown_value DropdownWidget---placeholder'])[1]"; + public static String First_name = "(//input[@class='TextInput---text TextInput---align_start'])[1]"; + public static String Middle_name = "(//input[@class='TextInput---text TextInput---align_start'])[3]"; + public static String Last_name = "(//input[@class='TextInput---text TextInput---align_start'])[5]"; + public static String Customer_type = "(//div[contains(@class,'DropdownWidget---dropdown_value')])[2]"; + public static String Mobile_number = "(//input[@class='TextInput---text TextInput---align_start'])[2]"; + public static String Email = "(//input[@class='TextInput---text TextInput---align_start'])[4]"; + public static String Date_of_birth = "//input[@class='DatePickerWidget---text DatePickerWidget---align_start DatePickerWidget---width_narrow']"; + public static String Gender = "//div[@class='RadioSelect---choice_pair']/label[text()='Female']"; + public static String Un_married = "//div[@class='RadioSelect---choice_pair']/label[text()='Un Married']"; + + //Family Details + + public static String Add_new_row = "//a[@class='GridFooter---add_grid_row_link elements---global_a']"; + public static String FamilyDetails_title = "(//div[contains(@class,'DropdownWidget---dropdown_value DropdownWidget---inEditableGridLayout')])[1]"; + public static String FamilyDetails_Relation_Type = "(//div[contains(@class,'DropdownWidget---dropdown_value DropdownWidget---inEditableGridLayout')])[2]"; + public static String FamilyDetails_first_name = "(//input[@class='TextInput---text TextInput---align_start TextInput---inEditableGridLayout'])[1]"; + public static String FamilyDetails_last_name = "(//input[@class='TextInput---text TextInput---align_start TextInput---inEditableGridLayout'])[2]"; + public static String FamilyDetails_middle_name = "(//input[@class='TextInput---text TextInput---align_start TextInput---inEditableGridLayout'])[3]"; + public static String FamilyDetails_gender = "(//div[contains(@class,'DropdownWidget---dropdown_value DropdownWidget---inEditableGridLayout')])[3]"; + public static String FamilyDeatils_date_of_birth = "//input[@class='DatePickerWidget---text DatePickerWidget---align_start DatePickerWidget---inEditableGridLayout']"; + public static String FamilyDetails_mobile_number = "(//input[@class='TextInput---text TextInput---align_start TextInput---inEditableGridLayout'])[4]"; + public static String Next = "(//div[contains(@class,'ColumnArrayLayout---standard_spacing')])[2]//button[contains(@class,'Button---btn Button---default_direction Button---primary appian-context')]"; +} + diff --git a/src/main/java/com/machint/automation/PageObject/RegistrationFrom_PageObject.java b/src/main/java/com/machint/automation/PageObject/RegistrationFrom_PageObject.java new file mode 100644 index 0000000..b81a0c5 --- /dev/null +++ b/src/main/java/com/machint/automation/PageObject/RegistrationFrom_PageObject.java @@ -0,0 +1,42 @@ +package com.machint.automation.PageObject; + +import com.machint.automation.Utils.ActionClass; + +public class RegistrationFrom_PageObject extends ActionClass +{ + //Personal Information details + public static String First_Name = "//input[@id='firstName']"; + public static String Last_Name = "lastName"; + public static String Contact_Number = "contactNo"; + public static String Alternate_Contact_Number = "alernateContactNo"; + public static String Email = "email"; + public static String City = "city"; + public static String Location = "Currentlocation"; + public static String Permanent_Location = "Permanentlocation"; + public static String Address = "//textarea[@name='address' and @class='form-control']"; + + //Education Information details + public static String Education_Information = "//div/h4[text()='Education Information']"; + public static String Highest_Qualification = "//select[@id='qualification' and @class='form-group']"; + public static String Specialization = "specialization"; + public static String Percentage = "percentage"; + public static String Year_Of_Passing = "yearOfPassing"; + + //Technical Knowledge + public static String Technical_Knowledge ="//div/h4[text()='Technical Knowledge']"; + public static String Knowledge_In_JAVA = "//select[@name='java']"; + public static String Knowledge_In_PEGA = "//select[@name='pega']"; + public static String Knowledge_In_APPIAN = "//select[@name='appian']"; + public static String Knowledge_In_RPA = "//select[@name='RPA']"; + public static String Knowledge_In_PYTHON = "//select[@name='python']"; + public static String Knowledge_In_DATABASE = "//select[@name='dataBase']"; + + //Other Info + public static String Other_Info = "//div/h4[text()='Other Info']"; + public static String Source = "campaignName"; + public static String Employee_referral = "//input[@name='empRef']"; + public static String Message = "message"; + public static String Position = "isAttended6months"; + public static String Resume = "//input[@id='file']"; + public static String submit = "//button[text()='Submit']"; +} \ No newline at end of file diff --git a/src/main/java/com/machint/automation/Runner/ERF_runner.java b/src/main/java/com/machint/automation/Runner/ERF_runner.java new file mode 100644 index 0000000..bef8547 --- /dev/null +++ b/src/main/java/com/machint/automation/Runner/ERF_runner.java @@ -0,0 +1,18 @@ +package com.machint.automation.Runner; + +import org.junit.runner.RunWith; +import cucumber.api.CucumberOptions; +import cucumber.api.junit.Cucumber; + +@RunWith(Cucumber.class) +@CucumberOptions( + features="MAF/Feature/ERF.feature", + glue={"com.machint.automation.StepDefinition"}, + monochrome = true, + plugin = {"com.cucumber.listener.ExtentCucumberFormatter:target/AautomationExtent-ERF-reports/report.html"}, + tags= {"@Pega_ERF"} + ) +public class ERF_runner +{ + +} diff --git a/src/main/java/com/machint/automation/Runner/HR_login_Runner.java b/src/main/java/com/machint/automation/Runner/HR_login_Runner.java new file mode 100644 index 0000000..4e54a99 --- /dev/null +++ b/src/main/java/com/machint/automation/Runner/HR_login_Runner.java @@ -0,0 +1,19 @@ +package com.machint.automation.Runner; + +import org.junit.runner.RunWith; + +import cucumber.api.CucumberOptions; +import cucumber.api.junit.Cucumber; + +@RunWith(Cucumber.class) +@CucumberOptions( + features="MAF/Feature/ERF.feature", + glue={"com.machint.automation.StepDefinition"}, + monochrome = true, + plugin = {"com.cucumber.listener.ExtentCucumberFormatter:target/AautomationExtent-HRlogin-reports/report.html"}, + tags= {"@HRlogin"} + ) +public class HR_login_Runner +{ + +} diff --git a/src/main/java/com/machint/automation/Runner/Insurance_Runner.java b/src/main/java/com/machint/automation/Runner/Insurance_Runner.java new file mode 100644 index 0000000..3529648 --- /dev/null +++ b/src/main/java/com/machint/automation/Runner/Insurance_Runner.java @@ -0,0 +1,18 @@ +package com.machint.automation.Runner; + +import org.junit.runner.RunWith; +import cucumber.api.CucumberOptions; +import cucumber.api.junit.Cucumber; + +@RunWith(Cucumber.class) +@CucumberOptions( + features="MAF/Feature/ERF.feature", + glue={"com.machint.automation.StepDefinition"}, + monochrome = true, + plugin = {"com.cucumber.listener.ExtentCucumberFormatter:target/AautomationExtent-Insurence-reports/report.html"}, + tags= {"@Insurance"} + ) +public class Insurance_Runner +{ + +} diff --git a/src/main/java/com/machint/automation/Runner/RegistrationFrom_Runner.java b/src/main/java/com/machint/automation/Runner/RegistrationFrom_Runner.java new file mode 100644 index 0000000..3116b7f --- /dev/null +++ b/src/main/java/com/machint/automation/Runner/RegistrationFrom_Runner.java @@ -0,0 +1,18 @@ +package com.machint.automation.Runner; + +import org.junit.runner.RunWith; + +import cucumber.api.CucumberOptions; +import cucumber.api.junit.Cucumber; + +@RunWith(Cucumber.class) +@CucumberOptions( + features="MAF/Feature/ERF.feature", + glue={"com.machint.automation.StepDefinition"}, + monochrome = true, + plugin = {"com.cucumber.listener.ExtentCucumberFormatter:target/AautomationExtent-RegistrationForm-reports/report.html"}, + tags= {"@registration"} + ) +public class RegistrationFrom_Runner { + +} diff --git a/src/main/java/com/machint/automation/StepDefinition/ERFSteps.java b/src/main/java/com/machint/automation/StepDefinition/ERFSteps.java new file mode 100644 index 0000000..2909562 --- /dev/null +++ b/src/main/java/com/machint/automation/StepDefinition/ERFSteps.java @@ -0,0 +1,155 @@ +package com.machint.automation.StepDefinition; + +import org.testng.annotations.Test; + +import com.machint.automation.AutomationController; +import com.machint.automation.PageObject.ERF_PageObject; +import com.machint.automation.model.FormObject; + +import cucumber.api.java.en.And; +import cucumber.api.java.en.Given; +import cucumber.api.java.en.When; + +public class ERFSteps extends ERF_PageObject +{ + @Test + @Given("^User navigate to Pega Portal$") + public void user_navigate_to_Pega_Portal() throws Throwable + { + FormObject formData = AutomationController.formObject; + launchBrowser(formData.getBrowser(),formData.getEnvironment()); + } + @Test + @When("^User enter project manager username and password$") + public void user_enter_project_manager_username_and_password() throws Throwable + { readExcel("Pega"); + String username = Machint_TestDataFromExcel("Username"); + Machint_EnterTextField("name", Username , username , "visibilityOf"); + + String password = Machint_TestDataFromExcel("Password"); + Machint_EnterTextField("name", Password, password, "visibilityOf"); + } + @Test + @And("^Click on login button$") + public void click_on_login_button() throws Throwable + { + Machint_Click("xpath", Login, "visibilityOf"); + } + @Test + @And("^User verify the project manager home page title$") + public void user_verify_the_project_manager_home_page_title() throws Throwable + { + Machint_getTitle("DManager"); + } + @Test + @And("^Click on Employee Requisition Form ERF$") + public void click_on_Employee_Requisition_Form_ERF() throws Throwable + { + Machint_Click("xpath", ERF, "visibilityOf"); + } + @Test + @And("^User entered ERF code details$") + public void user_entered_ERF_code_details() throws Throwable + { + Machint_Frame_webElement("xpath", IFrame, "visibilityOf"); + + String position = Machint_TestDataFromExcel("Username"); + Machint_EnterTextField("xpath", Position, position, "visibilityOf"); + + String no_of_positions = Machint_TestDataFromExcel("No of Positions"); + Machint_EnterTextField("id", No_of_Positions , no_of_positions, "visibilityOf"); + + String client_project = Machint_TestDataFromExcel("Client/ Project"); + Machint_EnterTextField("id", Client_Project , client_project, "visibilityOf"); + + String projectID = Machint_TestDataFromExcel("Project ID"); + Machint_EnterTextField("id", Project_ID , projectID, "visibilityOf"); + + String department = Machint_TestDataFromExcel("Department"); + Machint_EnterTextField("id", Department , department, "visibilityOf"); + + String location = Machint_TestDataFromExcel("Location"); + Machint_EnterTextField("id", Location , location, "visibilityOf"); + + String external_hiring = Machint_TestDataFromExcel("External Hiring"); + Machint_selectValue("id", External_Hiring , external_hiring, "visibilityOf"); + + String reason_for_request = Machint_TestDataFromExcel("Reason for Request"); + Machint_EnterTextField("id", Reason_for_Request , reason_for_request, "visibilityOf"); + + String salary_range = Machint_TestDataFromExcel("Salary Range"); + Machint_selectValue("id", Salary_Range , salary_range, "visibilityOf"); + + String reporting = Machint_TestDataFromExcel("Reporting"); + Machint_EnterTextField("id", Reporting , reporting, "visibilityOf"); + + String target_date_to_fill = Machint_TestDataFromExcel("Target Date to Fill"); + Machint_EnterTextField("className", Target_Date_to_Fill , target_date_to_fill, "visibilityOf"); + + Machint_Click("xpath", Laptop, "visibilityOf"); + Machint_Click("xpath", Bag, "visibilityOf"); + Machint_Click("xpath", HRIS, "visibilityOf"); + } + @Test + @And("^User entered the Job Specifications details$") + public void user_entered_the_Job_Specifications_details() throws Throwable + { + String job_responsibilities = Machint_TestDataFromExcel("Job Responsibilities"); + Machint_EnterTextField("id", Job_Responsibilities, job_responsibilities, "visibilityOf"); + + String special_accountabilities = Machint_TestDataFromExcel("Special Accountabilities or Typical Goals"); + Machint_EnterTextField("name", Special_Accountabilities, special_accountabilities, "visibilityOf"); + + String additional_inputs_to_roles = Machint_TestDataFromExcel("Additional Inputs to Roles"); + Machint_EnterTextField("id", Additional_Inputs_to_Roles, additional_inputs_to_roles, "visibilityOf"); + } + @Test + @And("^User entered the Competencies Required details$") + public void user_entered_the_Competencies_Required_details() throws Throwable + { + String practice = Machint_TestDataFromExcel("Practice"); + Machint_selectVisibleText("id", Practice, practice, "visibilityOf"); + + String domain = Machint_TestDataFromExcel("Domain"); + Machint_selectVisibleText("name", Domain, domain, "visibilityOf"); + + String is_certification_required = Machint_TestDataFromExcel("Is Certification Required"); + Machint_selectVisibleText("id", Is_Certification_Required, is_certification_required, "visibilityOf"); + + String certifications = Machint_TestDataFromExcel("Certifications"); + Machint_selectVisibleText("id", Certifications, certifications, "visibilityOf"); + + String technical_competency = Machint_TestDataFromExcel("Technical Competency"); + Machint_EnterTextField("xpath", Technical_Competency, technical_competency, "visibilityOf"); + + String behavioural_competency = Machint_TestDataFromExcel("Behavioural Competency"); + Machint_selectVisibleText("xpath", Behavioural_Competency, behavioural_competency, "visibilityOf"); + + String qualification = Machint_TestDataFromExcel("Qualification"); + Machint_selectVisibleText("xpath", Qualification, qualification, "visibilityOf"); + + String overall_experience_in_years = Machint_TestDataFromExcel("Overall Experience In Years"); + Machint_selectVisibleText("xpath", Overall_Experience_In_Years, overall_experience_in_years, "visibilityOf"); + + String relevant_experience_in_years = Machint_TestDataFromExcel("Overall Experience In Years"); + Machint_selectVisibleText("xpath", Relevant_Experience_In_Years, relevant_experience_in_years, "visibilityOf"); + } + @Test + @And("^User clicks on project manager submit button$") + public void user_clicks_on_project_manager_submit_button() throws Throwable + { + Machint_Click("xpath", Submit, "visibilityOf"); + } + @Test + @And("^Project manager page display the message$") + public void project_manager_page_display_the_message() throws Throwable + { + + } + @Test + @And("^In project manager page click on logoff$") + public void in_project_manager_page_click_on_logoff() throws Throwable + { + + } +} diff --git a/src/main/java/com/machint/automation/StepDefinition/HR_LoginSteps.java b/src/main/java/com/machint/automation/StepDefinition/HR_LoginSteps.java new file mode 100644 index 0000000..1623b55 --- /dev/null +++ b/src/main/java/com/machint/automation/StepDefinition/HR_LoginSteps.java @@ -0,0 +1,216 @@ +package com.machint.automation.StepDefinition; + +import org.testng.annotations.Test; + +import com.machint.automation.AutomationController; +import com.machint.automation.PageObject.HR_login_PageObject; +import com.machint.automation.model.FormObject; + +import cucumber.api.java.en.And; +import cucumber.api.java.en.Given; +import cucumber.api.java.en.Then; +import cucumber.api.java.en.When; + +public class HR_LoginSteps extends HR_login_PageObject +{ + + @Test + @Given("^user navigate to Machint Walk-In Drive Portal$") + public void user_navigate_to_Machint_Walk_In_Drive_Portal() throws Throwable + { + FormObject formData = AutomationController.formObject; + launchBrowser(formData.getBrowser(),formData.getEnvironment()); + } + + @Test + @When("^user verify the homepage title$") + public void user_verify_the_homepage_title() throws Throwable + { + Machint_getTitle("Mach"); + } + @Test + @Then("^user entered the username and password in walk-in portal$") + public void user_entered_the_username_and_password_in_walkin_portal() throws Exception + { + readExcel("HR_Login"); + + String username = Machint_TestDataFromExcel("Username"); + Machint_EnterTextField("id", Employee_Email , username,"visibilityOf"); + + String password = Machint_TestDataFromExcel("Password"); + Machint_EnterTextField("id", Password, password, "visibilityOf"); + } + @Test + @And("^user click on login button$") + public void user_click_on_login_button() throws Throwable + { + Machint_Click("xpath", Login, "visibilityOf"); + } + @Test + @Then("^login successfully after display the search from$") + public void login_successfully_after_display_the_search_from() throws Throwable + { + Machint_getTitle("Machint"); + } + @Test + @And("^user click on Profiles$") + public void user_click_on_Profiles() throws Throwable + { + Machint_Click("xpath", Profiles, "visibilityOf"); + Machint_getTitle("Machint"); + + } + @Test + @And("^user select from and to dates$") + public void user_select_from_and_to_dates() throws Throwable + { + String from = Machint_TestDataFromExcel("From"); + Machint_EnterTextField("xpath", From, from, "visibilityOf"); + + String to = Machint_TestDataFromExcel("To"); + Machint_EnterTextField("xpath", To, to, "visibilityOf"); + } + @Test + @And("^user click on submit button$") + public void user_click_on_submit_button() throws Throwable + { + Machint_Click("xpath", Submit, "visibilityOf"); + } + @Test + @Then("^display the particular from and to date data$") + public void display_the_particular_from_and_to_date_data() throws Throwable + { + Machint_getTitle("Machint"); + } + @Test + @And ("^search the profile id$") + public void search_the_profile_id() throws Throwable + { + Machint_EnterTextField("xpath", Search, "P0021", "visibilityOf"); + } + @Test + @And("^check the that particular profile id$") + public void check_the_that_particular_profile_id() throws Throwable + { + Machint_Click("css", Check, "visibilityOf"); + } + @Test + @And("^click on shortlist button$") + public void click_on_shortlist_button() throws Throwable + { + Machint_Click("xpath", Shortlist, "visibilityOf"); + } + @Test + @Then("^display the alert message$") + public void display_the_alert_message() throws Throwable + { + Machint_acceptAlert(); + } + @Test + @And("^user click on search icon$") + public void user_click_on_search_icon() throws Throwable + { + Machint_mouseHover(Search_Icon); + Machint_Click("xpath", Search_Icon,"visibilityOf"); + } + @Test + @And("^user verify search page url$") + public void user_verify_search_page_url() throws Throwable + { + Machint_getTitle("Mach"); + } + @Test + @And("^user entered the Search Form details$") + public void user_entered_the_Search_Form_details() throws Exception + { + + String HiringPlan = Machint_TestDataFromExcel("HiringPlan"); + Machint_selectValue("xpath", Hiring_Plan, HiringPlan, "visibilityOf"); + + String CandidateShortlisted= Machint_TestDataFromExcel("Candidate Shortlisted"); + Machint_selectValue("xpath", Candidate_Shortlisted, CandidateShortlisted,"visibilityOf"); + + String HighestQualification = Machint_TestDataFromExcel("Highest Qualification"); + Machint_EnterTextField("id", Highest_Qualification, HighestQualification, "visibilityOf"); + + String specialization = Machint_TestDataFromExcel("Specialization"); + Machint_EnterTextField("id", Specialization, specialization, "visibilityOf"); + + String percentage = Machint_TestDataFromExcel("Percentage"); + Machint_EnterTextField("id", Percentage, percentage, "visibilityOf"); + + String YearOfPassing = Machint_TestDataFromExcel("Year Of Passing"); + Machint_EnterTextField("name", Year_Of_Passing, YearOfPassing, "visibilityOf"); + + String KnowledgeInJAVA = Machint_TestDataFromExcel("Knowledge In JAVA"); + Machint_selectValue("id", Knowledge_In_JAVA, KnowledgeInJAVA, "visibilityOf"); + + String KnowledgeInPEGA = Machint_TestDataFromExcel("Knowledge In PEGA"); + Machint_selectValue("id", Knowledge_In_PEGA, KnowledgeInPEGA, "visibilityOf"); + + String KnowledgeInAPPIAN = Machint_TestDataFromExcel("Knowledge In APPIAN"); + Machint_selectValue("xpath", Knowledge_In_APPIAN, KnowledgeInAPPIAN, "visibilityOf"); + + String KnowledgeInRPA = Machint_TestDataFromExcel("Knowledge In RPA"); + Machint_selectVisibleText("id", Knowledge_In_RPA, KnowledgeInRPA, "visibilityOf"); + + String KnowledgeInPYTHON = Machint_TestDataFromExcel("Knowledge In PYTHON"); + Machint_selectVisibleText("id", Knowledge_In_PYTHON, KnowledgeInPYTHON, "visibilityOf"); + + String KnowledgeInDATABASE = Machint_TestDataFromExcel("Knowledge In DATABASE"); + Machint_selectVisibleText("xpath", Knowledge_In_DATABASE, KnowledgeInDATABASE, "visibilityOf"); + } + @Test + @And("^user click on search button$") + public void user_click_on_search_button() throws Throwable + { + Machint_Click("xpath", Search_btn, "visibilityOf"); + } + @Test + @And ("^search the profile id in search from$") + public void search_the_profile_id_in_search_from() throws Throwable + { + Machint_EnterTextField("xpath", Search, "P0210", "visibilityOf"); + } + @Test + @And("^check the that particular profile id in search from$") + public void check_the_that_particular_profile_id_in_search_from() throws Throwable + { + Machint_Click("xpath", Check_SearchFrom, "visibilityOf"); + } + @Test + @And("^user click on Shortlist$") + public void user_click_on_Shortlist() throws Throwable + { + Machint_Click("xpath", Shortlist, "visibilityOf"); + } + @Test + @Then("^display the alert messgae in search form$") + public void display_the_alert_message_in_search_form() throws Throwable + { + Machint_acceptAlert(); + } + @Test + @And("^user click on download selected$") + public void user_click_on_download_selected() throws Throwable + { + Machint_Click("xpath", Search_btn, "visibilityOf"); + Machint_EnterTextField("xpath", Search, "P0210", "visibilityOf"); + Machint_Click("xpath", Check_SearchFrom, "visibilityOf"); +// Machint_Click("xpath", DownloadSelected, "visibilityOf"); + } + @Test + @And("^user click on send mail") + public void user_click_on_send_mail() throws Throwable + { + Machint_Click("xpath", Send_Mail, "visibilityOf"); + } + @Test + @And("^user click on logout icon") + public void user_click_on_logout_icon() throws Throwable + { + Machint_Click("xpath", Logout, "visibilityOf"); + driver.close(); + } + +} diff --git a/src/main/java/com/machint/automation/StepDefinition/InsuranceSteps.java b/src/main/java/com/machint/automation/StepDefinition/InsuranceSteps.java new file mode 100644 index 0000000..29b39ea --- /dev/null +++ b/src/main/java/com/machint/automation/StepDefinition/InsuranceSteps.java @@ -0,0 +1,190 @@ +package com.machint.automation.StepDefinition; + +import org.testng.annotations.Test; + +import com.machint.automation.AutomationController; +import com.machint.automation.PageObject.Insurance_PageObject; +import com.machint.automation.model.FormObject; + +import cucumber.api.java.en.And; +import cucumber.api.java.en.Given; +import cucumber.api.java.en.Then; +import cucumber.api.java.en.When; + +public class InsuranceSteps extends Insurance_PageObject +{ + @Test + @Given("^user navigate to parthenon page$") + public void user_navigate_to_parthenon_page() throws Throwable + { + FormObject formData = AutomationController.formObject; + launchBrowser(formData.getBrowser(),formData.getEnvironment()); + } + @Test + @When("^user validates homepage title$") + public void user_validates_homepage_title() throws InterruptedException + { + Machint_FutureDate(); + Machint_getTitle("Appian for Rainbow Digital Marketing & Analytics Pte Ltd (DEV)"); + } + @Test + @Then("^user entered the username and password$") + public void user_entered_the_username_and_password() throws Throwable + { + readExcel("Insurance"); + + String username = Machint_TestDataFromExcel("Username"); + Machint_EnterTextField("id", Username, username, "visibilityOf"); + + String password = Machint_TestDataFromExcel("Password"); + Machint_EnterTextField("id", Password, password, "visibilityOf"); + } + @Test + @And("^user click on signin button$") + public void user_click_on_signin_button() throws Throwable + { + Machint_Click("xpath", Signin, "visibilityOf"); + } + @Test + @Then("^parthenon page should be displayed$") + public void parthenon_page_should_be_displayed() throws InterruptedException + { + Machint_getTitle("HOME - Parthenon"); + } + + //Actions + @Test + @Given("^user click on actions$") + public void user_click_on_actions() throws Throwable + { + Machint_Click("xpath", Actions, "visibilityOf"); + } + @Test + @When("^user validates action page$") + public void user_validates_action_page() throws Throwable + { + Machint_getTitle("//Actions - Parthenon"); + } + @Test + @And("^user click on Case management$") + public void user_click_on_Case_management() throws Throwable + { + Machint_Click("xpath", Case_management, "visibilityOf"); + } + @Test + @And("^user create case in case management$") + public void user_create_case_in_case_management() throws Throwable + { + String LineOfBusiness = Machint_TestDataFromExcel("Line of business"); + Machint_EnterTextKey("xpath", Line_of_business, LineOfBusiness, "visibilityOf"); + + String ProductCategory = Machint_TestDataFromExcel("Product category"); + Machint_EnterTextKey("xpath", Product_category, ProductCategory, "visibilityOf"); + + String product = Machint_TestDataFromExcel("Product"); + Machint_EnterTextKey("xpath", Product , product, "visibilityOf"); + } + @Test + @And ("^after select the product catalogue in SH - Advanced table click on select button$") + public void after_select_the_product_catalogue_in_SH_Advanced_table_click_on_select_button() throws Throwable + { + Machint_Click("xpath", Select, "visibilityOf"); + } + @Test + @And("^click on continue button$") + public void click_on_continue_button() throws Throwable + { + Machint_Click("xpath", Continue, "visibilityOf"); + } + @Test + @And("^click on add customer button$") + public void click_on_add_customer_button() throws Throwable + { + Machint_Click("xpath", Add_customer, "visibilityOf"); + } + @Test + @Then("^in SH-Advanced Personal Details page displayed$") + public void in_SH_Advanced_Personal_Details_page_displayed() throws InterruptedException + { + Machint_getTitle("PA Customer On-Boarding - Parthenon//"); + } + @Test + @And("^user enter personal details$") + public void user_enter_personal_details() throws Throwable + { + String title = Machint_TestDataFromExcel("Title"); + Machint_EnterTextKey("xpath", Title , title, "visibilityOf"); + + String first_name = Machint_TestDataFromExcel("First Name"); + Machint_EnterTextField("xpath", First_name , first_name, "visibilityOf"); + + String middle_name = Machint_TestDataFromExcel("Middle Name"); + Machint_EnterTextField("xpath", Middle_name , middle_name, "visibilityOf"); + + String last_name = Machint_TestDataFromExcel("Last Name"); + Machint_EnterTextField("xpath", Last_name , last_name, "visibilityOf"); + + String customer_type = Machint_TestDataFromExcel("Customer Type"); + Machint_EnterTextKey("xpath", Customer_type , customer_type, "visibilityOf"); + + String mobile_number = Machint_TestDataFromExcel("Mobile Number"); + Machint_EnterTextField("xpath", Mobile_number , mobile_number, "visibilityOf"); + + String email = Machint_TestDataFromExcel("Email"); + Machint_EnterTextField("xpath", Email , email, "visibilityOf"); + + String date_of_birth = Machint_TestDataFromExcel("Date Of Birth"); + Machint_EnterTextField("xpath", Date_of_birth , date_of_birth, "visibilityOf"); + + Machint_Click("xpath", Gender, "visibilityOf"); + + Machint_Click("xpath", Un_married, "visibilityOf"); + } + + @Test + @And("^click on add new row in family details$") + public void click_on_add_new_row_in_family_details() throws Throwable + { + Machint_Click("xpath", Add_new_row, "visibilityOf"); + } + @Test + @And("^user enter family details$") + public void user_enter_family_details() throws Throwable + { + String title = Machint_TestDataFromExcel("Family Details Title"); + Machint_EnterTextKey("xpath", FamilyDetails_title, title, "visibilityOf"); + + String relation_type = Machint_TestDataFromExcel("Family Details Relation Type"); + Machint_EnterTextKey("xpath", FamilyDetails_Relation_Type, relation_type, "visibilityOf"); + + String first_name = Machint_TestDataFromExcel("Family Details First Name"); + Machint_EnterTextField("xpath", FamilyDetails_first_name, first_name, "visibilityOf"); + + String last_name = Machint_TestDataFromExcel("Family Details Last Name"); + Machint_EnterTextField("xpath", FamilyDetails_last_name, last_name, "visibilityOf"); + + String middle_name = Machint_TestDataFromExcel("Family Details Middle Name"); + Machint_EnterTextField("xpath", FamilyDetails_middle_name, middle_name, "visibilityOf"); + + String gender = Machint_TestDataFromExcel("Family Details Gender"); + Machint_EnterTextKey("xpath", FamilyDetails_gender, gender, "visibilityOf"); + + String date_of_birth = Machint_TestDataFromExcel("Family Details Date Of Birth"); + Machint_EnterTextField("xpath", FamilyDeatils_date_of_birth, date_of_birth, "visibilityOf"); + + String mobile_number = Machint_TestDataFromExcel("Family Details Mobile Number"); + Machint_EnterTextField("xpath", FamilyDetails_mobile_number, mobile_number, "visibilityOf"); + } + @Test + @And("^click on next button$") + public void click_on_next_button() throws Throwable + { + Machint_Click("xpath", Next, "visibilityOf"); + } + @Test + @Then("^KYC documents page displayed$") + public void KYC_documents_page_displayed() throws Throwable + { + driver.close(); + } +} diff --git a/src/main/java/com/machint/automation/StepDefinition/RegistrationSteps.java b/src/main/java/com/machint/automation/StepDefinition/RegistrationSteps.java new file mode 100644 index 0000000..5ae335a --- /dev/null +++ b/src/main/java/com/machint/automation/StepDefinition/RegistrationSteps.java @@ -0,0 +1,151 @@ +package com.machint.automation.StepDefinition; + +import org.testng.annotations.Test; + +import com.machint.automation.AutomationController; +import com.machint.automation.PageObject.RegistrationFrom_PageObject; +import com.machint.automation.model.FormObject; + +import cucumber.api.java.en.And; +import cucumber.api.java.en.Given; +import cucumber.api.java.en.Then; +import cucumber.api.java.en.When; + +public class RegistrationSteps extends RegistrationFrom_PageObject +{ + @Test + @Given("^user navigate to registration form$") + public void user_navigate_to_registration_form() throws Throwable + { + FormObject formData = AutomationController.formObject; + launchBrowser(formData.getBrowser(),formData.getEnvironment()); + } + @Test + @When("^user validates the homepage$") + public void user_validates_the_homepage() throws Throwable + { + Machint_getTitle("hint"); + } + @Test + @Then("^user entered the Personal Information details$") + public void user_entered_the_Personal_Information_details() throws Throwable + { + readExcel("RegistrationForm"); + + String firstname = Machint_TestDataFromExcel("FirstName"); + Machint_EnterTextField("xpath", First_Name, firstname, "visibilityOf"); + + String lastname = Machint_TestDataFromExcel("LastName"); + Machint_EnterTextField("id", Last_Name, lastname, "visibilityOf"); + + String contactno = Machint_TestDataFromExcel("ContactNumber"); + Machint_EnterTextField("id",Contact_Number, contactno, "visibilityOf"); + + String alternatecontactno = Machint_TestDataFromExcel("AlternateContactNumber"); + Machint_EnterTextField("id",Alternate_Contact_Number, alternatecontactno, "visibilityOf"); + + String email = Machint_TestDataFromExcel("Email"); + Machint_EnterTextField("id",Email, email, "visibilityOf"); + + String city = Machint_TestDataFromExcel("City"); + Machint_EnterTextField("id",City, city, "visibilityOf"); + + String location = Machint_TestDataFromExcel("CurrentLocation"); + Machint_EnterTextField("id",Location, location, "visibilityOf"); + + String permanentlocation = Machint_TestDataFromExcel("PermanentLocation"); + Machint_EnterTextField("id",Permanent_Location, permanentlocation, "visibilityOf"); + + String address = Machint_TestDataFromExcel("Address"); + Machint_EnterTextField("xpath",Address, address, "visibilityOf"); + + Machint_mouseHover(Education_Information); + + Machint_AssertEquals("xpath", "//div/h4[text()='Personal Information']", "Personal Information:"); + } + + @Test + @And("^user navigate to Education Information and entered the Education Information details$") + public void user_navigate_to_Education_Information_and_entered_the_Education_Information_details() throws Throwable + { + String highestqualification = Machint_TestDataFromExcel("HighestQualification"); + Machint_selectVisibleText("xpath",Highest_Qualification, highestqualification, "visibilityOf"); + + String specialization = Machint_TestDataFromExcel("Specialization"); + Machint_selectVisibleText("id",Specialization, specialization, "visibilityOf"); + + String percentage = Machint_TestDataFromExcel("Percentage"); + Machint_EnterTextField("id",Percentage, percentage, "visibilityOf"); + + String yearofpassing = Machint_TestDataFromExcel("YearOfPassing"); + Machint_EnterTextField("name",Year_Of_Passing, yearofpassing, "visibilityOf"); + + Machint_mouseHover(Technical_Knowledge); + + Machint_AssertEquals("xpath", "//div/h4[text()='Education Information']", "Education Information"); + } + + @Test + @And("^user navigate to Technical Knowledge and entered the Technical Knowledge details$") + public void user_navigate_to_Technical_Knowledge_and_entered_the_Technical_Knowledge_details() throws Throwable + { + String Java = Machint_TestDataFromExcel("Knowledge In JAVA"); + Machint_selectValue("xpath",Knowledge_In_JAVA, Java, "visibilityOf"); + + String Pega = Machint_TestDataFromExcel("Knowledge In PEGA"); + Machint_selectValue("xpath",Knowledge_In_PEGA, Pega, "visibilityOf"); + + String Appian = Machint_TestDataFromExcel("Knowledge In APPIAN"); + Machint_selectValue("xpath",Knowledge_In_APPIAN, Appian, "visibilityOf"); + + String RPA = Machint_TestDataFromExcel("Knowledge In RPA"); + Machint_selectValue("xpath",Knowledge_In_RPA, RPA, "visibilityOf"); + + String Python = Machint_TestDataFromExcel("Knowledge In PYTHON"); + Machint_selectValue("xpath",Knowledge_In_PYTHON, Python, "visibilityOf"); + + String Database= Machint_TestDataFromExcel("Knowledge In DATABASE"); + Machint_selectValue("xpath",Knowledge_In_DATABASE, Database, "visibilityOf"); + + Machint_mouseHover(Other_Info); + + Machint_AssertEquals("xpath", "//div/h4[text()='Technical Knowledge']", "Technical Knowledge"); + } + + @Test + @Then("^user navigate the Other Info and entered the Other Info details$") + public void user_navigate_the_Other_Info_and_entered_the_Other_Info_details() throws Exception + { + String source = Machint_TestDataFromExcel("Source"); + Machint_selectValue("name",Source, source, "visibilityOf"); + +// String employee_referral = Machint_TestDataFromExcel("Employee referral"); +// Machint_selectValue("xpath",registration.Employee_referral, employee_referral, "visibilityOf"); + + String message = Machint_TestDataFromExcel("Message"); + Machint_EnterTextField("name",Message, message, "visibilityOf"); + + String position = Machint_TestDataFromExcel("Have you applied for any position in our organization in past 6 months"); + Machint_selectValue("id",Position, position, "visibilityOf"); + + Machint_AssertEquals("xpath", "//div/h4[text()='Other Info']", "Other Info:"); + } + @Test + @And("^user click on choose file and upload the resume$") + public void user_click_on_choose_file_and_upload_the_resume() throws Throwable + { + Machint_EnterTextField("xpath",Resume, "C:\\Users\\durga\\Desktop\\Automation\\Automation Strategy.docx", "visibilityOf"); + } + @Test + @And("^click on Submit button$") + public void click_on_Submit_button() throws Throwable + { + Machint_Click("xpath", submit, "visibilityOf"); + } + @Test + @Then("^your registration process completed$") + public void your_registration_process_completed() throws Throwable + { + driver.close(); + } +} diff --git a/src/main/java/com/machint/automation/Utils/ActionClass.java b/src/main/java/com/machint/automation/Utils/ActionClass.java new file mode 100644 index 0000000..f6a67df --- /dev/null +++ b/src/main/java/com/machint/automation/Utils/ActionClass.java @@ -0,0 +1,727 @@ +package com.machint.automation.Utils; + +import java.text.DateFormat; +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; +import java.util.Iterator; +import java.util.Set; + +import org.openqa.selenium.Alert; +import org.openqa.selenium.By; +import org.openqa.selenium.JavascriptExecutor; +import org.openqa.selenium.Keys; +import org.openqa.selenium.NoAlertPresentException; +import org.openqa.selenium.NoSuchElementException; +import org.openqa.selenium.NoSuchFrameException; +import org.openqa.selenium.WebElement; +import org.openqa.selenium.interactions.Actions; +import org.openqa.selenium.support.ui.ExpectedConditions; +import org.openqa.selenium.support.ui.Select; +import org.openqa.selenium.support.ui.WebDriverWait; +import org.testng.Assert; + +import com.machint.automation.base.BaseClass; + +public class ActionClass extends BaseClass +{ + public static WebElement element; + public static By by, locator; + public static Select select; + public static WebDriverWait wait; + public static Actions action; + public static String actual, actualValue; + public static Boolean flag; + public static Alert alert ; + + public static By Machint_locator(String locatorType, String LocatorValue) + { + switch (locatorType) + { + case "id": + by = By.id(LocatorValue); + break; + + case "name": + by = By.name(LocatorValue); + break; + + case "className": + by = By.className(LocatorValue); + break; + + case "tagName": + by = By.tagName(LocatorValue); + break; + + case "xpath": + by = By.xpath(LocatorValue); + break; + + case "css": + by = By.cssSelector(LocatorValue); + break; + + case "linkText": + by = By.linkText(LocatorValue); + break; + + case "partialLinkText": + by = By.partialLinkText(LocatorValue); + break; + + default: + by = null; + break; + } + return by; + } + + public static void Machint_EnterTextKey(String LocatorType, String LocatorValue, String value, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + + Machint_Waits(WaitType); + element.click(); + element.sendKeys(value); + element.sendKeys(Keys.ENTER); + Machint_JSHighlight(element); + Thread.sleep(2000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_EnterTextKey \t" + e); + } + } + + public static void Machint_EnterTextField(String LocatorType, String LocatorValue, String value, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + element.clear(); + element.sendKeys(value); + Thread.sleep(2000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_EnterTextField \t" + e); + } + } + + public static void Machint_Click(String LocatorType, String LocatorValue, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + element.click(); + Thread.sleep(3000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to perform Machint_Click \t" + e); + } + } + + public static void Machint_contextClick(String LocatorType, String LocatorValue, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + action=new Actions(driver); + action.contextClick(element).build().perform(); + Thread.sleep(1000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to perform Machint_DoubleClick \t" + e); + } + } + + public static void Machint_doubleClick(String LocatorType, String LocatorValue, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + action=new Actions(driver); + action.moveToElement(element).doubleClick().build().perform(); + Thread.sleep(1000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to perform Machint_DoubleClick \t" + e); + } + } + + public static void Machint_clickAndHold(String LocatorType, String LocatorValue, String WaitType) throws Exception + { + try + { + action = new Actions(driver); + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + action.clickAndHold(element).build().perform(); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + element.click(); + Thread.sleep(3000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to perform Machint_ClickAndHoldAction\t" + e); + } + } + + public static void Machint_selectValue(String LocatorType, String LocatorValue, String text, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + select = new Select(element); + select.selectByValue(text); + Thread.sleep(1000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_selectValue \t" + e); + } + } + + public static void Machint_selectIndex(String LocatorType, String LocatorValue, int value, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + select = new Select(element); + select.selectByIndex(value); + Thread.sleep(1000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_selectIndex \t" + e); + } + } + + public static void Machint_selectVisibleText(String LocatorType, String LocatorValue, String text, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_JSHighlight(element); + Machint_Waits(WaitType); + select = new Select(element); + select.selectByVisibleText(text); + Thread.sleep(1000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_selectVisibleText \t" + e); + } + } + + public static void Machint_Waits(String WaitType) throws Exception + { + switch (WaitType) + { + case "visibilityOf": + Machint_visibilityOf(); + break; + + case "visibilityOfAllElements": + Machint_visibilityOfAllElements(); + break; + + case "elementToBeClickable": + Machint_elementToBeClickable(); + break; + + case "elementToBeSelected": + Machint_elementToBeSelected(); + break; + + case "elementSelectionStateToBe": + Machint_elementSelectionStateToBe(); + break; + + case "frameToBeAvailableAndSwitchToIt": + Machint_frameToBeAvailableAndSwitchToIt(); + break; + + case "invisibilityOf": + Machint_invisibilityOf(); + break; + + case "invisibilityOfAllElements": + Machint_invisibilityOfAllElements(); + break; + + default: + System.out.println(WaitType+ " is invalid"); + } + } + + public static void Machint_visibilityOf() + { + try + { + wait = new WebDriverWait(driver, 1000); + if(element != null) + { + wait.until(ExpectedConditions.visibilityOf(element)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_visibilityOf \t" + e); + } + } + + public static void Machint_visibilityOfAllElements() + { + try + { + wait = new WebDriverWait(driver,1000); + if(element != null) + { + wait.until(ExpectedConditions.visibilityOfAllElements(element)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_visibilityOfAllElements \t" + e); + } + } + + public static void Machint_elementToBeClickable() + { + try + { + wait = new WebDriverWait(driver,1000); + if(element != null) + { + wait.until(ExpectedConditions.elementToBeClickable(element)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_elementToBeClickable \t" + e); + } + } + + public static void Machint_elementSelectionStateToBe() + { + try + { + wait = new WebDriverWait(driver,1000); + if(element != null) + { + wait.until(ExpectedConditions.elementSelectionStateToBe(element, flag)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_elementSelectionStateToBe \t" + e); + } + } + + public static void Machint_elementToBeSelected() + { + try + { + wait = new WebDriverWait(driver,1000); + if(element != null) + { + wait.until(ExpectedConditions.elementToBeSelected(element)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_elementToBeSelected \t" + e); + } + } + + public static void Machint_frameToBeAvailableAndSwitchToIt() + { + try + { + wait = new WebDriverWait(driver,1000); + if(element != null) + { + wait.until(ExpectedConditions.frameToBeAvailableAndSwitchToIt(element)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_frameToBeAvailableAndSwitchToIt \t" + e); + } + } + + public static void Machint_invisibilityOf() + { + try + { + wait = new WebDriverWait(driver,1000); + if(by != null) + { + wait.until(ExpectedConditions.invisibilityOf(element)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_invisibilityOf \t" + e); + } + } + + public static void Machint_invisibilityOfAllElements() + { + try + { + wait = new WebDriverWait(driver,1000); + if(element != null) + { + wait.until(ExpectedConditions.invisibilityOfAllElements(element)); + } + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to Machint_invisibilityOfAllElements \t" + e); + } + } + + public static void Machint_JSHighlight(WebElement ele) + { + if (driver instanceof JavascriptExecutor) + { + ((JavascriptExecutor) driver).executeScript("arguments[0].setAttribute('style', 'background: skyblue; border: 2px solid yellow;');",ele); + } + } + + public static boolean Machint_acceptAlert() + { + boolean boolFound = false; + try + { + wait = new WebDriverWait(driver, 1000); + wait.until(ExpectedConditions.alertIsPresent()); + alert = driver.switchTo().alert(); + if (alert != null) + { + alert.accept(); + boolFound = true; + } + } + catch (NoAlertPresentException ex) + { + boolFound = false; + ex.printStackTrace(); + } + return boolFound; + } + + public static boolean Machint_dismissAlert() + { + boolean boolFound = false; + try + { + wait = new WebDriverWait(driver, 1000); + wait.until(ExpectedConditions.alertIsPresent()); + alert = driver.switchTo().alert(); + if (alert != null) + { + alert.dismiss(); + boolFound = true; + } + } + catch (NoAlertPresentException ex) + { + boolFound = false; + ex.printStackTrace(); + } + return boolFound; + + } + + public static boolean Machint_getAlertText() + { + boolean boolFound = false; + try + { + wait = new WebDriverWait(driver, 1000); + wait.until(ExpectedConditions.alertIsPresent()); + alert = driver.switchTo().alert(); + String AlertMsg=driver.switchTo().alert().getText(); + if (alert != null) + { + alert.accept(); + System.out.println(AlertMsg); + boolFound = true; + } + } + catch (NoAlertPresentException ex) + { + boolFound = false; + ex.printStackTrace(); + } + return boolFound; + + } + + public static void Machint_getTitle(String Expected) + { + String Title = driver.getTitle(); + Assert.assertEquals(Title, Expected); + } + + public static String Machint_AssertEquals(String LocatorType, String LocatorValue, String expectedValue) + { + locator = Machint_locator(LocatorType, LocatorValue); + actualValue = driver.findElement(locator).getText(); + System.out.println("Actual Value is \t"+actualValue); + Assert.assertEquals(actualValue, expectedValue); + return actualValue; + } + + public static boolean Machint_NotEquals_Validation(String LocatorType,String LocatorValue, String expected) + { + locator = Machint_locator(LocatorType, LocatorValue); + String element = driver.findElement(locator).getText(); + flag = false; + if(element != null) + { + Assert.assertNotEquals(element, expected); + flag = true; + } + else + + { + System.out.println("Actual Value and Expected Value Matched"); + } + return flag; + } + + public static boolean Machint_True_Validation(String LocatorType,String LocatorValue, String expected) + { + locator = Machint_locator(LocatorType, LocatorValue); + boolean condition = driver.findElement(locator).getText() != null; + flag = false; + + if(element != null) + { + Assert.assertTrue( condition, expected); + flag = true; + System.out.println(flag); + } + else + { + System.err.format("Validation is not performed"); + } + return flag; + } + + public static boolean Machint_False_Validation(String LocatorType,String LocatorValue, String expected) + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + boolean condition = driver.findElement(locator).getText() != null; + flag = false; + + if(element != null) + { + Assert.assertFalse( condition, expected); + flag = true; + System.out.println(flag); + } + } + catch (NoSuchElementException e) + { + System.err.format("Validation is not performed"); + } + return flag; + } + + public static void Machint_mouseHover(String LocatorValue) throws Throwable + { + action = new Actions(driver); + element = driver.findElement(By.xpath(LocatorValue)); + action.moveToElement(element).build().perform(); + } + + public static void Machint_Frame_webElement(String LocatorType, String LocatorValue, String WaitType) throws Exception + { + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + Machint_Waits(WaitType); + driver.switchTo().frame(element); + Thread.sleep(2000); + } + catch (NoSuchElementException e) + { + System.err.format("No Element Found to perform Machint_Frame \t" + e); + } + } + + public void Machint_switchToFrame(String ParentFrame, String ChildFrame) + { + try + { + driver.switchTo().frame(ParentFrame).switchTo().frame(ChildFrame); + } + catch (NoSuchFrameException e) + { + System.out.println("Unable to locate frame with id " + ParentFrame + " or " + ChildFrame + e.getStackTrace()); + } + catch (Exception e) + { + System.out.println("Unable to navigate to innerframe with id "+ ChildFrame + "which is present on frame with id"+ParentFrame + e.getStackTrace()); + } + } + + public static void Machint_defaultframe() + { + try + { + driver.switchTo().defaultContent(); + } + catch (Exception e) + { + System.out.println("unable to navigate back to parent frame"+e.getStackTrace()); + } + } + + public static void Machint_windowhandle() + { + String Parent=driver.getWindowHandle(); + Sets=driver.getWindowHandles(); + Iterator I1= s.iterator(); + + while(I1.hasNext()) + { + String child_window=I1.next(); + if(!Parent.equals(child_window)) + { + driver.switchTo().window(child_window); + System.out.println(driver.switchTo().window(child_window).getTitle()); + driver.close(); + } + } + } + + public static void Machint_YesterdayDate() + { + DateFormat sdf = new SimpleDateFormat("MM/dd/YYYY"); +// Calendar today = Calendar.getInstance(); + Calendar yesterday = Calendar.getInstance(); + yesterday.add(Calendar.DATE, -1); + Date d = yesterday.getTime(); // get a Date object + String yesDate = sdf.format(d); // toString for Calendars is mostly not really useful + System.out.println("Yesterday Date is \t"+yesDate); + } + + public static void Machint_CurrentDate() + { + DateFormat sdf = new SimpleDateFormat("dd/MM/YYYY"); + Date date = new Date(); + String Date = sdf.format(date); + System.out.println("Current Date is\t"+Date); + } + + public static void Machint_FutureDate() + { + DateFormat sdf = new SimpleDateFormat("MM/dd/YYYY"); + Calendar futureDate = Calendar.getInstance(); + futureDate.add(Calendar.DATE, 7); + Date date = futureDate.getTime(); + String Date = sdf.format(date); + System.out.println("Future Date is\t"+Date); + } + + public static void Machint_CurrentMonth() + { + int month; + Calendar cal = Calendar.getInstance(); + month = cal.get(Calendar.MONTH); + month = month+1; + System.out.println("Current month is " + month); + } + + public static void Machint_CurrentYear() + { + int year; + Calendar cal = Calendar.getInstance(); + year = cal.get(Calendar.YEAR); + System.out.println("Current year is " + year); + } + + public static void Machint_getToolTip() throws Exception + { + // Get tooltip text + String toolTipText = element.getAttribute("title").toString(); + System.out.println("Tool tip text present :- " + toolTipText); + + // Compare toll tip text +// Assert.assertEquals(toolTipText, expectedValue); + } + + public static Boolean Machint_DragandDropby(String LocatorType, String LocatorValue, int x, int y) throws Exception + { + boolean flag = false; + try + { + locator = Machint_locator(LocatorType, LocatorValue); + element = driver.findElement(locator); + action=new Actions(driver); + action.dragAndDropBy(element, x, y).build().perform(); + flag = true; + return flag; + } + catch (Exception e) + { + return false; + } + } + + public boolean isCheckBoxSelected(String LocatorType, String LocatorValue) throws Throwable + { + boolean flag = false; + try + { + locator = Machint_locator(LocatorType, LocatorValue); + if (driver.findElement(locator).isSelected()) { + flag = true; + } + return flag; + + } + catch (NoSuchElementException e) + { + flag = false; + return flag; + } + } + +} diff --git a/src/main/java/com/machint/automation/Utils/ExcelData.java b/src/main/java/com/machint/automation/Utils/ExcelData.java new file mode 100644 index 0000000..c736287 --- /dev/null +++ b/src/main/java/com/machint/automation/Utils/ExcelData.java @@ -0,0 +1,202 @@ +package com.machint.automation.Utils; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.LinkedHashMap; +import java.util.List; + +import org.apache.poi.ss.usermodel.Cell; +import org.apache.poi.ss.usermodel.DataFormatter; +import org.apache.poi.ss.usermodel.Row; +import org.apache.poi.xssf.usermodel.XSSFCell; +import org.apache.poi.xssf.usermodel.XSSFRow; +import org.apache.poi.xssf.usermodel.XSSFSheet; +import org.apache.poi.xssf.usermodel.XSSFWorkbook; + +public class ExcelData +{ + static XSSFCell cell, cell0; + static XSSFSheet sheet; + static XSSFWorkbook excelWorkbook; + static XSSFRow row; + static String filePath = "MAF/testdatafolder/TestData.xlsx"; + static File file; + static FileInputStream inputFile; + static FileOutputStream outputFile; + static int rowcount; + static int i,j; + public static String cellValue, celldata; + + public static void readExcel(String sheetName) throws Exception + { + file = new File(filePath); + FileInputStream inputStream = new FileInputStream(file); + excelWorkbook = new XSSFWorkbook(inputStream); + sheet = excelWorkbook.getSheet(sheetName); + } + + public static int getRowCount() + { + int rowcount = sheet.getLastRowNum(); + return rowcount; + } + + public static int getColumnCount() + { + row = sheet.getRow(0); + int colCount = row.getLastCellNum(); + return colCount; + } + + public static String getCellContentAsString(Cell cell) throws Exception + { + switch (cell.getCellType()) + { + + case Cell.CELL_TYPE_BLANK: + celldata=""; + break; + + case Cell.CELL_TYPE_STRING: + celldata=cell.getStringCellValue(); + break; + + case Cell.CELL_TYPE_NUMERIC: + DataFormatter df=new DataFormatter(); + celldata=df.formatCellValue(cell); + break; + + case Cell.CELL_TYPE_FORMULA: + celldata=String.valueOf(cell.getNumericCellValue()); + break; + + case Cell.CELL_TYPE_BOOLEAN: + celldata=String.valueOf(cell.getBooleanCellValue()); + break; + + default: + celldata=cell.getStringCellValue(); + break; + } + return celldata; + } + + public static String getCellData(int rowcount, int ColNum) throws Exception + { + String result = null; + + cell = sheet.getRow(rowcount).getCell(ColNum); + result = getCellContentAsString(cell); + return result; + } + + public static String Machint_TestDataFromExcel(String ColumnName) throws Exception + { + for(i=1;i<=getRowCount() ; i++) + { + row = sheet.getRow(i); + cell=row.getCell(0); + String Actionvalue = cell.getStringCellValue(); + if(Actionvalue.equalsIgnoreCase(ColumnName)) + { + cell = sheet.getRow(i).getCell(1); + cellValue = getCellContentAsString(cell); + } + } + return cellValue; + } + + public static String Machint_TestDataFromExcelFile(String ColumnName) throws Exception + { + try + { + + int totalNoOfRows = sheet.getLastRowNum() - sheet.getFirstRowNum(); + row = sheet.getRow(0); + HashMap map = new HashMap(); + + for (int row2 = 1; row2 < totalNoOfRows; row2++) { + + Row row1 = sheet.getRow(row2); + if ((row1.getCell(0).getStringCellValue()).equals(ColumnName)) { + for (int col = 1; col < row1.getLastCellNum(); col++) + { + map.put(row.getCell(col).getStringCellValue(), row1.getCell(col).getStringCellValue()); + } + } + System.out.println(map); + + } + } catch (Exception e) { + e.printStackTrace(); + } + return cellValue; + } + + + public static List> getExcelDataAsMap() throws Exception + { + // Initialized an empty List which retain order + List> dataList = new ArrayList<>(); + // Get data set count which will be equal to cell counts of any row + int countOfDataSet = sheet.getRow(0).getPhysicalNumberOfCells(); + // Skipping first column as it is field names + for (int i = 1; i < countOfDataSet; i++) + { + System.out.println("Number of countOfDataSet \t"+countOfDataSet); + // Creating a map to store each data set individually + LinkedHashMap data = new LinkedHashMap<>(); + // Get the row i.e field names count + int rowCount = sheet.getPhysicalNumberOfRows(); + System.out.println("Row count is \t"+rowCount); + // Now we need to iterate all rows but cell should increases once all row is done + // i.e. (1,1),(2,1),(3,1),(4,1),(5,1) - First iteration + // (1,2),(2,2),(3,2),(4,2),(5,2) - Second iteration + // (1,3),(2,3),(3,3),(4,3),(5,3) - Third iteration + for(int j = 1; j> mapDataList = getExcelDataAsMap(); +// +// for(int k = 0; k extentTestMap = new HashMap(); + static ExtentReports extent = ExtentManager.getInstance(); + + public static synchronized ExtentTest getTest() { + return (ExtentTest) extentTestMap.get((int) (long) (Thread.currentThread().getId())); + } + + public static synchronized void endTest() { + extent.flush(); + } + + public static synchronized ExtentTest startTest(String testName) { + ExtentTest test = extent.createTest(testName); + extentTestMap.put((int) (long) (Thread.currentThread().getId()), test); + return test; + } +} \ No newline at end of file diff --git a/src/main/java/com/machint/automation/managers/FileReaderManager.java b/src/main/java/com/machint/automation/managers/FileReaderManager.java new file mode 100644 index 0000000..461ea40 --- /dev/null +++ b/src/main/java/com/machint/automation/managers/FileReaderManager.java @@ -0,0 +1,16 @@ +package com.machint.automation.managers; + +public class FileReaderManager { + private static FileReaderManager fileReaderManager = new FileReaderManager(); + private static ConfigFileReader configFileReader; + + private FileReaderManager() {} + + public static FileReaderManager getInstance() { + return fileReaderManager; + } + + public ConfigFileReader getConfigReader() { + return (configFileReader == null) ? new ConfigFileReader() : configFileReader; + } +} \ No newline at end of file diff --git a/src/main/java/com/machint/automation/managers/TestListener.java b/src/main/java/com/machint/automation/managers/TestListener.java new file mode 100644 index 0000000..957d9e6 --- /dev/null +++ b/src/main/java/com/machint/automation/managers/TestListener.java @@ -0,0 +1,88 @@ +package com.machint.automation.managers; + +import java.io.File; +import java.text.SimpleDateFormat; +import java.util.Date; + +import org.apache.commons.io.FileUtils; +import org.openqa.selenium.OutputType; +import org.openqa.selenium.TakesScreenshot; +import org.testng.ITestContext; +import org.testng.ITestListener; +import org.testng.ITestResult; + +import com.aventstack.extentreports.Status; +import com.machint.automation.base.BaseClass; + +public class TestListener extends BaseClass implements ITestListener +{ + + public void onStart(ITestContext context) + { + System.out.println("*** Test Suite " + context.getName() + " started ***"); + } + + public void onFinish(ITestContext context) + { + System.out.println(("*** Test Suite " + context.getName() + " ending ***")); + ExtentTestManager.endTest(); + ExtentManager.getInstance().flush(); + } + + public void onTestStart(ITestResult result) { + System.out.println(("*** Running test method " + result.getMethod().getMethodName() + "...")); + ExtentTestManager.startTest(result.getMethod().getMethodName()); + } + + public void onTestSuccess(ITestResult result) + { + System.out.println("*** Executed " + result.getMethod().getMethodName() + " test successfully..."); + ExtentTestManager.getTest().log(Status.PASS, "Test passed"); + } + + /* + * @Override public void onTestFailure(ITestResult result) { + * System.out.println("***** Error "+result.getName()+" test has failed *****"); + * String methodName=result.getName().toString().trim(); ITestContext context = + * result.getTestContext(); WebDriver driver = + * (WebDriver)context.getAttribute("driver"); takeScreenShot(methodName, + * driver); } + * + * public void takeScreenShot(String methodName, WebDriver driver) { File + * scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE); //The + * below method will save the screen shot in d drive with test method name try { + * FileUtils.copyFile(scrFile, new File(filePath+methodName+".png")); + * System.out.println("***Placed screen shot in "+filePath+" ***"); } catch + * (IOException e) { e.printStackTrace(); } } + */ + + public void onTestFailure(ITestResult result) + { + System.out.println("*** Test execution " + result.getMethod().getMethodName() + " failed..."); + ExtentTestManager.getTest().log(Status.FAIL, "Test Failed"); + try + { + TakesScreenshot screenshot=(TakesScreenshot)driver; + File src=screenshot.getScreenshotAs(OutputType.FILE); + String timestamp = new SimpleDateFormat("yyyy_MM_dd__hh_mm_ss").format(new Date()); + FileUtils.copyFile(src, new File("MAF/ScreenShot /"+result.getName()+timestamp+".png")); + System.out.println("Successfully captured a screenshot"); + } + catch (Exception e) + { + System.out.println("Exception while taking screenshot "+e.getMessage()); + } + } + + public void onTestSkipped(ITestResult result) + { + System.out.println("*** Test " + result.getMethod().getMethodName() + " skipped..."); + ExtentTestManager.getTest().log(Status.SKIP, "Test Skipped"); + } + + public void onTestFailedButWithinSuccessPercentage(ITestResult result) + { + System.out.println("*** Test failed but within percentage % " + result.getMethod().getMethodName()); + } + +} \ No newline at end of file diff --git a/src/main/java/com/machint/automation/model/FormObject.java b/src/main/java/com/machint/automation/model/FormObject.java new file mode 100644 index 0000000..216c649 --- /dev/null +++ b/src/main/java/com/machint/automation/model/FormObject.java @@ -0,0 +1,41 @@ +package com.machint.automation.model; + +public class FormObject { + + private String environment; + private String browser; + private String product; + private String testCase; + public String getEnvironment() { + return environment; + } + public void setEnvironment(String environment) { + this.environment = environment; + } + public String getBrowser() { + return browser; + } + public void setBrowser(String browser) { + this.browser = browser; + } + public String getProduct() { + return product; + } + public void setProduct(String product) { + this.product = product; + } + public String getTestCase() { + return testCase; + } + public void setTestCase(String testCase) { + this.testCase = testCase; + } + @Override + public String toString() { + return "FormObject [environment=" + environment + ", browser=" + browser + ", product=" + product + + ", testCase=" + testCase + "]"; + } + + + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..33e8f33 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,5 @@ +#spring.main.web-application-type=none +server.port=8093 +#spring.resources.static-locations=D:/Dev/mautomation/test-output +local.file.path=D:/M_Automation/MAF +server.servlet.context-path=/mautomation diff --git a/src/main/resources/static/excel_test.html b/src/main/resources/static/excel_test.html new file mode 100644 index 0000000..4dfb05b --- /dev/null +++ b/src/main/resources/static/excel_test.html @@ -0,0 +1,91 @@ + + + + + + + + + + Automation Test + + +
+
+ +
+
+ +
+
+
+ +
+
+ +
+
+
+ + + + \ No newline at end of file diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html new file mode 100644 index 0000000..5c114b3 --- /dev/null +++ b/src/main/resources/static/index.html @@ -0,0 +1,170 @@ + + + + +Automation Testing + + + + + + +
+

Automation Test

+
+ +
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +
+
+ +
+
+
+ +
+ +
+
+
+ +
+
+
+ + + \ No newline at end of file diff --git a/src/main/resources/static/jquery-3.5.1.min.js b/src/main/resources/static/jquery-3.5.1.min.js new file mode 100644 index 0000000..b061403 --- /dev/null +++ b/src/main/resources/static/jquery-3.5.1.min.js @@ -0,0 +1,2 @@ +/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.5.1",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function D(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||j,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,j=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="",y.option=!!ce.lastChild;var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function qe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function He(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Oe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Ut,Xt=[],Vt=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Xt.pop()||S.expando+"_"+Ct.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Vt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Vt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Vt,"$1"+r):!1!==e.jsonp&&(e.url+=(Et.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Xt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Ut=E.implementation.createHTMLDocument("").body).innerHTML="
",2===Ut.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):("number"==typeof f.top&&(f.top+="px"),"number"==typeof f.left&&(f.left+="px"),c.css(f))}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=$e(y.pixelPosition,function(e,t){if(t)return t=Be(e,n),Me.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0