mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-29 19:51:08 +00:00
6297a428a3
* Compile on iOS 18
* Fix more warnings
* Tweak build settings
* Migrate to Swift Tests
* better tests
* Fix
* Fix tests
* More TabView cleanup
Bump to iOS 18 only + remove custom sidebar
* Revert "More TabView cleanup"
This reverts commit e051437fcb
.
* Tabbar fix + bump to iOS 18
* Remove popToRoot
* Cleanup scrollToTop
* Support both TapBar
* Better TabView support
* Better TabView support
* Cleanup
* Disable TabView animations
* Remove id in ForEach
* Remove external init for StatusRowView
* Cleanup
* More Swift 6 concurrency
* Swift 6 mode
* Fixes
* Full Swift 6 packages support
* For now compile env in Swift 5 mode
* Fix archive
* More fix to Archive
* Address `dispatch_assert_queue_fail` (#2161)
See https://twitter.com/dimillian/status/1823089444397724003?s=61&t=SC3rvyJQWn1NQqAgMVrT0Q
* Bump Env to Swift 6
* Fix push notification
* Remove unecessary workaround
* Cleanup
* Move to @Entry
* Fix TabView on Catalyst
* Fix build
* Fix build 2
* fix warning
* Fix icons for iOS 18
---------
Co-authored-by: NachoSoto <NachoSoto@users.noreply.github.com>
103 lines
3.6 KiB
Swift
103 lines
3.6 KiB
Swift
import Models
|
|
import Network
|
|
@testable import Timeline
|
|
import XCTest
|
|
import Testing
|
|
|
|
@MainActor
|
|
@Suite("Timeline View Model tests")
|
|
struct Tests {
|
|
func makeSubject() -> TimelineViewModel {
|
|
let subject = TimelineViewModel()
|
|
let client = Client(server: "localhost")
|
|
subject.client = client
|
|
subject.timeline = .home
|
|
subject.isTimelineVisible = true
|
|
subject.timelineTask?.cancel()
|
|
return subject
|
|
}
|
|
|
|
@Test
|
|
func streamEventInsertNewStatus() async throws {
|
|
let subject = makeSubject()
|
|
let isEmpty = await subject.datasource.isEmpty
|
|
#expect(isEmpty)
|
|
await subject.datasource.append(.placeholder())
|
|
var count = await subject.datasource.count()
|
|
#expect(count == 1)
|
|
await subject.handleEvent(event: StreamEventUpdate(status: .placeholder()))
|
|
count = await subject.datasource.count()
|
|
#expect(count == 2)
|
|
}
|
|
|
|
@Test
|
|
func streamEventInsertDuplicateStatus() async throws {
|
|
let subject = makeSubject()
|
|
let isEmpty = await subject.datasource.isEmpty
|
|
#expect(isEmpty)
|
|
let status = Status.placeholder()
|
|
await subject.datasource.append(status)
|
|
var count = await subject.datasource.count()
|
|
#expect(count == 1)
|
|
await subject.handleEvent(event: StreamEventUpdate(status: status))
|
|
count = await subject.datasource.count()
|
|
#expect(count == 1)
|
|
}
|
|
|
|
@Test
|
|
func streamEventRemove() async throws {
|
|
let subject = makeSubject()
|
|
let isEmpty = await subject.datasource.isEmpty
|
|
#expect(isEmpty)
|
|
let status = Status.placeholder()
|
|
await subject.datasource.append(status)
|
|
var count = await subject.datasource.count()
|
|
#expect(count == 1)
|
|
await subject.handleEvent(event: StreamEventDelete(status: status.id))
|
|
count = await subject.datasource.count()
|
|
#expect(count == 0)
|
|
}
|
|
|
|
@Test
|
|
func streamEventUpdateStatus() async throws {
|
|
let subject = makeSubject()
|
|
var status = Status.placeholder()
|
|
let isEmpty = await subject.datasource.isEmpty
|
|
#expect(isEmpty)
|
|
await subject.datasource.append(status)
|
|
var count = await subject.datasource.count()
|
|
#expect(count == 1)
|
|
status = .init(id: status.id,
|
|
content: .init(stringValue: "test"),
|
|
account: status.account,
|
|
createdAt: status.createdAt,
|
|
editedAt: status.editedAt,
|
|
reblog: status.reblog,
|
|
mediaAttachments: status.mediaAttachments,
|
|
mentions: status.mentions,
|
|
repliesCount: status.repliesCount,
|
|
reblogsCount: status.reblogsCount,
|
|
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")
|
|
}
|
|
}
|