-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathBenchmarks.swift
77 lines (73 loc) · 2.27 KB
/
Benchmarks.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//===----------------------------------------------------------------------===//
//
// This source file is part of the SwiftOpenAPIGenerator open source project
//
// Copyright (c) YEARS Apple Inc. and the SwiftOpenAPIGenerator project authors
// Licensed under Apache License v2.0
//
// See LICENSE.txt for license information
// See CONTRIBUTORS.txt for the list of SwiftOpenAPIGenerator project authors
//
// SPDX-License-Identifier: Apache-2.0
//
//===----------------------------------------------------------------------===//
import Benchmark
@_spi(Benchmarks) import OpenAPIAsyncHTTPClient
import AsyncHTTPClient
import NIOCore
import HTTPTypes
import OpenAPIRuntime
import Foundation
let benchmarks = {
let defaultMetrics: [BenchmarkMetric] = [
.mallocCountTotal,
.cpuTotal
]
let config: Benchmark.Configuration = .init(
metrics: defaultMetrics,
scalingFactor: .kilo,
maxDuration: .seconds(10)
)
Benchmark("Creation.Default", configuration: config) { benchmark in
for _ in benchmark.scaledIterations {
blackHole({
AsyncHTTPClientTransport()
}())
}
}
Benchmark("Conversion", configuration: config) { benchmark in
let request = HTTPRequest(
method: .post,
scheme: nil,
authority: nil,
path: "/stuff",
headerFields: [
.init("x-stuff")!: "things"
]
)
let requestBody = HTTPBody("Hello world")
let baseURL = URL(string: "https://example.com")!
let response = HTTPClientResponse(
status: .ok,
headers: [
"x-stuff": "things"
],
body: .bytes(ByteBuffer(string: "Hello world"))
)
let transport = AsyncHTTPClientTransport(
configuration: .init(),
requestSenderClosure: { _, _, _ in
response
}
)
for _ in benchmark.scaledIterations {
let (response, responseBody) = try await transport.send(
request,
body: requestBody,
baseURL: baseURL,
operationID: "postThings"
)
blackHole((response, responseBody))
}
}
}