1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-29 21:57:16 +02:00

Преобразование OPI -> OInt (workflow)

This commit is contained in:
Vitaly the Alpaca 2024-06-03 11:12:15 +00:00 committed by Vitaly the Alpaca (bot)
parent b837bd9e5d
commit f97105eba0
10 changed files with 33 additions and 33 deletions

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tests/Modules/internal/OPI_Tests.os
// MIT License
@ -500,7 +500,7 @@ Procedure VKAPI_CreateAdCampaign() Export
Parameters = GetVKParameters();
CabinetID = OPI_TestDataRetrieval.GetParameter("VK_AdsCabinetID");
Name = "";
Name = "Test ads";
TypeMatch = Type("Map");
TypeNumber = Type("Number");
Response_ = "response";
@ -709,16 +709,16 @@ Procedure VKAPI_CreateProductWithProperties() Export
TypeNumber = Type("Number");
MII_ = "market_item_id";
Response_ = "response";
= "Yellow";
= "Red";
Yellow_ = "Yellow";
Red_ = "Red";
Image = OPI_TestDataRetrieval.GetBinary("Picture");
AndVF = GetTempFileName("png");
Image.Write(AndVF);
OptionArray = New Array;
OptionArray.Add();
OptionArray.Add(Yellow_);
OptionArray.Add("Blue");
OptionArray.Add();
OptionArray.Add(Red_);
Result = OPI_VK.CreateProductProperty("Color", Parameters);
@ -772,7 +772,7 @@ Procedure VKAPI_CreateProductWithProperties() Export
ImageArray.Add(Image);
Product = New Map();
Product.Insert("Name" , "TestProduct (" + + ")");
Product.Insert("Name" , "TestProduct (" + Yellow_ + ")");
Product.Insert("Description" , "Product description");
Product.Insert("Category" , "20173");
Product.Insert("Price" , 1);
@ -788,7 +788,7 @@ Procedure VKAPI_CreateProductWithProperties() Export
Product.Insert("Weight" , 100);
Product.Insert("SKU" , 12345);
Product.Insert("AvailableBalance" , "10");
Product.Insert("PropertyValues" , PropertyMatch[]);
Product.Insert("PropertyValues" , PropertyMatch[Yellow_]);
Result = OPI_VK.AddProduct(Product, , Parameters); // Adding product
@ -801,8 +801,8 @@ Procedure VKAPI_CreateProductWithProperties() Export
OPI_TestDataRetrieval.ExpectsThat(Result).ИмеетТип(TypeMatch);
OPI_TestDataRetrieval.ExpectsThat(Result[Response_][MII_]).ИмеетТип(TypeNumber).Заполнено();
Product.Insert("Name" , "TestProduct (" + + ")");
Product.Insert("PropertyValues", PropertyMatch[]);
Product.Insert("Name" , "TestProduct (" + Red_ + ")");
Product.Insert("PropertyValues", PropertyMatch[Red_]);
Result = OPI_VK.AddProduct(Product, , Parameters); // Adding product
@ -1955,10 +1955,10 @@ Procedure GT_CreateTable() Export
OPI_TestDataRetrieval.WriteParameter("GS_Spreadsheet", Book);
OPI_TestDataRetrieval.WriteParameter("GS_Sheet" , Sheet);
Name = ".)";
Name = "Test table (new.)";
Result = OPI_GoogleSheets.CreateBook(Token, Name, SheetArray);
OPI_TestDataRetrieval.WriteLog(Result, "CopySheet (add.)");
OPI_TestDataRetrieval.WriteLog(Result, ".)");
Book2 = Result["spreadsheetId"];

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/OPI_TestDataRetrieval.os
// MIT License

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/OPI_TypeConversion.os
// MIT License

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/internal/Modules/OPI_Cryptography.os
// MIT License

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/internal/Modules/OPI_Tools.os
// MIT License

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/internal/Modules/OPI_Cryptography.os
// MIT License

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/OPI_TestDataRetrieval.os
// MIT License

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tests/Modules/internal/OPI_Tests.os
// MIT License
@ -500,7 +500,7 @@ Procedure VKAPI_CreateAdCampaign() Export
Parameters = GetVKParameters();
CabinetID = OPI_TestDataRetrieval.GetParameter("VK_AdsCabinetID");
Name = "";
Name = "Test ads";
TypeMatch = Type("Map");
TypeNumber = Type("Number");
Response_ = "response";
@ -709,16 +709,16 @@ Procedure VKAPI_CreateProductWithProperties() Export
TypeNumber = Type("Number");
MII_ = "market_item_id";
Response_ = "response";
= "Yellow";
= "Red";
Yellow_ = "Yellow";
Red_ = "Red";
Image = OPI_TestDataRetrieval.GetBinary("Picture");
AndVF = GetTempFileName("png");
Image.Write(AndVF);
OptionArray = New Array;
OptionArray.Add();
OptionArray.Add(Yellow_);
OptionArray.Add("Blue");
OptionArray.Add();
OptionArray.Add(Red_);
Result = OPI_VK.CreateProductProperty("Color", Parameters);
@ -772,7 +772,7 @@ Procedure VKAPI_CreateProductWithProperties() Export
ImageArray.Add(Image);
Product = New Map();
Product.Insert("Name" , "TestProduct (" + + ")");
Product.Insert("Name" , "TestProduct (" + Yellow_ + ")");
Product.Insert("Description" , "Product description");
Product.Insert("Category" , "20173");
Product.Insert("Price" , 1);
@ -788,7 +788,7 @@ Procedure VKAPI_CreateProductWithProperties() Export
Product.Insert("Weight" , 100);
Product.Insert("SKU" , 12345);
Product.Insert("AvailableBalance" , "10");
Product.Insert("PropertyValues" , PropertyMatch[]);
Product.Insert("PropertyValues" , PropertyMatch[Yellow_]);
Result = OPI_VK.AddProduct(Product, , Parameters); // Adding product
@ -801,8 +801,8 @@ Procedure VKAPI_CreateProductWithProperties() Export
OPI_TestDataRetrieval.ExpectsThat(Result).ИмеетТип(TypeMatch);
OPI_TestDataRetrieval.ExpectsThat(Result[Response_][MII_]).ИмеетТип(TypeNumber).Заполнено();
Product.Insert("Name" , "TestProduct (" + + ")");
Product.Insert("PropertyValues", PropertyMatch[]);
Product.Insert("Name" , "TestProduct (" + Red_ + ")");
Product.Insert("PropertyValues", PropertyMatch[Red_]);
Result = OPI_VK.AddProduct(Product, , Parameters); // Adding product
@ -1173,7 +1173,7 @@ Procedure YDisk_MoveObject() Export
Result = OPI_YandexDisk.UploadFileByURL(Token, OriginalPath, URL);
// ");
// !OInt OPI_TestDataRetrieval.WriteLog(Result, "UploadFileByURL");
OPI_Tools.Pause(15);
@ -1955,10 +1955,10 @@ Procedure GT_CreateTable() Export
OPI_TestDataRetrieval.WriteParameter("GS_Spreadsheet", Book);
OPI_TestDataRetrieval.WriteParameter("GS_Sheet" , Sheet);
Name = ".)";
Name = "Test table (new.)";
Result = OPI_GoogleSheets.CreateBook(Token, Name, SheetArray);
// .)");
// !OInt OPI_TestDataRetrieval.WriteLog(Result, "CopySheet (new.)");
Book2 = Result["spreadsheetId"];

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/internal/Modules/OPI_Tools.os
// MIT License

View File

@ -1,4 +1,4 @@
//
// OneScript: ./OInt/tools/Modules/OPI_TypeConversion.os
// MIT License