fix: discover mounted geoip db files (#7228)
* fix: discover mounted geoip db files * add test * fix runtime reload of config.MaxmindEditionFiles * add e2e test * log missing geoip2 db
This commit is contained in:
parent
b0ae678ce6
commit
abf22b2014
6 changed files with 127 additions and 10 deletions
|
|
@ -925,7 +925,7 @@ type TemplateConfig struct {
|
|||
ListenPorts *ListenPorts
|
||||
PublishService *apiv1.Service
|
||||
EnableMetrics bool
|
||||
MaxmindEditionFiles []string
|
||||
MaxmindEditionFiles *[]string
|
||||
MonitorMaxBatchSize int
|
||||
|
||||
PID string
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ type Configuration struct {
|
|||
ValidationWebhookKeyPath string
|
||||
|
||||
GlobalExternalAuth *ngx_config.GlobalExternalAuth
|
||||
MaxmindEditionFiles []string
|
||||
MaxmindEditionFiles *[]string
|
||||
|
||||
MonitorMaxBatchSize int
|
||||
|
||||
|
|
|
|||
|
|
@ -64,12 +64,19 @@ const (
|
|||
|
||||
// GeoLite2DBExists checks if the required databases for
|
||||
// the GeoIP2 NGINX module are present in the filesystem
|
||||
// and indexes the discovered databases for iteration in
|
||||
// the config.
|
||||
func GeoLite2DBExists() bool {
|
||||
files := []string{}
|
||||
for _, dbName := range strings.Split(MaxmindEditionIDs, ",") {
|
||||
if !fileExists(path.Join(geoIPPath, dbName+dbExtension)) {
|
||||
filename := dbName + dbExtension
|
||||
if !fileExists(path.Join(geoIPPath, filename)) {
|
||||
klog.Error(filename, " not found")
|
||||
return false
|
||||
}
|
||||
files = append(files, filename)
|
||||
}
|
||||
MaxmindEditionFiles = files
|
||||
|
||||
return true
|
||||
}
|
||||
|
|
@ -101,7 +108,6 @@ func DownloadGeoLite2DB(attempts int, period time.Duration) error {
|
|||
if dlError != nil {
|
||||
break
|
||||
}
|
||||
MaxmindEditionFiles = append(MaxmindEditionFiles, dbName+dbExtension)
|
||||
}
|
||||
|
||||
lastErr = dlError
|
||||
|
|
@ -217,7 +223,7 @@ func ValidateGeoLite2DBEditions() error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func fileExists(filePath string) bool {
|
||||
func _fileExists(filePath string) bool {
|
||||
info, err := os.Stat(filePath)
|
||||
if os.IsNotExist(err) {
|
||||
return false
|
||||
|
|
@ -225,3 +231,5 @@ func fileExists(filePath string) bool {
|
|||
|
||||
return !info.IsDir()
|
||||
}
|
||||
|
||||
var fileExists = _fileExists
|
||||
|
|
|
|||
75
internal/nginx/maxmind_test.go
Normal file
75
internal/nginx/maxmind_test.go
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
/*
|
||||
Copyright 2020 The Kubernetes 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 nginx
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func resetForTesting() {
|
||||
fileExists = _fileExists
|
||||
MaxmindLicenseKey = ""
|
||||
MaxmindEditionIDs = ""
|
||||
MaxmindEditionFiles = []string{}
|
||||
MaxmindMirror = ""
|
||||
}
|
||||
|
||||
func TestGeoLite2DBExists(t *testing.T) {
|
||||
tests := []struct {
|
||||
name string
|
||||
setup func()
|
||||
want bool
|
||||
wantFiles []string
|
||||
}{
|
||||
{
|
||||
name: "empty",
|
||||
wantFiles: []string{},
|
||||
},
|
||||
{
|
||||
name: "existing files",
|
||||
setup: func() {
|
||||
MaxmindEditionIDs = "GeoLite2-City,GeoLite2-ASN"
|
||||
fileExists = func(string) bool {
|
||||
return true
|
||||
}
|
||||
},
|
||||
want: true,
|
||||
wantFiles: []string{"GeoLite2-City.mmdb", "GeoLite2-ASN.mmdb"},
|
||||
},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
resetForTesting()
|
||||
// mimics assignment in flags.go
|
||||
config := &MaxmindEditionFiles
|
||||
|
||||
if tt.setup != nil {
|
||||
tt.setup()
|
||||
}
|
||||
if got := GeoLite2DBExists(); got != tt.want {
|
||||
t.Errorf("GeoLite2DBExists() = %v, want %v", got, tt.want)
|
||||
}
|
||||
if !reflect.DeepEqual(MaxmindEditionFiles, tt.wantFiles) {
|
||||
t.Errorf("nginx.MaxmindEditionFiles = %v, want %v", MaxmindEditionFiles, tt.wantFiles)
|
||||
}
|
||||
if !reflect.DeepEqual(*config, tt.wantFiles) {
|
||||
t.Errorf("config.MaxmindEditionFiles = %v, want %v", *config, tt.wantFiles)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue