]> git.lizzy.rs Git - rust.git/blob - crates/ide-completion/src/completions/env_vars.rs
Add tests for env var completion
[rust.git] / crates / ide-completion / src / completions / env_vars.rs
1 //! Completes environment variables defined by Cargo (https://doc.rust-lang.org/cargo/reference/environment-variables.html)
2
3 use syntax::{ast, AstToken, AstNode, TextRange, TextSize};
4
5 use crate::{context::CompletionContext, CompletionItem, CompletionItemKind};
6
7 use super::Completions;
8 const CARGO_DEFINED_VARS: &[(&str, &str)] = &[
9 ("CARGO","Path to the cargo binary performing the build"),
10 ("CARGO_MANIFEST_DIR","The directory containing the manifest of your package"),
11 ("CARGO_PKG_VERSION","The full version of your package"),
12 ("CARGO_PKG_VERSION_MAJOR","The major version of your package"),
13 ("CARGO_PKG_VERSION_MINOR","The minor version of your package"),
14 ("CARGO_PKG_VERSION_PATCH","The patch version of your package"),
15 ("CARGO_PKG_VERSION_PRE","The pre-release version of your package"),
16 ("CARGO_PKG_AUTHORS","Colon separated list of authors from the manifest of your package"),
17 ("CARGO_PKG_NAME","The name of your package"),
18 ("CARGO_PKG_DESCRIPTION","The description from the manifest of your package"),
19 ("CARGO_PKG_HOMEPAGE","The home page from the manifest of your package"),
20 ("CARGO_PKG_REPOSITORY","The repository from the manifest of your package"),
21 ("CARGO_PKG_LICENSE","The license from the manifest of your package"),
22 ("CARGO_PKG_LICENSE_FILE","The license file from the manifest of your package"),
23 ("CARGO_PKG_RUST_VERSION","The Rust version from the manifest of your package. Note that this is the minimum Rust version supported by the package, not the current Rust version"),
24 ("CARGO_CRATE_NAME","The name of the crate that is currently being compiled"),
25 ("CARGO_BIN_NAME","The name of the binary that is currently being compiled (if it is a binary). This name does not include any file extension, such as .exe"),
26 ("CARGO_PRIMARY_PACKAGE","This environment variable will be set if the package being built is primary. Primary packages are the ones the user selected on the command-line, either with -p flags or the defaults based on the current directory and the default workspace members. This environment variable will not be set when building dependencies. This is only set when compiling the package (not when running binaries or tests)"),
27 ("CARGO_TARGET_TMPDIR","Only set when building integration test or benchmark code. This is a path to a directory inside the target directory where integration tests or benchmarks are free to put any data needed by the tests/benches. Cargo initially creates this directory but doesn't manage its content in any way, this is the responsibility of the test code")
28 ];
29
30 pub(crate) fn complete_cargo_env_vars(
31     acc: &mut Completions,
32     ctx: &CompletionContext<'_>,
33     original: &ast::String
34 ) {
35     if !is_env_macro(original) {
36         return;
37     }
38
39     let start = ctx.original_token.text_range().start() + TextSize::from(1);
40     let cursor = ctx.position.offset;
41
42     CompletionItem::new(CompletionItemKind::Binding, TextRange::new(start, cursor), "CARGO").add_to(acc);
43 }
44
45 fn is_env_macro(string: &ast::String) -> bool {
46     //todo: replace copypaste from format_string with separate function
47     (|| {
48         let macro_call = string.syntax().parent_ancestors().find_map(ast::MacroCall::cast)?;
49         let name = macro_call.path()?.segment()?.name_ref()?;
50
51         if !matches!(name.text().as_str(), 
52         "env" | "option_env") {
53             return None;
54         }
55
56
57         Some(())
58     })()
59     .is_some()
60 }
61
62 #[cfg(test)]
63 mod tests {
64     use crate::tests::{check_edit, completion_list};
65
66     fn check(macro_name: &str) {
67         check_edit("CARGO_BIN_NAME",&format!(r#"
68             fn main() {{
69                 let foo = {}!("CAR$0");
70             }}
71         "#, macro_name), &format!(r#"
72             fn main() {{
73                 let foo = {}!("CARGO_BIN_NAME");
74             }}
75         "#, macro_name));
76     }
77     #[test]
78     fn completes_env_variable_in_env() {
79         check("env")
80     }
81
82     #[test]
83     fn completes_env_variable_in_option_env() {
84         check("option_env");
85     }
86
87     #[test]
88     fn doesnt_complete_in_random_strings() {
89         let fixture = r#"
90             fn main() {
91                 let foo = "CA$0";
92             }
93         "#;
94
95         let completions = completion_list(fixture);
96         assert!(completions.is_empty(), "Completions weren't empty: {}", completions);
97     }
98
99     #[test]
100     fn doesnt_complete_in_random_macro() {
101         let fixture = r#"
102             macro_rules! bar {
103                 ($($arg:tt)*) => { 0 }
104             }
105
106             fn main() {
107                 let foo = bar!("CA$0");
108
109             }
110         "#;
111
112         let completions = completion_list(fixture);
113         assert!(completions.is_empty(), "Completions weren't empty: {}", completions);
114     }
115 }