152 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			152 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			Go
		
	
	
	
| // Copyright 2017 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 remote
 | |
| 
 | |
| import (
 | |
| 	"io/ioutil"
 | |
| 	"os"
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/prometheus/common/model"
 | |
| 	"github.com/prometheus/prometheus/config"
 | |
| 	"github.com/prometheus/prometheus/pkg/labels"
 | |
| 	"github.com/prometheus/prometheus/util/testutil"
 | |
| )
 | |
| 
 | |
| func TestWriteStorageLifecycle(t *testing.T) {
 | |
| 	dir, err := ioutil.TempDir("", "TestWriteStorageLifecycle")
 | |
| 	testutil.Ok(t, err)
 | |
| 	defer os.RemoveAll(dir)
 | |
| 
 | |
| 	s := NewWriteStorage(nil, dir, defaultFlushDeadline)
 | |
| 	conf := &config.Config{
 | |
| 		GlobalConfig: config.DefaultGlobalConfig,
 | |
| 		RemoteWriteConfigs: []*config.RemoteWriteConfig{
 | |
| 			&config.DefaultRemoteWriteConfig,
 | |
| 		},
 | |
| 	}
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 1, len(s.queues))
 | |
| 
 | |
| 	err = s.Close()
 | |
| 	testutil.Ok(t, err)
 | |
| }
 | |
| 
 | |
| func TestUpdateExternalLabels(t *testing.T) {
 | |
| 	dir, err := ioutil.TempDir("", "TestUpdateExternalLabels")
 | |
| 	testutil.Ok(t, err)
 | |
| 	defer os.RemoveAll(dir)
 | |
| 
 | |
| 	s := NewWriteStorage(nil, dir, defaultFlushDeadline)
 | |
| 
 | |
| 	externalLabels := labels.FromStrings("external", "true")
 | |
| 	conf := &config.Config{
 | |
| 		GlobalConfig: config.GlobalConfig{},
 | |
| 		RemoteWriteConfigs: []*config.RemoteWriteConfig{
 | |
| 			&config.DefaultRemoteWriteConfig,
 | |
| 		},
 | |
| 	}
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 1, len(s.queues))
 | |
| 	testutil.Equals(t, labels.Labels(nil), s.queues[0].externalLabels)
 | |
| 
 | |
| 	conf.GlobalConfig.ExternalLabels = externalLabels
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 1, len(s.queues))
 | |
| 	testutil.Equals(t, externalLabels, s.queues[0].externalLabels)
 | |
| 
 | |
| 	err = s.Close()
 | |
| 	testutil.Ok(t, err)
 | |
| }
 | |
| 
 | |
| func TestWriteStorageApplyConfigsIdempotent(t *testing.T) {
 | |
| 	dir, err := ioutil.TempDir("", "TestWriteStorageApplyConfigsIdempotent")
 | |
| 	testutil.Ok(t, err)
 | |
| 	defer os.RemoveAll(dir)
 | |
| 
 | |
| 	s := NewWriteStorage(nil, dir, defaultFlushDeadline)
 | |
| 
 | |
| 	conf := &config.Config{
 | |
| 		GlobalConfig: config.GlobalConfig{},
 | |
| 		RemoteWriteConfigs: []*config.RemoteWriteConfig{
 | |
| 			&config.DefaultRemoteWriteConfig,
 | |
| 		},
 | |
| 	}
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 1, len(s.queues))
 | |
| 	queue := s.queues[0]
 | |
| 
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 1, len(s.queues))
 | |
| 	testutil.Assert(t, queue == s.queues[0], "Queue pointer should have remained the same")
 | |
| 
 | |
| 	err = s.Close()
 | |
| 	testutil.Ok(t, err)
 | |
| }
 | |
| 
 | |
| func TestWriteStorageApplyConfigsPartialUpdate(t *testing.T) {
 | |
| 	dir, err := ioutil.TempDir("", "TestWriteStorageApplyConfigsPartialUpdate")
 | |
| 	testutil.Ok(t, err)
 | |
| 	defer os.RemoveAll(dir)
 | |
| 
 | |
| 	s := NewWriteStorage(nil, dir, defaultFlushDeadline)
 | |
| 
 | |
| 	c0 := &config.RemoteWriteConfig{
 | |
| 		RemoteTimeout: model.Duration(10 * time.Second),
 | |
| 		QueueConfig:   config.DefaultQueueConfig,
 | |
| 	}
 | |
| 	c1 := &config.RemoteWriteConfig{
 | |
| 		RemoteTimeout: model.Duration(20 * time.Second),
 | |
| 		QueueConfig:   config.DefaultQueueConfig,
 | |
| 	}
 | |
| 	c2 := &config.RemoteWriteConfig{
 | |
| 		RemoteTimeout: model.Duration(30 * time.Second),
 | |
| 		QueueConfig:   config.DefaultQueueConfig,
 | |
| 	}
 | |
| 
 | |
| 	conf := &config.Config{
 | |
| 		GlobalConfig:       config.GlobalConfig{},
 | |
| 		RemoteWriteConfigs: []*config.RemoteWriteConfig{c0, c1, c2},
 | |
| 	}
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 3, len(s.queues))
 | |
| 	q := s.queues[1]
 | |
| 
 | |
| 	// Update c0 and c2.
 | |
| 	c0.RemoteTimeout = model.Duration(40 * time.Second)
 | |
| 	c2.RemoteTimeout = model.Duration(50 * time.Second)
 | |
| 	conf = &config.Config{
 | |
| 		GlobalConfig:       config.GlobalConfig{},
 | |
| 		RemoteWriteConfigs: []*config.RemoteWriteConfig{c0, c1, c2},
 | |
| 	}
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 3, len(s.queues))
 | |
| 
 | |
| 	testutil.Assert(t, q == s.queues[1], "Pointer of unchanged queue should have remained the same")
 | |
| 
 | |
| 	// Delete c0.
 | |
| 	conf = &config.Config{
 | |
| 		GlobalConfig:       config.GlobalConfig{},
 | |
| 		RemoteWriteConfigs: []*config.RemoteWriteConfig{c1, c2},
 | |
| 	}
 | |
| 	s.ApplyConfig(conf)
 | |
| 	testutil.Equals(t, 2, len(s.queues))
 | |
| 
 | |
| 	testutil.Assert(t, q != s.queues[1], "If the index changed, the queue should be stopped and recreated.")
 | |
| 
 | |
| 	err = s.Close()
 | |
| 	testutil.Ok(t, err)
 | |
| }
 |