| /* |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you 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 gremlingo |
| |
| import ( |
| "github.com/stretchr/testify/assert" |
| "golang.org/x/text/language" |
| "strconv" |
| "sync" |
| "testing" |
| ) |
| |
| // Arbitrarily high value to use to not trigger creation of new connections |
| const newConnectionThreshold = 100 |
| |
| var logger = newLogHandler(&defaultLogger{}, Info, language.English) |
| |
| func getPoolForTesting() *loadBalancingPool { |
| return &loadBalancingPool{ |
| url: "", |
| connSettings: newDefaultConnectionSettings(), |
| logHandler: newLogHandler(&defaultLogger{}, Info, language.English), |
| newConnectionThreshold: newConnectionThreshold, |
| connections: nil, |
| loadBalanceLock: sync.Mutex{}, |
| } |
| } |
| |
| func getMockConnection() *connection { |
| return &connection{ |
| logHandler: logger, |
| protocol: nil, |
| results: &synchronizedMap{ |
| internalMap: make(map[string]ResultSet), |
| syncLock: sync.Mutex{}, |
| }, |
| state: established, |
| } |
| } |
| |
| func TestConnectionPool(t *testing.T) { |
| t.Run("loadBalancingPool", func(t *testing.T) { |
| smallMap := make(map[string]ResultSet) |
| bigMap := make(map[string]ResultSet) |
| for i := 1; i < 4; i++ { |
| bigMap[strconv.Itoa(i)] = nil |
| if i < 3 { |
| smallMap[strconv.Itoa(i)] = nil |
| } |
| } |
| |
| t.Run("getLeastUsedConnection", func(t *testing.T) { |
| t.Run("getting the least used connection", func(t *testing.T) { |
| pool := getPoolForTesting() |
| defer pool.close() |
| mockConnection1 := getMockConnection() |
| mockConnection2 := getMockConnection() |
| mockConnection3 := getMockConnection() |
| mockConnection1.results.internalMap = bigMap |
| mockConnection2.results.internalMap = smallMap |
| mockConnection3.results.internalMap = bigMap |
| connections := []*connection{mockConnection1, mockConnection2, mockConnection3} |
| pool.connections = connections |
| |
| connection, err := pool.getLeastUsedConnection() |
| assert.Nil(t, err) |
| assert.Equal(t, mockConnection2, connection) |
| }) |
| |
| t.Run("purge non-established connections", func(t *testing.T) { |
| pool := getPoolForTesting() |
| defer pool.close() |
| mockConnection := getMockConnection() |
| mockConnection.results.internalMap = smallMap |
| nonEstablished := &connection{ |
| logHandler: logger, |
| protocol: nil, |
| results: nil, |
| state: closed, |
| } |
| connections := []*connection{nonEstablished, mockConnection} |
| pool.connections = connections |
| |
| connection, err := pool.getLeastUsedConnection() |
| assert.Nil(t, err) |
| assert.Equal(t, mockConnection, connection) |
| assert.Len(t, pool.connections, 1) |
| }) |
| }) |
| |
| t.Run("close", func(t *testing.T) { |
| pool := getPoolForTesting() |
| empty := &synchronizedMap{ |
| internalMap: make(map[string]ResultSet), |
| syncLock: sync.Mutex{}, |
| } |
| openConn1 := &connection{ |
| logHandler: logger, |
| protocol: nil, |
| results: empty, |
| state: established, |
| } |
| openConn2 := &connection{ |
| logHandler: logger, |
| protocol: nil, |
| results: empty, |
| state: established, |
| } |
| connections := []*connection{openConn1, openConn2} |
| pool.connections = connections |
| |
| pool.close() |
| assert.Equal(t, closed, openConn1.state) |
| assert.Equal(t, closed, openConn2.state) |
| }) |
| }) |
| } |