IceCubes/Packages/Timeline/Tests/TimelineTests/TimelineViewModelTests.swift

104 lines
3.6 KiB
Swift
Raw Normal View History

2024-02-14 12:48:14 +01:00
import Models
import Network
2023-12-30 09:08:19 +01:00
@testable import Timeline
import XCTest
import Testing
2023-12-30 09:08:19 +01:00
@MainActor
@Suite("Timeline View Model tests")
struct Tests {
func makeSubject() -> TimelineViewModel {
let subject = TimelineViewModel()
2023-12-30 09:08:19 +01:00
let client = Client(server: "localhost")
subject.client = client
subject.timeline = .home
subject.isTimelineVisible = true
2023-12-30 15:40:04 +01:00
subject.timelineTask?.cancel()
return subject
2023-12-30 15:40:04 +01:00
}
@Test
func streamEventInsertNewStatus() async throws {
let subject = makeSubject()
2023-12-30 09:08:19 +01:00
let isEmpty = await subject.datasource.isEmpty
#expect(isEmpty)
2023-12-30 09:08:19 +01:00
await subject.datasource.append(.placeholder())
var count = await subject.datasource.count()
#expect(count == 1)
2023-12-30 09:08:19 +01:00
await subject.handleEvent(event: StreamEventUpdate(status: .placeholder()))
count = await subject.datasource.count()
#expect(count == 2)
2023-12-30 09:08:19 +01:00
}
@Test
func streamEventInsertDuplicateStatus() async throws {
let subject = makeSubject()
2023-12-30 09:51:34 +01:00
let isEmpty = await subject.datasource.isEmpty
#expect(isEmpty)
2023-12-30 09:51:34 +01:00
let status = Status.placeholder()
await subject.datasource.append(status)
var count = await subject.datasource.count()
#expect(count == 1)
2023-12-30 09:51:34 +01:00
await subject.handleEvent(event: StreamEventUpdate(status: status))
count = await subject.datasource.count()
#expect(count == 1)
2023-12-30 09:51:34 +01:00
}
2024-02-14 12:48:14 +01:00
@Test
func streamEventRemove() async throws {
let subject = makeSubject()
2023-12-30 09:51:34 +01:00
let isEmpty = await subject.datasource.isEmpty
#expect(isEmpty)
2023-12-30 09:51:34 +01:00
let status = Status.placeholder()
await subject.datasource.append(status)
var count = await subject.datasource.count()
#expect(count == 1)
2023-12-30 09:51:34 +01:00
await subject.handleEvent(event: StreamEventDelete(status: status.id))
count = await subject.datasource.count()
#expect(count == 0)
2023-12-30 09:51:34 +01:00
}
2024-02-14 12:48:14 +01:00
@Test
func streamEventUpdateStatus() async throws {
let subject = makeSubject()
2023-12-30 09:51:34 +01:00
var status = Status.placeholder()
let isEmpty = await subject.datasource.isEmpty
#expect(isEmpty)
2023-12-30 09:51:34 +01:00
await subject.datasource.append(status)
var count = await subject.datasource.count()
#expect(count == 1)
2023-12-30 09:51:34 +01:00
status = .init(id: status.id,
content: .init(stringValue: "test"),
account: status.account,
createdAt: status.createdAt,
editedAt: status.editedAt,
reblog: status.reblog,
mediaAttachments: status.mediaAttachments,
2024-02-14 12:48:14 +01:00
mentions: status.mentions,
2023-12-30 09:51:34 +01:00
repliesCount: status.repliesCount,
2024-02-14 12:48:14 +01:00
reblogsCount: status.reblogsCount,
2023-12-30 09:51:34 +01:00
favouritesCount: status.favouritesCount,
card: status.card,
favourited: status.favourited,
reblogged: status.reblogged,
pinned: status.pinned,
bookmarked: status.bookmarked,
emojis: status.emojis,
url: status.url,
application: status.application,
inReplyToId: status.inReplyToId,
inReplyToAccountId: status.inReplyToAccountId,
visibility: status.visibility,
poll: status.poll,
spoilerText: status.spoilerText,
filtered: status.filtered,
sensitive: status.sensitive,
language: status.language)
await subject.handleEvent(event: StreamEventStatusUpdate(status: status))
let statuses = await subject.datasource.get()
count = await subject.datasource.count()
#expect(count == 1)
#expect(statuses.first?.content.asRawText == "test")
2023-12-30 09:51:34 +01:00
}
2023-12-30 09:08:19 +01:00
}