1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2020 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import XCTest
@testable import PackageCollections
class TrieTests: XCTestCase {
func testContains() {
let trie = Trie<Int>()
let doc1 = "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG"
self.indexDocument(id: 1, contents: doc1, trie: trie)
// Whole word match
XCTAssertTrue(trie.contains(word: "brown", prefixMatch: false))
XCTAssertTrue(trie.contains(word: "Fox", prefixMatch: false))
XCTAssertFalse(trie.contains(word: "foobar", prefixMatch: false))
// Prefix match
XCTAssertTrue(trie.contains(word: "d", prefixMatch: true))
XCTAssertTrue(trie.contains(word: "Do", prefixMatch: true))
XCTAssertFalse(trie.contains(word: "doo", prefixMatch: true))
}
func testFind() {
let trie = Trie<Int>()
let doc1 = "the quick brown fox jumps over the lazy dog and the dog does not notice the fox jumps over it"
let doc2 = "the quick brown fox jumps over the lazy dog for the lazy dog has blocked its way for far too long"
self.indexDocument(id: 1, contents: doc1, trie: trie)
self.indexDocument(id: 2, contents: doc2, trie: trie)
XCTAssertEqual(try trie.find(word: "brown"), [1, 2])
XCTAssertEqual(try trie.find(word: "blocked"), [2])
XCTAssertThrowsError(try trie.find(word: "fo"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
}
func testFindWithPrefix() {
let trie = Trie<Int>()
let doc1 = "the quick brown fox jumps over the lazy dog and the dog does not notice the fox jumps over it"
let doc2 = "the quick brown fox jumps over the lazy dog for the lazy dog has blocked its way for far too long"
self.indexDocument(id: 1, contents: doc1, trie: trie)
self.indexDocument(id: 2, contents: doc2, trie: trie)
XCTAssertEqual(try trie.findWithPrefix("f"), ["fox": [1, 2], "for": [2], "far": [2]])
XCTAssertEqual(try trie.findWithPrefix("fo"), ["fox": [1, 2], "for": [2]])
XCTAssertEqual(try trie.findWithPrefix("far"), ["far": [2]])
XCTAssertThrowsError(try trie.findWithPrefix("foo"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
}
func testRemoveDocument() {
let trie = Trie<Int>()
let doc1 = "the quick brown fox jumps over the lazy dog"
let doc2 = "the dog does not notice the fox jumps over it"
let doc3 = "it has blocked the fox for far too long"
self.indexDocument(id: 1, contents: doc1, trie: trie)
self.indexDocument(id: 2, contents: doc2, trie: trie)
self.indexDocument(id: 3, contents: doc3, trie: trie)
XCTAssertEqual(try trie.find(word: "fox"), [1, 2, 3])
XCTAssertEqual(try trie.find(word: "dog"), [1, 2])
XCTAssertEqual(try trie.find(word: "it"), [2, 3])
XCTAssertEqual(try trie.find(word: "lazy"), [1])
XCTAssertEqual(try trie.find(word: "notice"), [2])
XCTAssertEqual(try trie.find(word: "blocked"), [3])
trie.remove(document: 3)
XCTAssertEqual(try trie.find(word: "fox"), [1, 2])
XCTAssertEqual(try trie.find(word: "dog"), [1, 2])
XCTAssertEqual(try trie.find(word: "it"), [2])
XCTAssertEqual(try trie.find(word: "lazy"), [1])
XCTAssertEqual(try trie.find(word: "notice"), [2])
XCTAssertThrowsError(try trie.find(word: "blocked"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
trie.remove(document: 1)
XCTAssertEqual(try trie.find(word: "fox"), [2])
XCTAssertEqual(try trie.find(word: "dog"), [2])
XCTAssertEqual(try trie.find(word: "it"), [2])
XCTAssertThrowsError(try trie.find(word: "lazy"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertEqual(try trie.find(word: "notice"), [2])
XCTAssertThrowsError(try trie.find(word: "blocked"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
trie.remove(document: 2)
XCTAssertThrowsError(try trie.find(word: "fox"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "dog"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "it"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "lazy"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "notice"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "blocked"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
}
func testRemoveDocumentsWithPredicate() {
let trie = Trie<Int>()
let doc1 = "the quick brown fox jumps over the lazy dog"
let doc2 = "the dog does not notice the fox jumps over it"
let doc3 = "it has blocked the fox for far too long"
self.indexDocument(id: 1, contents: doc1, trie: trie)
self.indexDocument(id: 2, contents: doc2, trie: trie)
self.indexDocument(id: 3, contents: doc3, trie: trie)
XCTAssertEqual(try trie.find(word: "fox"), [1, 2, 3])
XCTAssertEqual(try trie.find(word: "dog"), [1, 2])
XCTAssertEqual(try trie.find(word: "it"), [2, 3])
XCTAssertEqual(try trie.find(word: "lazy"), [1])
XCTAssertEqual(try trie.find(word: "notice"), [2])
XCTAssertEqual(try trie.find(word: "blocked"), [3])
trie.remove { $0 == 3 }
XCTAssertEqual(try trie.find(word: "fox"), [1, 2])
XCTAssertEqual(try trie.find(word: "dog"), [1, 2])
XCTAssertEqual(try trie.find(word: "it"), [2])
XCTAssertEqual(try trie.find(word: "lazy"), [1])
XCTAssertEqual(try trie.find(word: "notice"), [2])
XCTAssertThrowsError(try trie.find(word: "blocked"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
trie.remove { $0 == 1 }
XCTAssertEqual(try trie.find(word: "fox"), [2])
XCTAssertEqual(try trie.find(word: "dog"), [2])
XCTAssertEqual(try trie.find(word: "it"), [2])
XCTAssertThrowsError(try trie.find(word: "lazy"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertEqual(try trie.find(word: "notice"), [2])
XCTAssertThrowsError(try trie.find(word: "blocked"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
trie.remove { $0 == 2 }
XCTAssertThrowsError(try trie.find(word: "fox"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "dog"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "it"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "lazy"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "notice"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
XCTAssertThrowsError(try trie.find(word: "blocked"), "expected error") { error in
XCTAssert(error is NotFoundError)
}
}
private func indexDocument(id: Int, contents: String, trie: Trie<Int>) {
let words = contents.components(separatedBy: " ")
words.forEach { word in
trie.insert(word: word, foundIn: id)
}
}
func testThreadSafe() {
let queue = DispatchQueue(label: "TrieTests", attributes: .concurrent)
let trie = Trie<Int>()
let docCount = 100
for _ in 0 ..< 100 {
let sync = DispatchGroup()
for i in 0 ..< docCount {
queue.async(group: sync) {
Thread.sleep(forTimeInterval: Double.random(in: 100 ... 300) * 1.0e-6)
trie.remove { $0 == i }
trie.insert(word: "word-\(i)", foundIn: i)
trie.insert(word: "test", foundIn: i)
}
}
switch sync.wait(timeout: .now() + 1) {
case .timedOut:
XCTFail("timeout")
case .success:
for doc in 0 ..< docCount {
XCTAssertEqual(try trie.find(word: "word-\(doc)"), [doc])
XCTAssertEqual(try trie.find(word: "test").count, docCount)
}
}
}
}
}
|