1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-02 22:05:37 +02:00

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

This commit is contained in:
Vitaly the Alpaca 2024-06-03 14:13:47 +00:00 committed by Vitaly the Alpaca (bot)
parent 2b56800b69
commit 22302abfce
3 changed files with 12 additions and 16 deletions

View File

@ -1,27 +1,23 @@
#Use 1commands #Use 1commands
#Use coverage #Use coverage
#Use fs #Use fs
#Use oint
FS.EnsureEmptyDirectory("./OInt/coverage/data"); FS.EnsureEmptyDirectory("coverage\data");
PathToStat = FS.FullPath("./OInt/coverage/data/stat.json"); PathToStat = "coverage\stat.json";
Command = New Command; Command = New Command;
Command.SetCommand("oscript"); Command.SetCommand("oscript");
Command.AddParameter(StrTemplate("-codestat=%1", PathToStat)); Command.AddParameter(StrTemplate("-codestat=%1", PathToStat));
Command.AddParameter(FS.FullPath("./OInt/tests/Modules/Coverage_RunAllTests.os")); // File start tests Command.AddParameter("D:\REPOS\OpenIntegrations\src\ru\OInt\tests\Modules\Coverage_ЗапуwithtoInwithехTestоin.os"); // File start tests
Command.ShowOutputImmediately(True); Command.ShowOutputImmediately(True);
ReturnCode = Command.Execute();
File_Stat = New File(PathToStat); File_Stat = New File(PathToStat);
PackageName = "oint";
GenerationProcessor = New CoverageReportGenerator(); GenerationProcessor = New CoverageReportGenerator();
Message(File_Stat.FullName); Message(File_Stat.FullName);
ProcessorObject = GenerationProcessor.StatisticsFile(File_Stat.FullName); GenerationProcessor.ОтноwithительныеPaths()
ProcessorObject = ProcessorObject.SourceDirectory(FS.FullPath("./OInt")); .StatisticsFile(File_Stat.FullName)
ProcessorObject = ProcessorObject.WorkingDirectory(FS.FullPath("./OInt/coverage/data")); .SourceDirectory("D:\REPOS\OpenIntegrations\src\ru\OInt\core")
ProcessorObject = ProcessorObject.GenericCoverage(); .GenericCoverage()
.Formulate();
ProcessorObject.Formulate();

View File

@ -77,10 +77,10 @@ Function HMAC(Val Key, Val Data, Type, BlockSize) Export
Ipad = GetBinaryDataBufferFromHexString(RepeatString("36", BlockSize)); Ipad = GetBinaryDataBufferFromHexString(RepeatString("36", BlockSize));
Opad = GetBinaryDataBufferFromHexString(RepeatString("5c", BlockSize)); Opad = GetBinaryDataBufferFromHexString(RepeatString("5c", BlockSize));
Ipad.WriteBitwiseExclusiveOr(0, Key); Ipad.WriteBitwiseXor(0, Key);
Ikeypad = GetBinaryDataFromBinaryDataBuffer(ipad); Ikeypad = GetBinaryDataFromBinaryDataBuffer(ipad);
Opad.WriteBitwiseExclusiveOr(0, Key); Opad.WriteBitwiseXor(0, Key);
Okeypad = GetBinaryDataFromBinaryDataBuffer(opad); Okeypad = GetBinaryDataFromBinaryDataBuffer(opad);
Return Hash(UniteBinaryData(okeypad, Hash(UniteBinaryData(ikeypad, Data), Type)), Type); Return Hash(UniteBinaryData(okeypad, Hash(UniteBinaryData(ikeypad, Data), Type)), Type);

View File

@ -77,10 +77,10 @@ Function HMAC(Val Key, Val Data, Type, BlockSize) Export
Ipad = GetBinaryDataBufferFromHexString(RepeatString("36", BlockSize)); Ipad = GetBinaryDataBufferFromHexString(RepeatString("36", BlockSize));
Opad = GetBinaryDataBufferFromHexString(RepeatString("5c", BlockSize)); Opad = GetBinaryDataBufferFromHexString(RepeatString("5c", BlockSize));
Ipad.WriteBitwiseExclusiveOr(0, Key); Ipad.WriteBitwiseXor(0, Key);
Ikeypad = GetBinaryDataFromBinaryDataBuffer(ipad); Ikeypad = GetBinaryDataFromBinaryDataBuffer(ipad);
Opad.WriteBitwiseExclusiveOr(0, Key); Opad.WriteBitwiseXor(0, Key);
Okeypad = GetBinaryDataFromBinaryDataBuffer(opad); Okeypad = GetBinaryDataFromBinaryDataBuffer(opad);
Return Hash(UniteBinaryData(okeypad, Hash(UniteBinaryData(ikeypad, Data), Type)), Type); Return Hash(UniteBinaryData(okeypad, Hash(UniteBinaryData(ikeypad, Data), Type)), Type);