/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "ua_types.h" #include "ua_types_encoding_binary.h" #include "ua_types_generated.h" #include "ua_types_generated_handling.h" #include "ua_types_generated_encoding_binary.h" #include "ua_securechannel.h" #include "ua_util.h" #include "check.h" UA_ByteString *buffers; size_t bufIndex; size_t counter; size_t dataCount; static UA_StatusCode sendChunkMockUp(UA_ChunkInfo *ci, UA_ByteString *dst, size_t offset) { bufIndex++; dst->data = buffers[bufIndex].data; dst->length = buffers[bufIndex].length; counter++; dataCount += offset; return UA_STATUSCODE_GOOD; } START_TEST(encodeArrayIntoFiveChunksShallWork) { size_t arraySize = 30; //number of elements within the array which should be encoded size_t offset = 0; // encoding offset size_t chunkCount = 6; // maximum chunk count size_t chunkSize = 30; //size in bytes of each chunk UA_ChunkInfo ci; bufIndex = 0; counter = 0; dataCount = 0; UA_Int32 *ar = UA_Array_new(arraySize,&UA_TYPES[UA_TYPES_INT32]); buffers = UA_Array_new(chunkCount, &UA_TYPES[UA_TYPES_BYTESTRING]); for(size_t i=0;i