forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.rs
More file actions
152 lines (126 loc) · 3.52 KB
/
Copy pathcli.rs
File metadata and controls
152 lines (126 loc) · 3.52 KB
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
#![cfg(feature = "cli-tests")]
use assert_cmd::prelude::*;
use std::{fs::read_dir, process::Command};
mod support;
const FAILING_HEALTHCHECK: &str = r#"
data_dir = "${VECTOR_DATA_DIR}"
[sources.in]
type = "generator"
lines = ["log"]
format = "shuffle"
[sinks.out]
inputs = ["in"]
type = "socket"
address = "192.168.0.0:62178"
encoding.codec = "json" # required
mode = "tcp"
"#;
/// Returns `stdout` of `vector arguments`
fn run_command(arguments: Vec<&str>) -> Vec<u8> {
let mut cmd = Command::cargo_bin("vector").unwrap();
for arg in arguments {
cmd.arg(arg);
}
let output = cmd.output().expect("Failed to execute process");
output.stdout
}
fn assert_no_log_lines(output: Vec<u8>) {
let output = String::from_utf8(output).expect("Vector output isn't a valid utf8 string");
// Assert there are no lines with keywords
let keywords = ["ERROR", "WARN", "INFO", "DEBUG", "TRACE"];
for line in output.lines() {
let present = keywords.iter().any(|word| line.contains(word));
assert!(!present, "Log detected in output line: {:?}", line);
}
}
fn source_config(source: &str) -> String {
format!(
r#"
data_dir = "${{VECTOR_DATA_DIR}}"
[sources.in]
{}
[sinks.out]
inputs = ["in"]
type = "blackhole"
print_amount = 10000
"#,
source
)
}
#[test]
fn clean_list() {
assert_no_log_lines(run_command(vec!["list"]));
}
#[test]
fn clean_generate() {
assert_no_log_lines(run_command(vec!["generate", "stdin//console"]));
}
#[test]
fn validate_cleanup() {
// Create component directories with some file.
let dir = support::create_directory();
let mut path = dir.clone();
path.push("tmp");
path.set_extension("data");
support::overwrite_file(path.clone(), "");
// Config with some componenets that write to file system.
let config = support::create_file(
source_config(
r#"
type = "file"
include = ["./*.log_dummy"]"#,
)
.as_str(),
);
// Run vector
let mut cmd = Command::cargo_bin("vector").unwrap();
cmd.arg("validate")
.arg(config)
.env("VECTOR_DATA_DIR", dir.clone());
let output = cmd.output().expect("Failed to execute process");
println!(
"{}",
String::from_utf8(output.stdout.clone()).expect("Vector output isn't a valid utf8 string")
);
assert_no_log_lines(output.stdout);
assert_eq!(output.status.code(), Some(0));
// Assert that data folder didn't change
assert_eq!(
vec![path],
read_dir(dir)
.unwrap()
.map(|entry| entry.unwrap().path())
.collect::<Vec<_>>()
);
}
#[test]
fn validate_failing_healthcheck() {
assert_eq!(validate(FAILING_HEALTHCHECK), exitcode::CONFIG);
}
#[test]
fn validate_ignore_healthcheck() {
assert_eq!(
validate(&format!(
r#"
healthchecks.enabled = false
{}
"#,
FAILING_HEALTHCHECK
)),
exitcode::OK
);
}
fn validate(config: &str) -> i32 {
let dir = support::create_directory();
// Config with some componenets that write to file system.
let config = support::create_file(config);
// Run vector
let mut cmd = Command::cargo_bin("vector").unwrap();
cmd.arg("validate").arg(config).env("VECTOR_DATA_DIR", dir);
let output = cmd.output().unwrap();
println!(
"{}",
String::from_utf8(output.stdout).expect("Vector output isn't a valid utf8 string")
);
output.status.code().unwrap()
}