mirror of https://github.com/prometheus/prometheus
Julien
3 months ago
committed by
GitHub
5 changed files with 382 additions and 2 deletions
@ -0,0 +1,92 @@
|
||||
// Copyright 2024 The Prometheus Authors
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package config |
||||
|
||||
import ( |
||||
"crypto/sha256" |
||||
"encoding/hex" |
||||
"fmt" |
||||
"os" |
||||
"path/filepath" |
||||
|
||||
"gopkg.in/yaml.v2" |
||||
) |
||||
|
||||
type ExternalFilesConfig struct { |
||||
RuleFiles []string `yaml:"rule_files"` |
||||
ScrapeConfigFiles []string `yaml:"scrape_config_files"` |
||||
} |
||||
|
||||
// GenerateChecksum generates a checksum of the YAML file and the files it references.
|
||||
func GenerateChecksum(yamlFilePath string) (string, error) { |
||||
hash := sha256.New() |
||||
|
||||
yamlContent, err := os.ReadFile(yamlFilePath) |
||||
if err != nil { |
||||
return "", fmt.Errorf("error reading YAML file: %w", err) |
||||
} |
||||
_, err = hash.Write(yamlContent) |
||||
if err != nil { |
||||
return "", fmt.Errorf("error writing YAML file to hash: %w", err) |
||||
} |
||||
|
||||
var config ExternalFilesConfig |
||||
if err := yaml.Unmarshal(yamlContent, &config); err != nil { |
||||
return "", fmt.Errorf("error unmarshalling YAML: %w", err) |
||||
} |
||||
|
||||
dir := filepath.Dir(yamlFilePath) |
||||
|
||||
for i, file := range config.RuleFiles { |
||||
config.RuleFiles[i] = filepath.Join(dir, file) |
||||
} |
||||
for i, file := range config.ScrapeConfigFiles { |
||||
config.ScrapeConfigFiles[i] = filepath.Join(dir, file) |
||||
} |
||||
|
||||
files := map[string][]string{ |
||||
"r": config.RuleFiles, // "r" for rule files
|
||||
"s": config.ScrapeConfigFiles, // "s" for scrape config files
|
||||
} |
||||
|
||||
for _, prefix := range []string{"r", "s"} { |
||||
for _, pattern := range files[prefix] { |
||||
matchingFiles, err := filepath.Glob(pattern) |
||||
if err != nil { |
||||
return "", fmt.Errorf("error finding files with pattern %q: %w", pattern, err) |
||||
} |
||||
|
||||
for _, file := range matchingFiles { |
||||
// Write prefix to the hash ("r" or "s") followed by \0, then
|
||||
// the file path.
|
||||
_, err = hash.Write([]byte(prefix + "\x00" + file + "\x00")) |
||||
if err != nil { |
||||
return "", fmt.Errorf("error writing %q path to hash: %w", file, err) |
||||
} |
||||
|
||||
// Read and hash the content of the file.
|
||||
content, err := os.ReadFile(file) |
||||
if err != nil { |
||||
return "", fmt.Errorf("error reading file %s: %w", file, err) |
||||
} |
||||
_, err = hash.Write(append(content, []byte("\x00")...)) |
||||
if err != nil { |
||||
return "", fmt.Errorf("error writing %q content to hash: %w", file, err) |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
return hex.EncodeToString(hash.Sum(nil)), nil |
||||
} |
@ -0,0 +1,222 @@
|
||||
// Copyright 2024 The Prometheus Authors
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package config |
||||
|
||||
import ( |
||||
"os" |
||||
"path/filepath" |
||||
"testing" |
||||
|
||||
"github.com/stretchr/testify/require" |
||||
) |
||||
|
||||
func TestGenerateChecksum(t *testing.T) { |
||||
tmpDir := t.TempDir() |
||||
|
||||
// Define paths for the temporary files.
|
||||
yamlFilePath := filepath.Join(tmpDir, "test.yml") |
||||
ruleFilePath := filepath.Join(tmpDir, "rule_file.yml") |
||||
scrapeConfigFilePath := filepath.Join(tmpDir, "scrape_config.yml") |
||||
|
||||
// Define initial and modified content for the files.
|
||||
originalRuleContent := "groups:\n- name: example\n rules:\n - alert: ExampleAlert" |
||||
modifiedRuleContent := "groups:\n- name: example\n rules:\n - alert: ModifiedAlert" |
||||
|
||||
originalScrapeConfigContent := "scrape_configs:\n- job_name: example" |
||||
modifiedScrapeConfigContent := "scrape_configs:\n- job_name: modified_example" |
||||
|
||||
// Define YAML content referencing the rule and scrape config files.
|
||||
yamlContent := ` |
||||
rule_files: |
||||
- rule_file.yml |
||||
scrape_config_files: |
||||
- scrape_config.yml |
||||
` |
||||
|
||||
// Write initial content to files.
|
||||
require.NoError(t, os.WriteFile(ruleFilePath, []byte(originalRuleContent), 0o644)) |
||||
require.NoError(t, os.WriteFile(scrapeConfigFilePath, []byte(originalScrapeConfigContent), 0o644)) |
||||
require.NoError(t, os.WriteFile(yamlFilePath, []byte(yamlContent), 0o644)) |
||||
|
||||
// Generate the original checksum.
|
||||
originalChecksum := calculateChecksum(t, yamlFilePath) |
||||
|
||||
t.Run("Rule File Change", func(t *testing.T) { |
||||
// Modify the rule file.
|
||||
require.NoError(t, os.WriteFile(ruleFilePath, []byte(modifiedRuleContent), 0o644)) |
||||
|
||||
// Checksum should change.
|
||||
modifiedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, modifiedChecksum) |
||||
|
||||
// Revert the rule file.
|
||||
require.NoError(t, os.WriteFile(ruleFilePath, []byte(originalRuleContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Scrape Config Change", func(t *testing.T) { |
||||
// Modify the scrape config file.
|
||||
require.NoError(t, os.WriteFile(scrapeConfigFilePath, []byte(modifiedScrapeConfigContent), 0o644)) |
||||
|
||||
// Checksum should change.
|
||||
modifiedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, modifiedChecksum) |
||||
|
||||
// Revert the scrape config file.
|
||||
require.NoError(t, os.WriteFile(scrapeConfigFilePath, []byte(originalScrapeConfigContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Rule File Deletion", func(t *testing.T) { |
||||
// Delete the rule file.
|
||||
require.NoError(t, os.Remove(ruleFilePath)) |
||||
|
||||
// Checksum should change.
|
||||
deletedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, deletedChecksum) |
||||
|
||||
// Restore the rule file.
|
||||
require.NoError(t, os.WriteFile(ruleFilePath, []byte(originalRuleContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Scrape Config Deletion", func(t *testing.T) { |
||||
// Delete the scrape config file.
|
||||
require.NoError(t, os.Remove(scrapeConfigFilePath)) |
||||
|
||||
// Checksum should change.
|
||||
deletedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, deletedChecksum) |
||||
|
||||
// Restore the scrape config file.
|
||||
require.NoError(t, os.WriteFile(scrapeConfigFilePath, []byte(originalScrapeConfigContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Main File Change", func(t *testing.T) { |
||||
// Modify the main YAML file.
|
||||
modifiedYamlContent := ` |
||||
global: |
||||
scrape_interval: 3s |
||||
rule_files: |
||||
- rule_file.yml |
||||
scrape_config_files: |
||||
- scrape_config.yml |
||||
` |
||||
require.NoError(t, os.WriteFile(yamlFilePath, []byte(modifiedYamlContent), 0o644)) |
||||
|
||||
// Checksum should change.
|
||||
modifiedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, modifiedChecksum) |
||||
|
||||
// Revert the main YAML file.
|
||||
require.NoError(t, os.WriteFile(yamlFilePath, []byte(yamlContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Rule File Removed from YAML Config", func(t *testing.T) { |
||||
// Modify the YAML content to remove the rule file.
|
||||
modifiedYamlContent := ` |
||||
scrape_config_files: |
||||
- scrape_config.yml |
||||
` |
||||
require.NoError(t, os.WriteFile(yamlFilePath, []byte(modifiedYamlContent), 0o644)) |
||||
|
||||
// Checksum should change.
|
||||
modifiedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, modifiedChecksum) |
||||
|
||||
// Revert the YAML content.
|
||||
require.NoError(t, os.WriteFile(yamlFilePath, []byte(yamlContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Scrape Config Removed from YAML Config", func(t *testing.T) { |
||||
// Modify the YAML content to remove the scrape config file.
|
||||
modifiedYamlContent := ` |
||||
rule_files: |
||||
- rule_file.yml |
||||
` |
||||
require.NoError(t, os.WriteFile(yamlFilePath, []byte(modifiedYamlContent), 0o644)) |
||||
|
||||
// Checksum should change.
|
||||
modifiedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, modifiedChecksum) |
||||
|
||||
// Revert the YAML content.
|
||||
require.NoError(t, os.WriteFile(yamlFilePath, []byte(yamlContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Empty Rule File", func(t *testing.T) { |
||||
// Write an empty rule file.
|
||||
require.NoError(t, os.WriteFile(ruleFilePath, []byte(""), 0o644)) |
||||
|
||||
// Checksum should change.
|
||||
emptyChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, emptyChecksum) |
||||
|
||||
// Restore the rule file.
|
||||
require.NoError(t, os.WriteFile(ruleFilePath, []byte(originalRuleContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
|
||||
t.Run("Empty Scrape Config File", func(t *testing.T) { |
||||
// Write an empty scrape config file.
|
||||
require.NoError(t, os.WriteFile(scrapeConfigFilePath, []byte(""), 0o644)) |
||||
|
||||
// Checksum should change.
|
||||
emptyChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.NotEqual(t, originalChecksum, emptyChecksum) |
||||
|
||||
// Restore the scrape config file.
|
||||
require.NoError(t, os.WriteFile(scrapeConfigFilePath, []byte(originalScrapeConfigContent), 0o644)) |
||||
|
||||
// Checksum should return to the original.
|
||||
revertedChecksum := calculateChecksum(t, yamlFilePath) |
||||
require.Equal(t, originalChecksum, revertedChecksum) |
||||
}) |
||||
} |
||||
|
||||
// calculateChecksum generates a checksum for the given YAML file path.
|
||||
func calculateChecksum(t *testing.T, yamlFilePath string) string { |
||||
checksum, err := GenerateChecksum(yamlFilePath) |
||||
require.NoError(t, err) |
||||
require.NotEmpty(t, checksum) |
||||
return checksum |
||||
} |
Loading…
Reference in new issue