forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-plugin-doc-embedding.sh
executable file
·71 lines (60 loc) · 1.56 KB
/
check-plugin-doc-embedding.sh
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
#!/bin/bash
plugin="${1}"
if [ ! -d "${plugin}" ]; then
echo "ERR: ${plugin} is not a directory"
exit 1
fi
pluginname=$(basename "${plugin}")
if [[ ":all:" =~ .*:${pluginname}:.* ]]; then
echo "INF: ${plugin} ignored"
exit 0
fi
# Check for the sample.conf file
if [ ! -f "${plugin}/sample.conf" ] && [ "${pluginname}" != "modbus" ]; then
echo "ERR: ${plugin} does not contain a sample.conf file"
exit 1
fi
# Check for the sample.conf embedding into the README.md
readme="^\`\`\`toml @sample.*\.conf\b"
if ! grep -q "${readme}" "${plugin}/README.md" ; then
echo "ERR: ${plugin} is missing embedding in README"
exit 1
fi
# Check for the generator
generator="//go:generate ../../../tools/readme_config_includer/generator"
found=false
for filename in "${plugin}/"*.go; do
if [[ "${filename}" == *_test.go ]]; then
continue
fi
if ! grep -q "SampleConfig(" "${filename}"; then
continue
fi
if grep -q "^${generator}\$" "${filename}"; then
found=true
break
fi
done
if ! ${found}; then
echo "ERR: ${plugin} is missing generator statement!"
exit 1
fi
# Check for the embedding
embedding="//go:embed sample.*\.conf"
found=false
for filename in "${plugin}/"*.go; do
if [[ "${filename}" == *_test.go ]]; then
continue
fi
if ! grep -q "SampleConfig(" "${filename}"; then
continue
fi
if grep -q "^${embedding}\$" "${filename}"; then
found=true
break
fi
done
if ! ${found}; then
echo "ERR: ${plugin} is missing embedding statement!"
exit 1
fi