mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-30 10:44:59 +01:00
68 lines
2.2 KiB
Swift
68 lines
2.2 KiB
Swift
//
|
|
// AccountFeedbinFolderContentsSyncTest.swift
|
|
// AccountTests
|
|
//
|
|
// Created by Maurice Parker on 5/7/19.
|
|
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
import XCTest
|
|
@testable import Account
|
|
|
|
//class AccountFeedbinFolderContentsSyncTest: XCTestCase {
|
|
//
|
|
// override func setUp() {
|
|
// }
|
|
//
|
|
// override func tearDown() {
|
|
// }
|
|
//
|
|
// func testDownloadSync() {
|
|
//
|
|
// let testTransport = TestTransport()
|
|
// testTransport.testFiles["https://api.feedbin.com/v2/tags.json"] = "JSON/tags_add.json"
|
|
// testTransport.testFiles["https://api.feedbin.com/v2/subscriptions.json"] = "JSON/subscriptions_initial.json"
|
|
// testTransport.testFiles["https://api.feedbin.com/v2/taggings.json"] = "JSON/taggings_initial.json"
|
|
// let account = TestAccountManager.shared.createAccount(type: .feedbin, transport: testTransport)
|
|
//
|
|
// // Test initial folders
|
|
// let initialExpection = self.expectation(description: "Initial contents")
|
|
// account.refreshAll() { _ in
|
|
// initialExpection.fulfill()
|
|
// }
|
|
// waitForExpectations(timeout: 5, handler: nil)
|
|
//
|
|
// let folder = account.folders?.filter { $0.name == "Developers" } .first!
|
|
// XCTAssertEqual(156, folder?.topLevelFeeds.count ?? 0)
|
|
// XCTAssertEqual(2, account.topLevelFeeds.count)
|
|
//
|
|
// // Test Adding a Feed to the folder
|
|
// testTransport.testFiles["https://api.feedbin.com/v2/taggings.json"] = "JSON/taggings_add.json"
|
|
//
|
|
// let addExpection = self.expectation(description: "Add contents")
|
|
// account.refreshAll() { _ in
|
|
// addExpection.fulfill()
|
|
// }
|
|
// waitForExpectations(timeout: 5, handler: nil)
|
|
//
|
|
// XCTAssertEqual(157, folder?.topLevelFeeds.count ?? 0)
|
|
// XCTAssertEqual(1, account.topLevelFeeds.count)
|
|
//
|
|
// // Test Deleting some Feeds from the folder
|
|
// testTransport.testFiles["https://api.feedbin.com/v2/taggings.json"] = "JSON/taggings_delete.json"
|
|
//
|
|
// let deleteExpection = self.expectation(description: "Delete contents")
|
|
// account.refreshAll() { _ in
|
|
// deleteExpection.fulfill()
|
|
// }
|
|
// waitForExpectations(timeout: 5, handler: nil)
|
|
//
|
|
// XCTAssertEqual(153, folder?.topLevelFeeds.count ?? 0)
|
|
// XCTAssertEqual(5, account.topLevelFeeds.count)
|
|
//
|
|
// TestAccountManager.shared.deleteAccount(account)
|
|
//
|
|
// }
|
|
//
|
|
//}
|