-
Notifications
You must be signed in to change notification settings - Fork 33
/
RavenDB_9584.ts
136 lines (104 loc) · 4.13 KB
/
RavenDB_9584.ts
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
import { IDocumentStore } from "../../src/Documents/IDocumentStore";
import { IndexDefinition } from "../../src/Documents/Indexes/IndexDefinition";
import { IndexFieldOptions } from "../../src/Documents/Indexes/IndexFieldOptions";
import { PutIndexesOperation } from "../../src/Documents/Operations/Indexes/PutIndexesOperation";
import { disposeTestDocumentStore, testContext } from "../Utils/TestUtil";
import { assertThat } from "../Utils/AssertExtensions";
describe("RavenDB_9584", function () {
let store: IDocumentStore;
beforeEach(async function () {
store = await testContext.getDocumentStore();
});
afterEach(async () =>
await disposeTestDocumentStore(store));
it("canChainSuggestions", async () => {
await setup(store);
{
const s = store.openSession();
const suggestionQueryResult = await s.query({ documentType: User, indexName: "test" })
.suggestUsing(x => x.byField("name", "Owen"))
.andSuggestUsing(x => x.byField("company", "Hiberanting"))
.execute();
assertThat(suggestionQueryResult["name"].suggestions)
.hasSize(1);
assertThat(suggestionQueryResult["name"].suggestions[0])
.isEqualTo("oren");
assertThat(suggestionQueryResult["company"].suggestions)
.hasSize(1);
assertThat(suggestionQueryResult["company"].suggestions[0])
.isEqualTo("hibernating");
}
});
it("canUseAliasInSuggestions", async () => {
await setup(store);
{
const s = store.openSession();
const suggestionQueryResult = await s.query({ documentType: User, indexName: "test" })
.suggestUsing(x => x.byField("name", "Owen")
.withDisplayName("newName"))
.execute();
assertThat(suggestionQueryResult["newName"].suggestions)
.hasSize(1);
assertThat(suggestionQueryResult["newName"].suggestions[0])
.isEqualTo("oren");
}
});
it("canUseSuggestionsWithAutoIndex", async () => {
await setup(store);
{
const s = store.openSession();
const suggestionQueryResult = await s.query(User)
.suggestUsing(x => x.byField("name", "Owen").withDisplayName("newName"))
.execute();
assertThat(suggestionQueryResult["newName"].suggestions)
.hasSize(1);
assertThat(suggestionQueryResult["newName"].suggestions[0])
.isEqualTo("oren");
}
});
});
async function setup(store: IDocumentStore) {
const indexDefinition = new IndexDefinition();
indexDefinition.name = "test";
indexDefinition.maps = new Set(["from doc in docs.Users select new { doc.name, doc.company }"]);
const nameIndexFieldOptions = new IndexFieldOptions();
nameIndexFieldOptions.suggestions = true;
const companyIndexFieldOptions= new IndexFieldOptions();
companyIndexFieldOptions.suggestions = true;
indexDefinition.fields = {
"name": nameIndexFieldOptions,
"company": companyIndexFieldOptions
};
const putIndexesOperation = new PutIndexesOperation(indexDefinition);
const results = await store.maintenance.send(putIndexesOperation);
assertThat(results)
.hasSize(1);
assertThat(results[0].index)
.isEqualTo(indexDefinition.name);
{
const session = store.openSession();
const ayende = Object.assign(new User(), {
name: "Ayende",
company: "Hibernating"
});
const oren = Object.assign(new User(), {
name: "Oren",
company: "HR"
});
const john = Object.assign(new User(), {
name: "John Steinbeck",
company: "Unknown"
});
await session.store(ayende);
await session.store(oren);
await session.store(john);
await session.saveChanges();
await testContext.waitForIndexing(store);
}
}
class User {
id: string;
name: string;
company: string;
title: string;
}