Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
634e87a
Add 3 rd line
Feb 9, 2021
0319f98
Update cancelpage.java
prateekG707 Feb 9, 2021
7e423e5
Update createpage.java
prateekG707 Feb 9, 2021
0c8cb03
Update viewticket.java
prateekG707 Feb 9, 2021
dca88e2
Update ftat.java
prateekG707 Feb 9, 2021
699aa9e
Update cancelpage.java
prateekG707 Feb 9, 2021
2913c9d
Update createpage.java
prateekG707 Feb 9, 2021
3c84c45
Update viewticket.java
prateekG707 Feb 9, 2021
b0fed1f
Update acat.java
prateekG707 Feb 9, 2021
fa696d9
Update cancelpage.java
prateekG707 Feb 10, 2021
1db11b6
Update createpage.java
prateekG707 Feb 10, 2021
b43044e
Update viewticket.java
prateekG707 Feb 10, 2021
28e0c6b
Update ftat.java
prateekG707 Feb 10, 2021
a810060
Create ftat.java
prateekG707 Feb 10, 2021
266e697
Update acat.java
prateekG707 Feb 10, 2021
c902d59
Update cancelpage.java
prateekG707 Feb 12, 2021
d349046
Update createpage.java
prateekG707 Feb 12, 2021
a93664a
Update viewticket.java
prateekG707 Feb 12, 2021
daaea23
Update ftat.java
prateekG707 Feb 12, 2021
e55e9a5
Update acat.java
prateekG707 Feb 12, 2021
289cf0d
Update acat.java
prateekG707 Feb 12, 2021
43ef1e5
Update acat.java
prateekG707 Feb 12, 2021
e960d02
Update cancelpage.java
prateekG707 Feb 12, 2021
2ca8203
Update createpage.java
prateekG707 Feb 12, 2021
5174704
Update viewticket.java
prateekG707 Feb 12, 2021
7ae87ca
Update ftat.java
prateekG707 Feb 12, 2021
27f46ff
Update acat.java
prateekG707 Feb 12, 2021
31d411b
Update README.md
prateekG707 Feb 12, 2021
2712cc3
updated README.md
prateekG707 Feb 12, 2021
19a40c2
Add files via upload
prateekG707 Feb 18, 2021
c725f7e
Update README.md
prateekG707 Mar 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Acceptancetest/src/test/java/acceptancetest/acat.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public class acat {
public HtmlUnitDriver driver;
//public WebDriver driver;
public WebDriverWait wait;
public String URL = "http://172.31.45.127:8080/ProdWebapp";
public String URL1 = "http://172.31.45.127:8080/ProdWebapp/avncreatepage.jsp";
public String URL = "http://18.216.115.223:8080/ProdWebapp";
public String URL1 = "http://18.216.115.223:8080/ProdWebapp/avncreatepage.jsp";
//public String URL = "http://localhost:8080/AVNCommunication-1.0/avnlogin.jsp";
//public String URL1 = "http://localhost:8080/AVNCommunication-1.0/avncreatepage.jsp";

Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,10 @@
This is a sample project used for learning the devops end to end concepts

my intial commit 01/26
adding 3rd line

Testing web hook with pull SCM


testing webhooks with webhooks at 5:34 PM EST 02/12/2021
test
4 changes: 2 additions & 2 deletions functionaltest/src/test/java/functionaltest/ftat.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public class ftat {
public HtmlUnitDriver driver;
//public WebDriver driver;
public WebDriverWait wait;
public String URL = "http://172.31.46.182:8080/QAWebapp/";
public String URL1 = "http://172.31.46.182:8080/QAWebapp/avncreatepage.jsp";
public String URL = "http://3.141.167.6:8080/QAWebapp/";
public String URL1 = "http://3.141.167.6:8080/QAWebapp/avncreatepage.jsp";
//public String URL = "http://localhost:8080/AVNCommunication-1.0/avnlogin.jsp";
//public String URL1 = "http://localhost:8080/AVNCommunication-1.0/avncreatepage.jsp";

Expand Down
18 changes: 18 additions & 0 deletions install_tomcat.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
- name: installing tomcat
hosts: webservers
gather_facts: false
tasks:
- name: downloding tomcat
get_url:
url: "https://mirror.jframeworks.com/apache/tomcat/tomcat-8/v8.5.63/bin/apache-tomcat-8.5.63.tar.gz"
dest: /usr/local
- name: extracting tomcat
unarchive:
src: "/usr/local/apache-tomcat-8.5.63.tar.gz"
dest: /usr/local
remote_src: yes
- name: renaming tomcat home
command: mv /usr/local/apache-tomcat-8.5.63 /usr/local/tomcat
- name: Starting tomcat
shell: nohup /usr/local/tomcat/bin/startup.sh &
2 changes: 1 addition & 1 deletion src/test/java/servlet/cancelpage.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public void doPost(HttpServletRequest req,HttpServletResponse res)
try
{
Class.forName("org.postgresql.Driver");
String jdbcUrl="jdbc:postgresql://172.31.46.182:5432/postgres";
String jdbcUrl="jdbc:postgresql://3.141.167.6:5432/postgres";
String username="postgres";
String password="password";

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/servlet/createpage.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public void doPost(HttpServletRequest req,HttpServletResponse res)
try
{
Class.forName("org.postgresql.Driver");
String jdbcUrl="jdbc:postgresql://172.31.46.182:5432/postgres";
String jdbcUrl="jdbc:postgresql://3.141.167.6:5432/postgres";
String username="postgres";
String password="password";

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/servlet/viewticket.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void service(HttpServletRequest req,HttpServletResponse res)
try
{
Class.forName("org.postgresql.Driver");
String jdbcUrl="jdbc:postgresql://172.31.46.182:5432/postgres";
String jdbcUrl="jdbc:postgresql://3.141.167.6:5432/postgres";
String username="postgres";
String password="password";

Expand Down