ExtensionsTest.swift 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. //
  2. // CryptoSwift
  3. //
  4. // Copyright (C) 2014-2017 Marcin Krzyżanowski <marcin@krzyzanowskim.com>
  5. // This software is provided 'as-is', without any express or implied warranty.
  6. //
  7. // In no event will the authors be held liable for any damages arising from the use of this software.
  8. //
  9. // Permission is granted to anyone to use this software for any purpose,including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
  10. //
  11. // - The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation is required.
  12. // - Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  13. // - This notice may not be removed or altered from any source or binary distribution.
  14. //
  15. @testable import CryptoSwift
  16. import Foundation
  17. import XCTest
  18. final class ExtensionsTest: XCTestCase {
  19. func testBytes() {
  20. let size = MemoryLayout<UInt32>.size // 32 or 64 bit
  21. let i: UInt32 = 1024
  22. var bytes = i.bytes()
  23. XCTAssertTrue(bytes.count == size, "Invalid bytes length = \(bytes.count)")
  24. // test padding
  25. bytes = i.bytes(totalBytes: 16)
  26. XCTAssertTrue(bytes.count == 16, "Invalid return type \(bytes.count)")
  27. XCTAssertTrue(bytes[14] == 4, "Invalid return type \(bytes.count)")
  28. }
  29. func testToUInt32Array() {
  30. let chunk: ArraySlice<UInt8> = [0x8, 0x7, 0x6, 0x5, 0x4, 0x3, 0x2, 0x1]
  31. let result = chunk.toUInt32Array()
  32. XCTAssert(result.count == 2, "Invalid conversion")
  33. XCTAssertEqual(result[0], 0x5060708)
  34. XCTAssertEqual(result[1], 0x1020304)
  35. }
  36. func testDataInit() {
  37. let data = Data(bytes: [0x01, 0x02, 0x03])
  38. XCTAssert(data.count == 3, "Invalid data")
  39. }
  40. func testStringEncrypt() {
  41. do {
  42. let encryptedHex = try "my secret string".encrypt(cipher: AES(key: "secret0key000000", iv: "0123456789012345"))
  43. XCTAssertEqual(encryptedHex, "68f7ff8bdb61f625febdfe3d791ecf624daaed2e719a6de39112de8e0cc7349b")
  44. } catch {
  45. XCTFail(error.localizedDescription)
  46. }
  47. }
  48. func testEmptyStringEncrypt() {
  49. do {
  50. let cipher = try AES(key: "secret0key000000".bytes.md5(), blockMode: .ECB)
  51. let encrypted = try "".encryptToBase64(cipher: cipher)
  52. let decrypted = try encrypted?.decryptBase64ToString(cipher: cipher)
  53. XCTAssertEqual("", decrypted)
  54. XCTAssertThrowsError(try "".decryptBase64(cipher: cipher))
  55. } catch {
  56. XCTFail(error.localizedDescription)
  57. }
  58. }
  59. func testStringDecryptBase64() {
  60. let encryptedBase64 = "aPf/i9th9iX+vf49eR7PYk2q7S5xmm3jkRLejgzHNJs="
  61. let decrypted = try! encryptedBase64.decryptBase64ToString(cipher: AES(key: "secret0key000000", iv: "0123456789012345"))
  62. XCTAssertEqual(decrypted, "my secret string")
  63. }
  64. func testArrayInitHex() {
  65. let bytes = Array<UInt8>(hex: "0xb1b1b2b2")
  66. XCTAssertEqual(bytes, [177, 177, 178, 178])
  67. let str = "b1b2b3b3b3b3b3b3b1b2b3b3b3b3b3b3"
  68. let array = Array<UInt8>(hex: str)
  69. let hex = array.toHexString()
  70. XCTAssertEqual(str, hex)
  71. }
  72. }
  73. extension ExtensionsTest {
  74. static func allTests() -> [(String, (ExtensionsTest) -> () -> Void)] {
  75. let tests = [
  76. ("testBytes", testBytes),
  77. ("testToUInt32Array", testToUInt32Array),
  78. ("testDataInit", testDataInit),
  79. ("testStringEncrypt", testStringEncrypt),
  80. ("testStringDecryptBase64", testStringDecryptBase64),
  81. ("testEmptyStringEncrypt", testEmptyStringEncrypt),
  82. ("testArrayInitHex", testArrayInitHex),
  83. ]
  84. return tests
  85. }
  86. }