1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-10-18 15:42:04 +03:00
parent 064775459f
commit 9da5607c44
119 changed files with 9395 additions and 9395 deletions

68
ci/1c_test_en vendored
View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Telegram.report file not found" echo "WARNING: Telegram.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Telegram.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -83,7 +83,7 @@ pipeline {
echo "WARNING: VK.report file not found" echo "WARNING: VK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -113,7 +113,7 @@ pipeline {
echo "WARNING: Viber.report file not found" echo "WARNING: Viber.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Viber.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -143,7 +143,7 @@ pipeline {
echo "WARNING: Twitter.report file not found" echo "WARNING: Twitter.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Twitter.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -173,7 +173,7 @@ pipeline {
echo "WARNING: FTP.report file not found" echo "WARNING: FTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/FTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -203,7 +203,7 @@ pipeline {
echo "WARNING: SSH.report file not found" echo "WARNING: SSH.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SSH.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -233,7 +233,7 @@ pipeline {
echo "WARNING: SFTP.report file not found" echo "WARNING: SFTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SFTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -263,7 +263,7 @@ pipeline {
echo "WARNING: PostgreSQL.report file not found" echo "WARNING: PostgreSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/PostgreSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -293,7 +293,7 @@ pipeline {
echo "WARNING: MySQL.report file not found" echo "WARNING: MySQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MySQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -323,7 +323,7 @@ pipeline {
echo "WARNING: MSSQL.report file not found" echo "WARNING: MSSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MSSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -353,7 +353,7 @@ pipeline {
echo "WARNING: SQLite.report file not found" echo "WARNING: SQLite.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SQLite.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -383,7 +383,7 @@ pipeline {
echo "WARNING: RCON.report file not found" echo "WARNING: RCON.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/RCON.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -413,7 +413,7 @@ pipeline {
echo "WARNING: YandexDisk.report file not found" echo "WARNING: YandexDisk.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexDisk.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -443,7 +443,7 @@ pipeline {
echo "WARNING: GoogleWorkspace.report file not found" echo "WARNING: GoogleWorkspace.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleWorkspace.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -473,7 +473,7 @@ pipeline {
echo "WARNING: GoogleCalendar.report file not found" echo "WARNING: GoogleCalendar.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleCalendar.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -503,7 +503,7 @@ pipeline {
echo "WARNING: GoogleDrive.report file not found" echo "WARNING: GoogleDrive.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleDrive.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -533,7 +533,7 @@ pipeline {
echo "WARNING: GoogleSheets.report file not found" echo "WARNING: GoogleSheets.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleSheets.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -563,7 +563,7 @@ pipeline {
echo "WARNING: Notion.report file not found" echo "WARNING: Notion.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Notion.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -593,7 +593,7 @@ pipeline {
echo "WARNING: Slack.report file not found" echo "WARNING: Slack.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Slack.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -623,7 +623,7 @@ pipeline {
echo "WARNING: Airtable.report file not found" echo "WARNING: Airtable.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Airtable.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -653,7 +653,7 @@ pipeline {
echo "WARNING: Dropbox.report file not found" echo "WARNING: Dropbox.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Dropbox.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -683,7 +683,7 @@ pipeline {
echo "WARNING: Bitrix24.report file not found" echo "WARNING: Bitrix24.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Bitrix24.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -713,7 +713,7 @@ pipeline {
echo "WARNING: VkTeams.report file not found" echo "WARNING: VkTeams.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VkTeams.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -743,7 +743,7 @@ pipeline {
echo "WARNING: Neocities.report file not found" echo "WARNING: Neocities.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Neocities.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -773,7 +773,7 @@ pipeline {
echo "WARNING: CDEK.report file not found" echo "WARNING: CDEK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/CDEK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -803,7 +803,7 @@ pipeline {
echo "WARNING: YandexMetrika.report file not found" echo "WARNING: YandexMetrika.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexMetrika.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -833,7 +833,7 @@ pipeline {
echo "WARNING: S3.report file not found" echo "WARNING: S3.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/S3.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -863,7 +863,7 @@ pipeline {
echo "WARNING: TCP.report file not found" echo "WARNING: TCP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/TCP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -893,7 +893,7 @@ pipeline {
echo "WARNING: GreenAPI.report file not found" echo "WARNING: GreenAPI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenAPI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -923,7 +923,7 @@ pipeline {
echo "WARNING: GreenMax.report file not found" echo "WARNING: GreenMax.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenMax.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -953,7 +953,7 @@ pipeline {
echo "WARNING: Ollama.report file not found" echo "WARNING: Ollama.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Ollama.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -983,7 +983,7 @@ pipeline {
echo "WARNING: HTTPClient.report file not found" echo "WARNING: HTTPClient.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/HTTPClient.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -1013,7 +1013,7 @@ pipeline {
echo "WARNING: OpenAI.report file not found" echo "WARNING: OpenAI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/OpenAI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -1043,7 +1043,7 @@ pipeline {
echo "WARNING: ReportPortal.report file not found" echo "WARNING: ReportPortal.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/ReportPortal.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

68
ci/1c_test_ru vendored
View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Telegram.report file not found" echo "WARNING: Telegram.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Telegram.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -83,7 +83,7 @@ pipeline {
echo "WARNING: VK.report file not found" echo "WARNING: VK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -113,7 +113,7 @@ pipeline {
echo "WARNING: Viber.report file not found" echo "WARNING: Viber.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Viber.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -143,7 +143,7 @@ pipeline {
echo "WARNING: Twitter.report file not found" echo "WARNING: Twitter.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Twitter.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -173,7 +173,7 @@ pipeline {
echo "WARNING: FTP.report file not found" echo "WARNING: FTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/FTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -203,7 +203,7 @@ pipeline {
echo "WARNING: SSH.report file not found" echo "WARNING: SSH.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SSH.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -233,7 +233,7 @@ pipeline {
echo "WARNING: SFTP.report file not found" echo "WARNING: SFTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SFTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -263,7 +263,7 @@ pipeline {
echo "WARNING: PostgreSQL.report file not found" echo "WARNING: PostgreSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/PostgreSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -293,7 +293,7 @@ pipeline {
echo "WARNING: MySQL.report file not found" echo "WARNING: MySQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MySQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -323,7 +323,7 @@ pipeline {
echo "WARNING: MSSQL.report file not found" echo "WARNING: MSSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MSSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -353,7 +353,7 @@ pipeline {
echo "WARNING: SQLite.report file not found" echo "WARNING: SQLite.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SQLite.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -383,7 +383,7 @@ pipeline {
echo "WARNING: RCON.report file not found" echo "WARNING: RCON.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/RCON.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -413,7 +413,7 @@ pipeline {
echo "WARNING: YandexDisk.report file not found" echo "WARNING: YandexDisk.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexDisk.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -443,7 +443,7 @@ pipeline {
echo "WARNING: GoogleWorkspace.report file not found" echo "WARNING: GoogleWorkspace.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleWorkspace.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -473,7 +473,7 @@ pipeline {
echo "WARNING: GoogleCalendar.report file not found" echo "WARNING: GoogleCalendar.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleCalendar.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -503,7 +503,7 @@ pipeline {
echo "WARNING: GoogleDrive.report file not found" echo "WARNING: GoogleDrive.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleDrive.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -533,7 +533,7 @@ pipeline {
echo "WARNING: GoogleSheets.report file not found" echo "WARNING: GoogleSheets.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleSheets.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -563,7 +563,7 @@ pipeline {
echo "WARNING: Notion.report file not found" echo "WARNING: Notion.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Notion.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -593,7 +593,7 @@ pipeline {
echo "WARNING: Slack.report file not found" echo "WARNING: Slack.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Slack.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -623,7 +623,7 @@ pipeline {
echo "WARNING: Airtable.report file not found" echo "WARNING: Airtable.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Airtable.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -653,7 +653,7 @@ pipeline {
echo "WARNING: Dropbox.report file not found" echo "WARNING: Dropbox.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Dropbox.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -683,7 +683,7 @@ pipeline {
echo "WARNING: Bitrix24.report file not found" echo "WARNING: Bitrix24.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Bitrix24.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -713,7 +713,7 @@ pipeline {
echo "WARNING: VkTeams.report file not found" echo "WARNING: VkTeams.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VkTeams.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -743,7 +743,7 @@ pipeline {
echo "WARNING: Neocities.report file not found" echo "WARNING: Neocities.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Neocities.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -773,7 +773,7 @@ pipeline {
echo "WARNING: CDEK.report file not found" echo "WARNING: CDEK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/CDEK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -803,7 +803,7 @@ pipeline {
echo "WARNING: YandexMetrika.report file not found" echo "WARNING: YandexMetrika.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexMetrika.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -833,7 +833,7 @@ pipeline {
echo "WARNING: S3.report file not found" echo "WARNING: S3.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/S3.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -863,7 +863,7 @@ pipeline {
echo "WARNING: TCP.report file not found" echo "WARNING: TCP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/TCP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -893,7 +893,7 @@ pipeline {
echo "WARNING: GreenAPI.report file not found" echo "WARNING: GreenAPI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenAPI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -923,7 +923,7 @@ pipeline {
echo "WARNING: GreenMax.report file not found" echo "WARNING: GreenMax.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenMax.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -953,7 +953,7 @@ pipeline {
echo "WARNING: Ollama.report file not found" echo "WARNING: Ollama.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Ollama.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -983,7 +983,7 @@ pipeline {
echo "WARNING: HTTPКлиент.report file not found" echo "WARNING: HTTPКлиент.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/HTTPКлиент.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -1013,7 +1013,7 @@ pipeline {
echo "WARNING: OpenAI.report file not found" echo "WARNING: OpenAI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/OpenAI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }
@@ -1043,7 +1043,7 @@ pipeline {
echo "WARNING: ReportPortal.report file not found" echo "WARNING: ReportPortal.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/ReportPortal.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Airtable.report file not found" echo "WARNING: Airtable.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Airtable.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Airtable.report file not found" echo "WARNING: Airtable.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Airtable.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Bitrix24.report file not found" echo "WARNING: Bitrix24.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Bitrix24.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Bitrix24.report file not found" echo "WARNING: Bitrix24.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Bitrix24.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: CDEK.report file not found" echo "WARNING: CDEK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/CDEK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: CDEK.report file not found" echo "WARNING: CDEK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/CDEK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Dropbox.report file not found" echo "WARNING: Dropbox.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Dropbox.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Dropbox.report file not found" echo "WARNING: Dropbox.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Dropbox.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: FTP.report file not found" echo "WARNING: FTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/FTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: FTP.report file not found" echo "WARNING: FTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/FTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleCalendar.report file not found" echo "WARNING: GoogleCalendar.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleCalendar.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleCalendar.report file not found" echo "WARNING: GoogleCalendar.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleCalendar.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleDrive.report file not found" echo "WARNING: GoogleDrive.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleDrive.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleDrive.report file not found" echo "WARNING: GoogleDrive.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleDrive.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleSheets.report file not found" echo "WARNING: GoogleSheets.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleSheets.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleSheets.report file not found" echo "WARNING: GoogleSheets.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleSheets.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleWorkspace.report file not found" echo "WARNING: GoogleWorkspace.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleWorkspace.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GoogleWorkspace.report file not found" echo "WARNING: GoogleWorkspace.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GoogleWorkspace.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GreenAPI.report file not found" echo "WARNING: GreenAPI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenAPI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GreenAPI.report file not found" echo "WARNING: GreenAPI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenAPI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GreenMax.report file not found" echo "WARNING: GreenMax.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenMax.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: GreenMax.report file not found" echo "WARNING: GreenMax.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/GreenMax.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: HTTPClient.report file not found" echo "WARNING: HTTPClient.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/HTTPClient.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: HTTPКлиент.report file not found" echo "WARNING: HTTPКлиент.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/HTTPКлиент.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: MSSQL.report file not found" echo "WARNING: MSSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MSSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: MSSQL.report file not found" echo "WARNING: MSSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MSSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: MySQL.report file not found" echo "WARNING: MySQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MySQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: MySQL.report file not found" echo "WARNING: MySQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/MySQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Neocities.report file not found" echo "WARNING: Neocities.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Neocities.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Neocities.report file not found" echo "WARNING: Neocities.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Neocities.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Notion.report file not found" echo "WARNING: Notion.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Notion.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Notion.report file not found" echo "WARNING: Notion.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Notion.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Ollama.report file not found" echo "WARNING: Ollama.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Ollama.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Ollama.report file not found" echo "WARNING: Ollama.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Ollama.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: OpenAI.report file not found" echo "WARNING: OpenAI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/OpenAI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: OpenAI.report file not found" echo "WARNING: OpenAI.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/OpenAI.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: PostgreSQL.report file not found" echo "WARNING: PostgreSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/PostgreSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: PostgreSQL.report file not found" echo "WARNING: PostgreSQL.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/PostgreSQL.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: RCON.report file not found" echo "WARNING: RCON.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/RCON.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: RCON.report file not found" echo "WARNING: RCON.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/RCON.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: ReportPortal.report file not found" echo "WARNING: ReportPortal.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/ReportPortal.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: ReportPortal.report file not found" echo "WARNING: ReportPortal.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/ReportPortal.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: S3.report file not found" echo "WARNING: S3.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/S3.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: S3.report file not found" echo "WARNING: S3.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/S3.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: SFTP.report file not found" echo "WARNING: SFTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SFTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: SFTP.report file not found" echo "WARNING: SFTP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SFTP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: SQLite.report file not found" echo "WARNING: SQLite.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SQLite.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: SQLite.report file not found" echo "WARNING: SQLite.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SQLite.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: SSH.report file not found" echo "WARNING: SSH.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SSH.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: SSH.report file not found" echo "WARNING: SSH.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/SSH.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Slack.report file not found" echo "WARNING: Slack.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Slack.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Slack.report file not found" echo "WARNING: Slack.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Slack.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: TCP.report file not found" echo "WARNING: TCP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/TCP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: TCP.report file not found" echo "WARNING: TCP.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/TCP.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Telegram.report file not found" echo "WARNING: Telegram.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Telegram.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Telegram.report file not found" echo "WARNING: Telegram.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Telegram.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Twitter.report file not found" echo "WARNING: Twitter.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Twitter.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Twitter.report file not found" echo "WARNING: Twitter.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Twitter.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: VK.report file not found" echo "WARNING: VK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: VK.report file not found" echo "WARNING: VK.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VK.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Viber.report file not found" echo "WARNING: Viber.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Viber.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: Viber.report file not found" echo "WARNING: Viber.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/Viber.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: VkTeams.report file not found" echo "WARNING: VkTeams.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VkTeams.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: VkTeams.report file not found" echo "WARNING: VkTeams.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/VkTeams.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: YandexDisk.report file not found" echo "WARNING: YandexDisk.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexDisk.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: YandexDisk.report file not found" echo "WARNING: YandexDisk.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexDisk.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: YandexMetrika.report file not found" echo "WARNING: YandexMetrika.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexMetrika.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -53,7 +53,7 @@ pipeline {
echo "WARNING: YandexMetrika.report file not found" echo "WARNING: YandexMetrika.report file not found"
} }
def exitCode = readFile('code.log').trim().replaceAll("[^0-9]", "") def exitCode = readFile('./test_results/YandexMetrika.code').trim().replaceAll("[^0-9]", "")
if (exitCode != "0") { if (exitCode != "0") {
error "Tests failed with exit code: ${exitCode}" error "Tests failed with exit code: ${exitCode}"
} }

View File

@@ -4,7 +4,7 @@
PictureFile = GetTempFileName("png"); PictureFile = GetTempFileName("png");
Image.Write(PictureFile); // PictureFile - File to disk Image.Write(PictureFile); // PictureFile - File to disk
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
DataArray = New Array; DataArray = New Array;

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Name = "new_col"; Name = "new_col";
DataType = "TEXT"; DataType = "TEXT";

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Result = OPI_SQLite.ClearTable(Table, Base); Result = OPI_SQLite.ClearTable(Table, Base);

View File

@@ -4,7 +4,7 @@
Extension = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Path or Binary Data Extension = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Path or Binary Data
EndIf; EndIf;
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
EntryPoint = "sqlite3_uuid_init"; EntryPoint = "sqlite3_uuid_init";
Connection = OPI_SQLite.CreateConnection(Base); Connection = OPI_SQLite.CreateConnection(Base);

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
ColoumnsStruct = New Structure; ColoumnsStruct = New Structure;

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Filters = New Array; Filters = New Array;

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Result = OPI_SQLite.DeleteTable(Table, Base); Result = OPI_SQLite.DeleteTable(Table, Base);

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Name = "new_col"; Name = "new_col";

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Fields = New Array; Fields = New Array;

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Result = OPI_SQLite.GetTableInformation(Table, Base); Result = OPI_SQLite.GetTableInformation(Table, Base);

View File

@@ -1,4 +1,4 @@
 Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
FieldsStructure = New Structure; FieldsStructure = New Structure;

View File

@@ -46,7 +46,7 @@ Parameters with Binary data type can also accept file paths on disk and URLs
Extension = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Path or Binary Data Extension = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Path or Binary Data
EndIf; EndIf;
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
EntryPoint = "sqlite3_uuid_init"; EntryPoint = "sqlite3_uuid_init";
Connection = OPI_SQLite.CreateConnection(Base); Connection = OPI_SQLite.CreateConnection(Base);

View File

@@ -39,7 +39,7 @@ Binary data can also be transferred as a structure `{'blob':File path}`
PictureFile = GetTempFileName("png"); PictureFile = GetTempFileName("png");
Image.Write(PictureFile); // PictureFile - File to disk Image.Write(PictureFile); // PictureFile - File to disk
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
DataArray = New Array; DataArray = New Array;

View File

@@ -29,7 +29,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Name = "new_col"; Name = "new_col";
DataType = "TEXT"; DataType = "TEXT";

View File

@@ -27,7 +27,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Result = OPI_SQLite.ClearTable(Table, Base); Result = OPI_SQLite.ClearTable(Table, Base);

View File

@@ -28,7 +28,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
ColoumnsStruct = New Structure; ColoumnsStruct = New Structure;

View File

@@ -28,7 +28,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Filters = New Array; Filters = New Array;

View File

@@ -28,7 +28,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Name = "new_col"; Name = "new_col";

View File

@@ -27,7 +27,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Result = OPI_SQLite.DeleteTable(Table, Base); Result = OPI_SQLite.DeleteTable(Table, Base);

View File

@@ -34,7 +34,7 @@ This function does not update the data type of existing columns
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";

View File

@@ -35,7 +35,7 @@ Values of the Binary data type (BLOB) are returned as `{'blob':Base64 string}`
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Fields = New Array; Fields = New Array;

View File

@@ -27,7 +27,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
Result = OPI_SQLite.GetTableInformation(Table, Base); Result = OPI_SQLite.GetTableInformation(Table, Base);

View File

@@ -29,7 +29,7 @@ import TabItem from '@theme/TabItem';
```bsl title="1C:Enterprise/OneScript code example" ```bsl title="1C:Enterprise/OneScript code example"
Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; Base = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Table = "test"; Table = "test";
FieldsStructure = New Structure; FieldsStructure = New Structure;

View File

@@ -1,4 +1,4 @@
 База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Таблица = "test"; Таблица = "test";

View File

@@ -4,7 +4,7 @@
ФайлКартинки = ПолучитьИмяВременногоФайла("png"); ФайлКартинки = ПолучитьИмяВременногоФайла("png");
Картинка.Записать(ФайлКартинки); // ФайлКартинки - Файл на диске Картинка.Записать(ФайлКартинки); // ФайлКартинки - Файл на диске
База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Таблица = "test"; Таблица = "test";
МассивДанных = Новый Массив; МассивДанных = Новый Массив;

View File

@@ -1,4 +1,4 @@
 База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Таблица = "test"; Таблица = "test";
Имя = "new_col"; Имя = "new_col";
ТипДанных = "TEXT"; ТипДанных = "TEXT";

View File

@@ -1,4 +1,4 @@
 База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Таблица = "test"; Таблица = "test";
СтруктураПолей = Новый Структура; СтруктураПолей = Новый Структура;

View File

@@ -1,4 +1,4 @@
 База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite";  База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
Таблица = "test"; Таблица = "test";
Результат = OPI_SQLite.ОчиститьТаблицу(Таблица, База); Результат = OPI_SQLite.ОчиститьТаблицу(Таблица, База);

View File

@@ -4,7 +4,7 @@
Расширение = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Путь или Двоичные данные Расширение = "https://hut.openintegrations.dev/test_data/uuid.so"; // URL, Путь или Двоичные данные
КонецЕсли; КонецЕсли;
База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_40.sqlite"; База = "C:\Users\bayse\AppData\Local\Temp\v8_FF37_66.sqlite";
ТочкаВхода = "sqlite3_uuid_init"; ТочкаВхода = "sqlite3_uuid_init";
Соединение = OPI_SQLite.ОткрытьСоединение(База); Соединение = OPI_SQLite.ОткрытьСоединение(База);

Some files were not shown because too many files have changed in this diff Show More