-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathdatadog_agent_integrations_http_check_spec.rb
More file actions
164 lines (142 loc) · 5.81 KB
/
datadog_agent_integrations_http_check_spec.rb
File metadata and controls
164 lines (142 loc) · 5.81 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
153
154
155
156
157
158
159
160
161
162
163
164
require 'spec_helper'
describe 'datadog_agent::integrations::http_check' do
let(:facts) {{
operatingsystem: 'Ubuntu',
}}
let(:conf_dir) { '/etc/dd-agent/conf.d' }
let(:dd_user) { 'dd-agent' }
let(:dd_group) { 'root' }
let(:dd_package) { 'datadog-agent' }
let(:dd_service) { 'datadog-agent' }
let(:conf_file) { "#{conf_dir}/http_check.yaml" }
it { should compile.with_all_deps }
it { should contain_file(conf_file).with(
owner: dd_user,
group: dd_group,
mode: '0600',
)}
it { should contain_file(conf_file).that_requires("Package[#{dd_package}]") }
it { should contain_file(conf_file).that_notifies("Service[#{dd_service}]") }
context 'with default parameters' do
it { should contain_file(conf_file).without_content(%r{name: }) }
it { should contain_file(conf_file).without_content(%r{url: }) }
it { should contain_file(conf_file).without_content(%r{username: }) }
it { should contain_file(conf_file).without_content(%r{password: }) }
it { should contain_file(conf_file).without_content(%r{timeout: 1}) }
it { should contain_file(conf_file).without_content(%{threshold: }) }
it { should contain_file(conf_file).without_content(%r{window: }) }
it { should contain_file(conf_file).without_content(%r{content_match: }) }
it { should contain_file(conf_file).without_content(%r{include_content: true}) }
it { should contain_file(conf_file).without_content(%r{collect_response_time: true}) }
it { should contain_file(conf_file).without_content(%r{disable_ssl_validation: false}) }
it { should contain_file(conf_file).without_content(%r{skip_event: }) }
it { should contain_file(conf_file).without_content(%r{check_certificate_expiration: }) }
it { should contain_file(conf_file).without_content(%r{days_warning: }) }
it { should contain_file(conf_file).without_content(%r{days_critical: }) }
it { should contain_file(conf_file).without_content(%r{headers: }) }
it { should contain_file(conf_file).without_content(%r{tags: }) }
end
context 'with parameters set' do
let(:params) {{
sitename: 'foo.bar.baz',
url: 'http://foo.bar.baz:4096',
username: 'foouser',
password: 'barpassword',
timeout: 123,
threshold: 456,
window: 789,
content_match: 'foomatch',
include_content: true,
collect_response_time: false,
disable_ssl_validation: true,
skip_event: true,
check_certificate_expiration: true,
days_warning: 14,
days_critical: 7,
}}
it { should contain_file(conf_file).with_content(%r{name: foo.bar.baz}) }
it { should contain_file(conf_file).with_content(%r{url: http://foo.bar.baz:4096}) }
it { should contain_file(conf_file).with_content(%r{username: foouser}) }
it { should contain_file(conf_file).with_content(%r{password: barpassword}) }
it { should contain_file(conf_file).with_content(%r{timeout: 123}) }
it { should contain_file(conf_file).with_content(%r{threshold: 456}) }
it { should contain_file(conf_file).with_content(%r{window: 789}) }
it { should contain_file(conf_file).with_content(%r{content_match: foomatch}) }
it { should contain_file(conf_file).with_content(%r{include_content: true}) }
it { should contain_file(conf_file).without_content(%r{collect_response_time: true}) }
it { should contain_file(conf_file).with_content(%r{disable_ssl_validation: true}) }
it { should contain_file(conf_file).with_content(%r{skip_event: true}) }
it { should contain_file(conf_file).with_content(%r{check_certificate_expiration: true}) }
it { should contain_file(conf_file).with_content(%r{days_warning: 14}) }
it { should contain_file(conf_file).with_content(%r{days_critical: 7}) }
end
context 'with headers parameter array' do
let(:params) {{
sitename: 'foo.bar.baz',
url: 'http://foo.bar.baz:4096',
headers: %w{ foo bar baz },
}}
it { should contain_file(conf_file).with_content(/headers:\s+foo\s+bar\s+baz\s*?[^-]/m) }
end
context 'with headers parameter empty values' do
context 'mixed in with other headers' do
let(:params) {{
sitename: 'foo.bar.baz',
url: 'http://foo.bar.baz:4096',
headers: [ 'foo', '', 'baz' ]
}}
it { should contain_file(conf_file).with_content(/headers:\s+foo\s+baz\s*?[^-]/m) }
end
context 'single element array of an empty string' do
let(:params) {{
headers: [''],
}}
skip("undefined behavior")
end
context 'single value empty string' do
let(:params) {{
headers: '',
}}
skip("doubly undefined behavior")
end
end
context 'with tags parameter array' do
let(:params) {{
sitename: 'foo.bar.baz',
url: 'http://foo.bar.baz:4096',
tags: %w{ foo bar baz },
}}
it { should contain_file(conf_file).with_content(/tags:\s+- foo\s+- bar\s+- baz\s*?[^-]/m) }
end
context 'with tags parameter empty values' do
context 'mixed in with other tags' do
let(:params) {{
sitename: 'foo.bar.baz',
url: 'http://foo.bar.baz:4096',
tags: [ 'foo', '', 'baz' ]
}}
it { should contain_file(conf_file).with_content(/tags:\s+- foo\s+- baz\s*?[^-]/m) }
end
context 'single element array of an empty string' do
let(:params) {{
tags: [''],
}}
skip("undefined behavior")
end
context 'single value empty string' do
let(:params) {{
tags: '',
}}
skip("doubly undefined behavior")
end
end
context 'with contact set' do
let(:params) {{
contact: %r{alice bob carlo}
}}
# the parameter is '$contact' and the template uses '@contacts', so neither is used
skip "this functionality appears to not be functional" do
it { should contain_file(conf_file).with_content(%r{notify:\s+- alice\s+bob\s+carlo}) }
end
end
end