-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathcolumns.rs
228 lines (197 loc) · 6.76 KB
/
columns.rs
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
use crate::{
CompletionItem, CompletionItemKind, builder::CompletionBuilder, context::CompletionContext,
relevance::CompletionRelevanceData,
};
pub fn complete_columns(ctx: &CompletionContext, builder: &mut CompletionBuilder) {
let available_columns = &ctx.schema_cache.columns;
for col in available_columns {
let item = CompletionItem {
label: col.name.clone(),
score: CompletionRelevanceData::Column(col).get_score(ctx),
description: format!("Table: {}.{}", col.schema_name, col.table_name),
preselected: false,
kind: CompletionItemKind::Column,
};
builder.add_item(item);
}
}
#[cfg(test)]
mod tests {
use crate::{
CompletionItem, complete,
test_helper::{CURSOR_POS, InputQuery, get_test_deps, get_test_params},
};
struct TestCase {
query: String,
message: &'static str,
label: &'static str,
description: &'static str,
}
impl TestCase {
fn get_input_query(&self) -> InputQuery {
let strs: Vec<&str> = self.query.split_whitespace().collect();
strs.join(" ").as_str().into()
}
}
#[tokio::test]
async fn completes_columns() {
let setup = r#"
create schema private;
create table public.users (
id serial primary key,
name text
);
create table public.audio_books (
id serial primary key,
narrator text
);
create table private.audio_books (
id serial primary key,
narrator_id text
);
"#;
let queries: Vec<TestCase> = vec![
TestCase {
message: "correctly prefers the columns of present tables",
query: format!(r#"select na{} from public.audio_books;"#, CURSOR_POS),
label: "narrator",
description: "Table: public.audio_books",
},
TestCase {
message: "correctly handles nested queries",
query: format!(
r#"
select
*
from (
select id, na{}
from private.audio_books
) as subquery
join public.users u
on u.id = subquery.id;
"#,
CURSOR_POS
),
label: "narrator_id",
description: "Table: private.audio_books",
},
TestCase {
message: "works without a schema",
query: format!(r#"select na{} from users;"#, CURSOR_POS),
label: "name",
description: "Table: public.users",
},
];
for q in queries {
let (tree, cache) = get_test_deps(setup, q.get_input_query()).await;
let params = get_test_params(&tree, &cache, q.get_input_query());
let results = complete(params);
let CompletionItem {
label, description, ..
} = results
.into_iter()
.next()
.expect("Should return at least one completion item");
assert_eq!(label, q.label, "{}", q.message);
assert_eq!(description, q.description, "{}", q.message);
}
}
#[tokio::test]
async fn shows_multiple_columns_if_no_relation_specified() {
let setup = r#"
create schema private;
create table public.users (
id serial primary key,
name text
);
create table public.audio_books (
id serial primary key,
narrator text
);
create table private.audio_books (
id serial primary key,
narrator_id text
);
"#;
let case = TestCase {
query: format!(r#"select n{};"#, CURSOR_POS),
description: "",
label: "",
message: "",
};
let (tree, cache) = get_test_deps(setup, case.get_input_query()).await;
let params = get_test_params(&tree, &cache, case.get_input_query());
let mut items = complete(params);
let _ = items.split_off(6);
#[derive(Eq, PartialEq, Debug)]
struct LabelAndDesc {
label: String,
desc: String,
}
let labels: Vec<LabelAndDesc> = items
.into_iter()
.map(|c| LabelAndDesc {
label: c.label,
desc: c.description,
})
.collect();
let expected = vec![
("name", "Table: public.users"),
("narrator", "Table: public.audio_books"),
("narrator_id", "Table: private.audio_books"),
("name", "Schema: pg_catalog"),
("nameconcatoid", "Schema: pg_catalog"),
("nameeq", "Schema: pg_catalog"),
]
.into_iter()
.map(|(label, schema)| LabelAndDesc {
label: label.into(),
desc: schema.into(),
})
.collect::<Vec<LabelAndDesc>>();
assert_eq!(labels, expected);
}
#[tokio::test]
async fn suggests_relevant_columns_without_letters() {
let setup = r#"
create table users (
id serial primary key,
name text,
address text,
email text
);
"#;
let test_case = TestCase {
message: "suggests user created tables first",
query: format!(r#"select {} from users"#, CURSOR_POS),
label: "",
description: "",
};
let (tree, cache) = get_test_deps(setup, test_case.get_input_query()).await;
let params = get_test_params(&tree, &cache, test_case.get_input_query());
let results = complete(params);
let (first_four, _rest) = results.split_at(4);
let has_column_in_first_four = |col: &'static str| {
first_four
.iter()
.find(|compl_item| compl_item.label.as_str() == col)
.is_some()
};
assert!(
has_column_in_first_four("id"),
"`id` not present in first four completion items."
);
assert!(
has_column_in_first_four("name"),
"`name` not present in first four completion items."
);
assert!(
has_column_in_first_four("address"),
"`address` not present in first four completion items."
);
assert!(
has_column_in_first_four("email"),
"`email` not present in first four completion items."
);
}
}