123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358 |
- //
- // MAVLinkTests.swift
- // MAVLinkTests
- //
- // Created by Max Odnovolyk on 9/28/16.
- // Copyright © 2016 Build Apps. All rights reserved.
- //
- import Foundation
- import XCTest
- @testable import MAVLink
- class DataExtensionsTests: XCTestCase {
-
- // MARK: - Test number<T: MAVLinkNumber>(at offset: Data.Index, byteOrder: CFByteOrder) throws -> T
-
- func testGetNumberCannotGetTooLargeNumber() {
- let data = Data(count: 4)
-
- let test: () throws -> Void = {
- let _: Int32 = try data.number(at: 1)
- }
-
- XCTAssertThrowsError(try test()) { error in
- switch error {
- case let ParseError.valueSizeOutOfBounds(offset, size, upperBound) where offset + size > upperBound:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testGetNumberDidGetNumberAtOffset() {
- let data = Data(bytes: [0x00, 0x00, 0x01, 0x02, 0x03, 0x04])
- let expectedNumber: UInt32 = 0x01_02_03_04
- let receivedNumber: UInt32 = try! data.number(at: 2, byteOrder: .bigEndian)
-
- XCTAssert(receivedNumber == expectedNumber, "Method should return number value available at specified offset in data")
- }
-
- func testGetNumberByteOrderIsSwappedOnLittleEndianSystem() {
- let memoryBytes: [UInt8] = [0x04, 0x03, 0x02, 0x01]
- let expectedNumber: UInt32 = 0x01_02_03_04
-
- let data = Data(bytes: memoryBytes)
- let receivedNumber: UInt32 = try! data.number(at: 0, byteOrder: .littleEndian)
-
- XCTAssert(receivedNumber == expectedNumber, "Method expects swapped bytes in memory on little-endian system (most significant digit byte at the end)")
- }
-
- func testGetNumberByteOrderRemainsSameOnBigEndianSystem() {
- let memoryBytes: [UInt8] = [0x01, 0x02, 0x03, 0x04]
- let expectedNumber: UInt32 = 0x01_02_03_04
-
- let data = Data(bytes: memoryBytes)
- let receivedNumber: UInt32 = try! data.number(at: 0, byteOrder: .bigEndian)
-
- XCTAssert(receivedNumber == expectedNumber, "Method expects less significant digit byte at the end of value's memory chunk")
- }
-
- // MARK: Test array<T: MAVLinkNumber>(at offset: Data.Index, capacity: Int) throws -> [T]
-
- func testGetArrayCannotAccessBytesOutOfDataUpperBound() {
- let data = Data(count: 4)
-
- let test: () throws -> Void = {
- let _: [UInt8] = try data.array(at: 1, capacity: 4)
- }
-
- XCTAssertThrowsError(try test()) { error in
- switch error {
- case let ParseError.valueSizeOutOfBounds(offset, size, upperBound) where offset + size > upperBound:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testGetArrayDidGetArrayAtOffset() {
- let data = Data(bytes: [0x00, 0x00, 0x01, 0x02, 0x03, 0x00])
- let expectedArray: [UInt8] = [0x01, 0x02, 0x03]
- let receivedArray: [UInt8] = try! data.array(at: 2, capacity: 3)
-
- XCTAssert(receivedArray == expectedArray, "Expect array values at specified offset in data")
- }
-
- func testGetArrayDidGetRequestedNumberOfItems() {
- let data = Data(count: 4)
- let itemsCountToGet = 3
-
- let receivedArray: [UInt8] = try! data.array(at: 1, capacity: itemsCountToGet)
- XCTAssert(receivedArray.count == itemsCountToGet, "Expect requested capacity of array to be equal to received array's count")
- }
-
- // MARK: Test string(at offset: Data.Index, length: Int) throws -> String
-
- func testGetStringCannotAccessBytesOutOfDataUpperBound() {
- let data = Data(count: 4)
-
- XCTAssertThrowsError(try data.string(at: 1, length: 4)) { error in
- switch error {
- case let ParseError.valueSizeOutOfBounds(offset, size, upperBound) where offset + size > upperBound:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
- func testGetStringCannotReadNonASCIISEncodedString() {
- // Check that invalidStringEncoding is thrown in case of non ASCII compatible strings.
- // It looks like all strings are ASCII compatible for String(bytes: encoding:) method.
- }
-
- func testGetStringDidReadASCIIEncodedStringAtSpecifiedOffset() {
- let data = Data(bytes: [0x60, 0x61, 0x62, 0x63, 0x64, 0x65]) // "`abcde"
- let string = try! data.string(at: 3, length: 3)
-
- XCTAssert(string == "cde", "Expect string at offset 3 (cde)")
- }
-
- func testGetStringDidReadEmptyNullTerminatedASCIIEncodedString() {
- let data = Data(bytes: [0x00, 0x00, 0x00, 0x00, 0x00, 0x00]) // "\0\0\0\0\0\0"
- let string = try! data.string(at: 1, length: 4)
-
- XCTAssert(string == "", "Expect to get empty string from zeroed data bytes")
- }
-
- func testGetStringDidReadNullTerminatedASCIIEncodedString() {
- let data = Data(bytes: [0x60, 0x61, 0x62, 0x0, 0x64, 0x65]) // "`ab\0de"
- let string = try! data.string(at: 1, length: 4)
-
- XCTAssert(string == "ab", "Expect cutted off by null-termination string")
- }
-
- func testGetStringDidReadExactlyLengthSizedASCIIEncodedStringWithoutNullTermination() {
- let data = Data(bytes: [0x60, 0x61, 0x62, 0x63, 0x64, 0x65]) // "`abcde"
- let string = try! data.string(at: 1, length: 3)
-
- XCTAssert(string == "abc", "Expect cutted off by length limit string")
- }
-
- // MARK: Test enumeration<T: Enumeration>(at offset: Data.Index) throws -> T where T.RawValue: MAVLinkNumber
-
- func testGetEnumerationCannotInitWithUnknownValue() {
- let data = Data(bytes: [UInt8(ADSBAltitudeType.enumEnd)])
-
- let test: () throws -> Void = {
- let _: ADSBAltitudeType = try data.enumeration(at: 0)
- }
-
- XCTAssertThrowsError(try test()) { error in
- switch error {
- case ParseEnumError<ADSBAltitudeType>.unknownValue:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testGetEnumerationDidGetProperCaseAtOffset() {
- let data = Data(bytes: [0x00, 0x00, ADSBAltitudeType.geometric.rawValue])
- let adsbAltitudeType: ADSBAltitudeType = try! data.enumeration(at: 2)
-
- XCTAssert(adsbAltitudeType == .geometric, "Expected adsbAltitudeType is .geometric")
- }
-
- // MARK: - Test set<T: MAVLinkNumber>(_ number: T, at offset: Data.Index, byteOrder: CFByteOrder) throws -> Void
-
- func testSetNumberCannotSetTooLargeNumber() {
- var data = Data(count: 4)
-
- XCTAssertThrowsError(try data.set(Int32(1), at: 1)) { error in
- switch error {
- case let PackError.valueSizeOutOfBounds(offset, size, upperBound) where offset + size > upperBound:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testSetNumberDidSetNumberAtOffset() {
- var data = Data(count: 6)
- let number: UInt32 = 0x01_02_03_04
- let expectedData = Data(bytes: [0x00, 0x00, 0x01, 0x02, 0x03, 0x04])
- try! data.set(number, at: 2, byteOrder: .bigEndian)
-
- XCTAssert(data == expectedData, "Method should set number at specified offset in data memory")
- }
-
- func testSetNumberByteOrderIsSwappedOnLittleEndianSystem() {
- var data = Data(count: 4)
- let number: UInt32 = 0x01_02_03_04
- let expectedData = Data(bytes: [0x04, 0x03, 0x02, 0x01])
-
- try! data.set(number, at: 0, byteOrder: .littleEndian)
-
- XCTAssert(data == expectedData, "Method should write swapped bytes in memory on little-endian system (most significant digit byte at the end)")
- }
-
- func testSetNumberByteOrderRemainsSameOnBigEndianSystem() {
- var data = Data(count: 4)
- let number: UInt32 = 0x01_02_03_04
- let expectedData = Data(bytes: [0x01, 0x02, 0x03, 0x04])
-
- try! data.set(number, at: 0, byteOrder: .bigEndian)
-
- XCTAssert(data == expectedData, "Method should write less significant digit byte at the end of data's memory chunk")
- }
-
- // MARK: Test set<T: MAVLinkNumber>(_ array: [T], at offset: Data.Index, capacity: Int) throws
-
- func testSetArrayCannotSetArrayWithLessCapacityThanArrayCount() {
- var data = Data(count: 6)
- let array = Array<UInt8>(repeating: 0, count: 4)
-
- XCTAssertThrowsError(try data.set(array, at: 0, capacity: 3)) { error in
- switch error {
- case let PackError.invalidValueLength(offset, providedValueLength, allowedLength) where offset == 0 && providedValueLength > allowedLength:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testSetArrayCannotSetValuesOutOfDataUpperBound() {
- var data = Data(count: 10)
- let array = Array<UInt64>(repeating: 0, count: 2)
-
- XCTAssertThrowsError(try data.set(array, at: 0, capacity: 16)) { error in
- switch error {
- case let PackError.valueSizeOutOfBounds(offset, size, upperBound) where offset == 0 && offset + size > upperBound:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testSetArrayDidSetValuesAtOffset() {
- var data = Data(count: 6)
- let array: [UInt8] = [0x01, 0x02, 0x03, 0x04]
- let expectedData = Data(bytes: [0x00, 0x01, 0x02, 0x03, 0x04, 0x00])
-
- try! data.set(array, at: 1, capacity: 4)
-
- XCTAssert(data == expectedData, "Method should write array values at specified offset")
- }
-
- // MARK: Test set(_ string: String, at offset: Data.Index, length: Int) throws
-
- func testSetStringCannotSetNonASCIIString() {
- var data = Data(count: 10)
-
- XCTAssertThrowsError(try data.set("💩", at: 0, length: 4)) { error in
- switch error {
- case let PackError.invalidStringEncoding(offset, string) where offset == 0 && string == "💩":
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testSetStringCanntSetTooLongString() {
- var data = Data(count: 5)
-
- XCTAssertThrowsError(try data.set("abcdef", at: 0, length: 6)) { error in
- switch error {
- case let PackError.valueSizeOutOfBounds(offset, size, upperBound) where offset == 0 && offset + size > upperBound:
- break
- default:
- XCTFail("Unexpected error thrown")
- }
- }
- }
-
- func testSetStringDidSetNullTerminatedStringAtOffset() {
- var data = Data(bytes: Array<UInt8>(repeating: 0xFF, count: 5))
- let expectedData = Data(bytes: [0xFF, 0x61, 0x62, 0x63, 0x00])
-
- try! data.set("abc", at: 1, length: 4)
-
- XCTAssert(data == expectedData, "Method should write ASCII string bytes at specified offset with null byte at the end")
- }
-
- func testSetStringDidSetEmptyString() {
- var data = Data(bytes: Array<UInt8>(repeating: 0xFF, count: 5))
- let expectedData = Data(bytes: [0xFF, 0xFF, 0x00, 0xFF, 0xFF])
-
- try! data.set("", at: 2, length: 3)
-
- XCTAssert(data == expectedData, "Method should accept empty string as valid ASCII encoded string and add null termination")
- }
-
- // MARK: Test set<T: Enumeration>(_ enumeration: T, at offset: Data.Index) throws
-
- func testSetEnumerationDidSetProperRawValueAtOffset() {
- var data = Data(bytes: Array<UInt8>(repeating: 0x00, count: 4))
- let expectedData = Data(bytes: [0x00, 0x00, 0x00, MAVVTOLState.fw.rawValue])
-
- try! data.set(MAVVTOLState.fw, at: 3)
-
- XCTAssert(data == expectedData, "Method should set appropriate case raw value at specified offset")
- }
-
- // MARK: - Test write-read methods calls return consistent values
-
- func testGetNumberDidGetSameValuePreviouslySetWithSetNumberCall() {
- var data = Data(count: 10)
- let offset = 1
- let number = UInt64(0x01_02_03_04_05_06_07_08)
-
- try! data.set(number, at: offset)
- let receivedNumber: UInt64 = try! data.number(at: offset)
-
- XCTAssert(receivedNumber == number)
- }
-
- func testGetArrayDidGetSameValuePreviouslySetWithSetArrayCall() {
- var data = Data(count: 10)
- let offset = 1
- let array: [UInt8] = [0x00, 0x01, 0x02, 0x03, 0x04]
-
- try! data.set(array, at: offset, capacity: 5)
- let receivedArray: [UInt8] = try! data.array(at: offset, capacity: 5)
-
- XCTAssert(receivedArray == array)
- }
-
- func testGetStringDidGetSameValuePreviouslySetWithSetStringCall() {
- var data = Data(count: 10)
- let offset = 1
- let string = "test"
-
- try! data.set(string, at: offset, length: 9)
- let receivedString = try! data.string(at: offset, length: 9)
-
- XCTAssert(receivedString == string)
- }
-
- func testGetEnumerationDidGetSameValuePreviouslySetWithSetEnumerationCall() {
- var data = Data(count: 10)
- let offset = 1
- let mavvtolState = MAVVTOLState.fw
-
- try! data.set(mavvtolState, at: offset)
- let receivedMavvtolState: MAVVTOLState = try! data.enumeration(at: offset)
-
- XCTAssert(receivedMavvtolState == mavvtolState)
- }
- }
|