Files
iOS/Sources/PushServer/Tests/AppTests/Fakes/FakeCache.swift
mat1th 97834bfd5e Update swift lint and format + appy fixes (#2585)
## Summary
Swift lint and swiftformat are outdated. This PR does update those +
applies the new formatting form swiftformat.
There is 1 swift file with a manual change:
`Sources/Vehicle/Templates/Areas/CarPlayAreasViewModel.swift`. This is
done because `swiftlint` did create the following swiftlint error:
`error: Cyclomatic Complexity Violation: Function should have complexity
10 or less; currently complexity is 11 (cyclomatic_complexity)`.

Because it does change a lot of files the question is if we want to
finetune the `swiftformat` rules.

## Screenshots
No user facing changes.

## Link to pull request in Documentation repository
NA

## Any other notes
NA
2024-02-22 13:06:39 +01:00

35 lines
1000 B
Swift

import Vapor
final class FakeCache: Cache {
var values = [String: Any]()
var expirations = [String: CacheExpirationTime]()
let eventLoop: EventLoop
init(values: [String: Any] = [:], eventLoop: EventLoop) {
self.values = values
self.eventLoop = eventLoop
}
func get<T>(_ key: String, as type: T.Type) -> EventLoopFuture<T?> where T: Decodable {
eventLoop.makeSucceededFuture(values[key] as? T)
}
func set(_ key: String, to value: (some Encodable)?) -> EventLoopFuture<Void> {
set(key, to: value, expiresIn: nil)
}
func set(
_ key: String,
to value: (some Encodable)?,
expiresIn expirationTime: CacheExpirationTime?
) -> EventLoopFuture<Void> {
values[key] = value
expirations[key] = value != nil ? expirationTime : nil
return eventLoop.makeSucceededFuture(())
}
func `for`(_ request: Request) -> Self {
.init(values: values, eventLoop: eventLoop)
}
}