An amazing project that generates micro reports from tournament results
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
3.1 KiB

////////////////////////////////////////////////////////////////////////////
//
// Copyright 2017 Realm Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////
import XCTest
import RealmSwift
// MARK: Expected Sizes
private var expectedTotalBytesBefore = 0
private let expectedUsedBytesBeforeMin = 50000
private var count = 1000
// MARK: Helpers
private func fileSize(path: String) -> Int {
let attributes = try! FileManager.default.attributesOfItem(atPath: path)
return attributes[.size] as! Int
}
// MARK: Tests
class CompactionTests: TestCase {
override func setUp() {
super.setUp()
autoreleasepool {
// Make compactable Realm
let realm = realmWithTestPath()
let uuid = UUID().uuidString
try! realm.write {
realm.create(SwiftStringObject.self, value: ["A"])
for _ in 0..<count {
realm.create(SwiftStringObject.self, value: [uuid])
}
realm.create(SwiftStringObject.self, value: ["B"])
}
}
expectedTotalBytesBefore = fileSize(path: testRealmURL().path)
}
func testSuccessfulCompactOnLaunch() {
// Configure the Realm to compact on launch
let config = Realm.Configuration(fileURL: testRealmURL(),
shouldCompactOnLaunch: { totalBytes, usedBytes in
// Confirm expected sizes
XCTAssertEqual(totalBytes, expectedTotalBytesBefore)
XCTAssert((usedBytes < totalBytes) && (usedBytes > expectedUsedBytesBeforeMin))
// Compact if the file is over 500KB in size and less than 20% 'used'
// In practice, users might want to use values closer to 100MB and 50%
let fiveHundredKB = 500 * 1024
return (totalBytes > fiveHundredKB) && (Double(usedBytes) / Double(totalBytes)) < 0.2
})
// Confirm expected sizes before and after opening the Realm
XCTAssertEqual(fileSize(path: config.fileURL!.path), expectedTotalBytesBefore)
let realm = try! Realm(configuration: config)
XCTAssertLessThan(fileSize(path: config.fileURL!.path), expectedTotalBytesBefore)
// Validate that the file still contains what it should
XCTAssertEqual(realm.objects(SwiftStringObject.self).count, count + 2)
XCTAssertEqual("A", realm.objects(SwiftStringObject.self).first?.stringCol)
XCTAssertEqual("B", realm.objects(SwiftStringObject.self).last?.stringCol)
}
}