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.
258 lines
10 KiB
Swift
258 lines
10 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Combine
|
|
import GRDB
|
|
import Quick
|
|
import Nimble
|
|
import SessionUIKit
|
|
import SessionSnodeKit
|
|
|
|
@testable import Session
|
|
|
|
class ThreadDisappearingMessagesSettingsViewModelSpec: QuickSpec {
|
|
typealias ParentType = SessionTableViewModel<ThreadDisappearingMessagesSettingsViewModel.NavButton, ThreadDisappearingMessagesSettingsViewModel.Section, ThreadDisappearingMessagesSettingsViewModel.Item>
|
|
|
|
// MARK: - Spec
|
|
|
|
override func spec() {
|
|
var mockStorage: Storage!
|
|
var cancellables: [AnyCancellable] = []
|
|
var dependencies: Dependencies!
|
|
var viewModel: ThreadDisappearingMessagesSettingsViewModel!
|
|
|
|
describe("a ThreadDisappearingMessagesSettingsViewModel") {
|
|
// MARK: - Configuration
|
|
|
|
beforeEach {
|
|
mockStorage = Storage(
|
|
customWriter: try! DatabaseQueue(),
|
|
customMigrationTargets: [
|
|
SNUtilitiesKit.self,
|
|
SNSnodeKit.self,
|
|
SNMessagingKit.self,
|
|
SNUIKit.self
|
|
]
|
|
)
|
|
dependencies = Dependencies(
|
|
storage: mockStorage,
|
|
scheduler: .immediate
|
|
)
|
|
mockStorage.write { db in
|
|
try SessionThread(
|
|
id: "TestId",
|
|
variant: .contact
|
|
).insert(db)
|
|
}
|
|
viewModel = ThreadDisappearingMessagesSettingsViewModel(
|
|
dependencies: dependencies,
|
|
threadId: "TestId",
|
|
threadVariant: .contact,
|
|
config: DisappearingMessagesConfiguration.defaultWith("TestId")
|
|
)
|
|
cancellables.append(
|
|
viewModel.observableTableData
|
|
.receive(on: ImmediateScheduler.shared)
|
|
.sink(
|
|
receiveCompletion: { _ in },
|
|
receiveValue: { viewModel.updateTableData($0.0) }
|
|
)
|
|
)
|
|
}
|
|
|
|
afterEach {
|
|
cancellables.forEach { $0.cancel() }
|
|
|
|
mockStorage = nil
|
|
cancellables = []
|
|
dependencies = nil
|
|
viewModel = nil
|
|
}
|
|
|
|
// MARK: - Basic Tests
|
|
|
|
it("has the correct title") {
|
|
expect(viewModel.title).to(equal("DISAPPEARING_MESSAGES".localized()))
|
|
}
|
|
|
|
it("has the correct number of items") {
|
|
expect(viewModel.tableData.count)
|
|
.to(equal(1))
|
|
expect(viewModel.tableData.first?.elements.count)
|
|
.to(equal(12))
|
|
}
|
|
|
|
it("has the correct default state") {
|
|
expect(viewModel.tableData.first?.elements.first)
|
|
.to(
|
|
equal(
|
|
SessionCell.Info(
|
|
id: ThreadDisappearingMessagesSettingsViewModel.Item(
|
|
title: "DISAPPEARING_MESSAGES_OFF".localized()
|
|
),
|
|
position: .top,
|
|
title: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
rightAccessory: .radio(
|
|
isSelected: { true }
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
let title: String = (DisappearingMessagesConfiguration.validDurationsSeconds.last?
|
|
.formatted(format: .long))
|
|
.defaulting(to: "")
|
|
expect(viewModel.tableData.first?.elements.last)
|
|
.to(
|
|
equal(
|
|
SessionCell.Info(
|
|
id: ThreadDisappearingMessagesSettingsViewModel.Item(title: title),
|
|
position: .bottom,
|
|
title: title,
|
|
rightAccessory: .radio(
|
|
isSelected: { false }
|
|
)
|
|
)
|
|
)
|
|
)
|
|
}
|
|
|
|
it("starts with the correct item active if not default") {
|
|
let config: DisappearingMessagesConfiguration = DisappearingMessagesConfiguration
|
|
.defaultWith("TestId")
|
|
.with(
|
|
isEnabled: true,
|
|
durationSeconds: DisappearingMessagesConfiguration.validDurationsSeconds.last
|
|
)
|
|
mockStorage.write { db in
|
|
_ = try config.saved(db)
|
|
}
|
|
viewModel = ThreadDisappearingMessagesSettingsViewModel(
|
|
dependencies: dependencies,
|
|
threadId: "TestId",
|
|
threadVariant: .contact,
|
|
config: config
|
|
)
|
|
cancellables.append(
|
|
viewModel.observableTableData
|
|
.receive(on: ImmediateScheduler.shared)
|
|
.sink(
|
|
receiveCompletion: { _ in },
|
|
receiveValue: { viewModel.updateTableData($0.0) }
|
|
)
|
|
)
|
|
|
|
expect(viewModel.tableData.first?.elements.first)
|
|
.to(
|
|
equal(
|
|
SessionCell.Info(
|
|
id: ThreadDisappearingMessagesSettingsViewModel.Item(
|
|
title: "DISAPPEARING_MESSAGES_OFF".localized()
|
|
),
|
|
position: .top,
|
|
title: "DISAPPEARING_MESSAGES_OFF".localized(),
|
|
rightAccessory: .radio(
|
|
isSelected: { false }
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
let title: String = (DisappearingMessagesConfiguration.validDurationsSeconds.last?
|
|
.formatted(format: .long))
|
|
.defaulting(to: "")
|
|
expect(viewModel.tableData.first?.elements.last)
|
|
.to(
|
|
equal(
|
|
SessionCell.Info(
|
|
id: ThreadDisappearingMessagesSettingsViewModel.Item(title: title),
|
|
position: .bottom,
|
|
title: title,
|
|
rightAccessory: .radio(
|
|
isSelected: { true }
|
|
)
|
|
)
|
|
)
|
|
)
|
|
}
|
|
|
|
it("has no right bar button") {
|
|
var items: [ParentType.NavItem]?
|
|
|
|
cancellables.append(
|
|
viewModel.rightNavItems
|
|
.receive(on: ImmediateScheduler.shared)
|
|
.sink(
|
|
receiveCompletion: { _ in },
|
|
receiveValue: { navItems in items = navItems }
|
|
)
|
|
)
|
|
|
|
expect(items).to(equal([]))
|
|
}
|
|
|
|
context("when changed from the previous setting") {
|
|
var items: [ParentType.NavItem]?
|
|
|
|
beforeEach {
|
|
cancellables.append(
|
|
viewModel.rightNavItems
|
|
.receive(on: ImmediateScheduler.shared)
|
|
.sink(
|
|
receiveCompletion: { _ in },
|
|
receiveValue: { navItems in items = navItems }
|
|
)
|
|
)
|
|
|
|
viewModel.tableData.first?.elements.last?.onTap?()
|
|
}
|
|
|
|
it("shows the save button") {
|
|
expect(items)
|
|
.to(equal([
|
|
ParentType.NavItem(
|
|
id: .save,
|
|
systemItem: .save,
|
|
accessibilityIdentifier: "Save button"
|
|
)
|
|
]))
|
|
}
|
|
|
|
context("and saving") {
|
|
it("dismisses the screen") {
|
|
var didDismissScreen: Bool = false
|
|
|
|
cancellables.append(
|
|
viewModel.dismissScreen
|
|
.receive(on: ImmediateScheduler.shared)
|
|
.sink(
|
|
receiveCompletion: { _ in },
|
|
receiveValue: { _ in didDismissScreen = true }
|
|
)
|
|
)
|
|
|
|
items?.first?.action?()
|
|
|
|
expect(didDismissScreen)
|
|
.toEventually(
|
|
beTrue(),
|
|
timeout: .milliseconds(100)
|
|
)
|
|
}
|
|
|
|
it("saves the updated config") {
|
|
items?.first?.action?()
|
|
|
|
let updatedConfig: DisappearingMessagesConfiguration? = mockStorage.read { db in
|
|
try DisappearingMessagesConfiguration.fetchOne(db, id: "TestId")
|
|
}
|
|
|
|
expect(updatedConfig?.isEnabled).to(beTrue())
|
|
expect(updatedConfig?.durationSeconds)
|
|
.to(equal(DisappearingMessagesConfiguration.validDurationsSeconds.last ?? -1))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|