fix: adding Logs
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 14s
Gitea Actions Demo / mvnBuild (push) Successful in 1m27s

This commit is contained in:
2024-10-18 23:13:05 -04:00
parent 668bab3a61
commit 5fc15df153
12 changed files with 12676 additions and 5 deletions
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -35,4 +35,4 @@ build/
.vscode/
### Mac OS ###
.DS_Store
.DS_Store.codiumai
+1 -1
View File
@@ -8,7 +8,7 @@
</list>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="openjdk-23" project-jdk-type="JavaSDK">
<component name="ProjectRootManager" version="2" languageLevel="JDK_23" default="true" project-jdk-name="openjdk-23" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>
+1
View File
@@ -0,0 +1 @@
,ilyes,fedora,18.10.2024 11:53,file:///home/ilyes/.config/libreoffice/4;
BIN
View File
Binary file not shown.
+9 -1
View File
@@ -73,14 +73,22 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.24.0</version>
<version>2.24.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>3.0.0-beta2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j2-impl -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.24.1</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java -->
<dependency>
+32
View File
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Properties>
<!-- Set the base path for the log files -->
<Property name="basePath">./logs</Property>
</Properties>
<Appenders>
<!-- Rolling file appender for log rotation -->
<RollingFile name="File" fileName="${basePath}/application.log"
filePattern="${basePath}/application-%d{yyyy-MM-dd}-%i.log.gz">
<!-- Layout for the log message format -->
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
<!-- Triggering Policy to roll files when they reach 10MB -->
<Policies>
<SizeBasedTriggeringPolicy size="10MB"/>
</Policies>
<!-- Define rollover strategy to keep 7 backup files -->
<DefaultRolloverStrategy max="7"/>
</RollingFile>
</Appenders>
<Loggers>
<!-- Root logger with INFO level -->
<Root level="info">
<AppenderRef ref="File"/>
</Root>
</Loggers>
</Configuration>
@@ -0,0 +1,30 @@
/*
package api.test;
import api.endpoints.UserEndpoints;
import api.payload.User;
import io.restassured.response.Response;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
public class DataDrivenTest {
User userPayload;
@Test(priority = 1, dataProvider = "Data", dataProviderClass = DataProvider.class)
public void testPostUser(String userID, String userName, String fName, String lName, String email, String passwd, String phone){
userPayload = new User();
userPayload.setId(Integer.parseInt(userID));
userPayload.setUsername(userName);
userPayload.setFirstname(fName);
userPayload.setLastname(lName);
userPayload.setEmail(email);
userPayload.setPassword(passwd);
userPayload.setPhone(phone);
Response response = UserEndpoints.createUser(userPayload);
Assert.assertEquals(response.getStatusCode(), 200);
}
}
*/
@@ -0,0 +1,37 @@
/*
package api.utilities;
import java.io.IOException;
import org.testng.annotations.DataProvider;
public class Dataproviders {
@DataProvider(name = "Data")
public String[][] getAllData() throws IOException {
String path = System.getProperty("/home/ilyes/SeleniumPractice/RestAssuredAutomation/Data.xlsx");
XLUtility xl = new XLUtility(path);
int rownum = xl.getRowCount("Sheet1");
int colcount = xl.getCellCount("Sheet1", 1);
String[][] apidata = new String[rownum][colcount];
for (int i = 1; i <= rownum; i++) {
for (int j = 0; j < colcount; j++) {
apidata[i - 1][j] = xl.getCellData("Sheet1", i, j);
}
}
return apidata;
}
@DataProvider(name = "UserNames")
public String[] getUserNames() throws IOException {
String path = System.getProperty("user.dir") + "//testData//Userdata.xlsx";
XLUtility xl = new XLUtility(path);
int rownum = xl.getRowCount("Sheet1");
String apidata[] = new String[rownum];
for (int i = 1; i <= rownum; i++) {
apidata[i - 1] = xl.getCellData("Sheet1", i, 1);
}
return apidata;
}
}
*/
@@ -1,4 +1,93 @@
/*
package api.utilities;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.DataFormatter;
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 XLUtility {
public FileInputStream fi;
public FileOutputStream fo;
public XSSFWorkbook workbook;
public XSSFSheet sheet;
public XSSFRow row;
public XSSFCell cell;
public CellStyle style;
String path;
public XLUtility(String path) {
this.path = path;
}
public int getRowCount(String sheetName) throws IOException {
fi = new FileInputStream(path);
workbook = new XSSFWorkbook(fi);
sheet = workbook.getSheet(sheetName);
int rowcount = sheet.getLastRowNum();
workbook.close();
fi.close();
return rowcount;
}
public int getCellCount(String sheetName, int rownum) throws IOException {
fi = new FileInputStream(path);
workbook = new XSSFWorkbook(fi);
sheet = workbook.getSheet(sheetName);
row = sheet.getRow(rownum);
int cellcount = row.getLastCellNum();
workbook.close();
fi.close();
return cellcount;
}
public String getCellData(String sheetName, int rownum, int colnum) throws IOException {
fi = new FileInputStream(path);
workbook = new XSSFWorkbook(fi);
sheet = workbook.getSheet(sheetName);
row = sheet.getRow(rownum);
cell = row.getCell(colnum);
DataFormatter formatter = new DataFormatter();
String data;
try {
data = formatter.formatCellValue(cell);
} catch (Exception e) {
data = "";
}
workbook.close();
fi.close();
return data;
}
public void setCellData(String sheetName, int rownum, int colnum, String data) throws IOException {
File xlfile = new File(path);
if (!xlfile.exists()) {
workbook = new XSSFWorkbook();
fo = new FileOutputStream(path);
workbook.write(fo);
}
fi = new FileInputStream(path);
workbook = new XSSFWorkbook(fi);
if (workbook.getSheetIndex(sheetName) == -1)
workbook.createSheet(sheetName);
sheet = workbook.getSheet(sheetName);
if (sheet.getRow(rownum) == null)
sheet.createRow(rownum);
row = sheet.getRow(rownum);
cell = row.createCell(colnum);
cell.setCellValue(data);
fo = new FileOutputStream(path);
workbook.write(fo);
workbook.close();
fi.close();
fo.close();
}
}
*/
+18 -2
View File
@@ -1,16 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Properties>
<!-- Set the base path for the log files -->
<Property name="basePath">./logs</Property>
</Properties>
<Appenders>
<RollingFile name="File" fileName="${basePath}/application.log">
<!-- Rolling file appender for log rotation -->
<RollingFile name="File" fileName="${basePath}/application.log"
filePattern="${basePath}/application-%d{yyyy-MM-dd}-%i.log.gz">
<!-- Layout for the log message format -->
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
<!-- Triggering Policy to roll files when they reach 10MB -->
<Policies>
<SizeBasedTriggeringPolicy size="10MB"/>
</Policies>
<!-- Define rollover strategy to keep 7 backup files -->
<DefaultRolloverStrategy max="7"/>
</RollingFile>
</Appenders>
<Loggers>
<!-- Root logger with INFO level -->
<Root level="info">
<AppenderRef ref="File"/>
</Root>
</Loggers>
</Configuration>
</Configuration>