mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
218 lines
9.8 KiB
Swift
218 lines
9.8 KiB
Swift
2 years ago
|
// Copyright © 2023 Rangeproof Pty Ltd. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
import Quick
|
||
|
import Nimble
|
||
|
|
||
|
@testable import SessionUtilitiesKit
|
||
|
|
||
9 months ago
|
class BencodeResponseSpec: QuickSpec {
|
||
2 years ago
|
override class func spec() {
|
||
9 months ago
|
// MARK: - BencodeResponse
|
||
|
describe("BencodeResponse") {
|
||
2 years ago
|
// MARK: -- when decoding
|
||
2 years ago
|
context("when decoding") {
|
||
2 years ago
|
// MARK: ---- with a decodable type
|
||
2 years ago
|
context("with a decodable type") {
|
||
2 years ago
|
// MARK: ------ decodes successfully
|
||
2 years ago
|
it("decodes successfully") {
|
||
|
let data: Data = "ld8:intValuei100e11:stringValue4:Teste5:\u{01}\u{02}\u{03}\u{04}\u{05}e"
|
||
|
.data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<TestType>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<TestType>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: TestType(
|
||
|
intValue: 100,
|
||
|
stringValue: "Test"
|
||
|
),
|
||
|
data: Data([1, 2, 3, 4, 5])
|
||
|
)
|
||
|
))
|
||
|
}
|
||
|
|
||
2 years ago
|
// MARK: ------ decodes successfully with no body
|
||
2 years ago
|
it("decodes successfully with no body") {
|
||
|
let data: Data = "ld8:intValuei100e11:stringValue4:Teste"
|
||
|
.data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<TestType>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<TestType>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: TestType(
|
||
|
intValue: 100,
|
||
|
stringValue: "Test"
|
||
|
),
|
||
|
data: nil
|
||
|
)
|
||
|
))
|
||
|
}
|
||
2 years ago
|
}
|
||
|
|
||
2 years ago
|
// MARK: ---- with stringified json info
|
||
2 years ago
|
context("with stringified json info") {
|
||
2 years ago
|
// MARK: ------ decodes successfully
|
||
2 years ago
|
it("decodes successfully") {
|
||
|
let data: Data = "l37:{\"intValue\":100,\"stringValue\":\"Test\"}5:\u{01}\u{02}\u{03}\u{04}\u{05}e"
|
||
|
.data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<TestType>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<TestType>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: TestType(
|
||
|
intValue: 100,
|
||
|
stringValue: "Test"
|
||
|
),
|
||
|
data: Data([1, 2, 3, 4, 5])
|
||
|
)
|
||
|
))
|
||
|
}
|
||
2 years ago
|
|
||
2 years ago
|
// MARK: ------ decodes successfully with no body
|
||
2 years ago
|
it("decodes successfully with no body") {
|
||
|
let data: Data = "l37:{\"intValue\":100,\"stringValue\":\"Test\"}e"
|
||
|
.data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<TestType>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<TestType>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: TestType(
|
||
|
intValue: 100,
|
||
|
stringValue: "Test"
|
||
|
),
|
||
|
data: nil
|
||
|
)
|
||
|
))
|
||
|
}
|
||
|
|
||
2 years ago
|
// MARK: ------ throws a parsing error when invalid
|
||
2 years ago
|
it("throws a parsing error when invalid") {
|
||
|
let data: Data = "l36:{\"INVALID\":100,\"stringValue\":\"Test\"}5:\u{01}\u{02}\u{03}\u{04}\u{05}e"
|
||
|
.data(using: .utf8)!
|
||
|
|
||
|
expect {
|
||
9 months ago
|
try BencodeDecoder().decode(BencodeResponse<TestType>.self, from: data)
|
||
|
}.to(throwError(DecodingError.keyNotFound(TestType.CodingKeys.intValue, DecodingError.Context(codingPath: [], debugDescription: "No value associated with key \(TestType.CodingKeys.intValue)"))))
|
||
2 years ago
|
}
|
||
2 years ago
|
}
|
||
|
|
||
2 years ago
|
// MARK: ---- with a string value
|
||
2 years ago
|
context("with a string value") {
|
||
2 years ago
|
// MARK: ------ decodes successfully
|
||
2 years ago
|
it("decodes successfully") {
|
||
|
let data: Data = "l4:Test5:\u{01}\u{02}\u{03}\u{04}\u{05}e".data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<String>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<String>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: "Test",
|
||
|
data: Data([1, 2, 3, 4, 5])
|
||
|
)
|
||
|
))
|
||
|
}
|
||
|
|
||
2 years ago
|
// MARK: ------ decodes successfully with no body
|
||
2 years ago
|
it("decodes successfully with no body") {
|
||
|
let data: Data = "l4:Teste".data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<String>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<String>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: "Test",
|
||
|
data: nil
|
||
|
)
|
||
|
))
|
||
|
}
|
||
|
|
||
2 years ago
|
// MARK: ------ throws a parsing error when invalid
|
||
2 years ago
|
it("throws a parsing error when invalid") {
|
||
|
let data: Data = "l10:Teste".data(using: .utf8)!
|
||
|
|
||
|
expect {
|
||
9 months ago
|
try BencodeDecoder().decode(BencodeResponse<String>.self, from: data)
|
||
|
}.to(throwError(DecodingError.dataCorrupted(DecodingError.Context(codingPath: [], debugDescription: "failed to decode String"))))
|
||
2 years ago
|
}
|
||
|
}
|
||
|
|
||
2 years ago
|
// MARK: ---- with an int value
|
||
2 years ago
|
context("with an int value") {
|
||
2 years ago
|
// MARK: ------ decodes successfully
|
||
2 years ago
|
it("decodes successfully") {
|
||
|
let data: Data = "li100e5:\u{01}\u{02}\u{03}\u{04}\u{05}e".data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<Int>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<Int>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: 100,
|
||
|
data: Data([1, 2, 3, 4, 5])
|
||
|
)
|
||
|
))
|
||
|
}
|
||
|
|
||
2 years ago
|
// MARK: ------ decodes successfully with no body
|
||
2 years ago
|
it("decodes successfully with no body") {
|
||
|
let data: Data = "li100ee".data(using: .utf8)!
|
||
9 months ago
|
let result: BencodeResponse<Int>? = try? BencodeDecoder()
|
||
|
.decode(BencodeResponse<Int>.self, from: data)
|
||
2 years ago
|
|
||
|
expect(result)
|
||
|
.to(equal(
|
||
|
BencodeResponse(
|
||
|
info: 100,
|
||
|
data: nil
|
||
|
)
|
||
|
))
|
||
|
}
|
||
|
|
||
2 years ago
|
// MARK: ------ throws a parsing error when invalid
|
||
2 years ago
|
it("throws a parsing error when invalid") {
|
||
|
let data: Data = "l4:Teste".data(using: .utf8)!
|
||
|
|
||
|
expect {
|
||
9 months ago
|
try BencodeDecoder().decode(BencodeResponse<Int>.self, from: data)
|
||
|
}.to(throwError(DecodingError.dataCorrupted(DecodingError.Context(
|
||
|
codingPath: [],
|
||
|
debugDescription: "The given data was not valid JSON",
|
||
|
underlyingError: NSError(
|
||
|
domain: "NSCocoaErrorDomain",
|
||
|
code: 3840,
|
||
|
userInfo: [
|
||
|
"NSJSONSerializationErrorIndex": 0,
|
||
|
"NSDebugDescription": "Unexpected character 'T' around line 1, column 1."
|
||
|
]
|
||
|
)
|
||
|
))))
|
||
2 years ago
|
}
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
2 years ago
|
|
||
|
// MARK: - Test Types
|
||
|
|
||
|
fileprivate struct TestType: Codable, Equatable {
|
||
9 months ago
|
public enum CodingKeys: String, CodingKey {
|
||
|
case intValue
|
||
|
case stringValue
|
||
2 years ago
|
}
|
||
|
|
||
9 months ago
|
let intValue: Int
|
||
|
let stringValue: String
|
||
2 years ago
|
}
|