Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | package kafka |
| 17 | |
| 18 | import ( |
| 19 | "github.com/stretchr/testify/assert" |
| 20 | "testing" |
| 21 | ) |
| 22 | |
| 23 | func TestDefaultKafkaProxy(t *testing.T) { |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 24 | actualResult := newInterContainerProxy() |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 25 | assert.Equal(t, actualResult.kafkaHost, DefaultKafkaHost) |
| 26 | assert.Equal(t, actualResult.kafkaPort, DefaultKafkaPort) |
| 27 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, interface{}(nil)) |
| 28 | } |
| 29 | |
| 30 | func TestKafkaProxyOptionHost(t *testing.T) { |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 31 | actualResult := newInterContainerProxy(InterContainerHost("10.20.30.40")) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 32 | assert.Equal(t, actualResult.kafkaHost, "10.20.30.40") |
| 33 | assert.Equal(t, actualResult.kafkaPort, DefaultKafkaPort) |
| 34 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, interface{}(nil)) |
| 35 | } |
| 36 | |
| 37 | func TestKafkaProxyOptionPort(t *testing.T) { |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 38 | actualResult := newInterContainerProxy(InterContainerPort(1020)) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 39 | assert.Equal(t, actualResult.kafkaHost, DefaultKafkaHost) |
| 40 | assert.Equal(t, actualResult.kafkaPort, 1020) |
| 41 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, interface{}(nil)) |
| 42 | } |
| 43 | |
| 44 | func TestKafkaProxyOptionTopic(t *testing.T) { |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 45 | actualResult := newInterContainerProxy(DefaultTopic(&Topic{Name: "Adapter"})) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 46 | assert.Equal(t, actualResult.kafkaHost, DefaultKafkaHost) |
| 47 | assert.Equal(t, actualResult.kafkaPort, DefaultKafkaPort) |
| 48 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, interface{}(nil)) |
Matteo Scandolo | f346a2d | 2020-01-24 13:14:54 -0800 | [diff] [blame] | 49 | assert.Equal(t, actualResult.defaultTopic.Name, "Adapter") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | type myInterface struct { |
| 53 | } |
| 54 | |
| 55 | func (m *myInterface) doSomething() { |
| 56 | } |
| 57 | |
| 58 | func TestKafkaProxyOptionTargetInterface(t *testing.T) { |
| 59 | var m *myInterface |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 60 | actualResult := newInterContainerProxy(RequestHandlerInterface(m)) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 61 | assert.Equal(t, actualResult.kafkaHost, DefaultKafkaHost) |
| 62 | assert.Equal(t, actualResult.kafkaPort, DefaultKafkaPort) |
| 63 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, m) |
| 64 | } |
| 65 | |
| 66 | func TestKafkaProxyChangeAllOptions(t *testing.T) { |
| 67 | var m *myInterface |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 68 | actualResult := newInterContainerProxy( |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 69 | InterContainerHost("10.20.30.40"), |
| 70 | InterContainerPort(1020), |
| 71 | DefaultTopic(&Topic{Name: "Adapter"}), |
| 72 | RequestHandlerInterface(m)) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 73 | assert.Equal(t, actualResult.kafkaHost, "10.20.30.40") |
| 74 | assert.Equal(t, actualResult.kafkaPort, 1020) |
| 75 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, m) |
Matteo Scandolo | f346a2d | 2020-01-24 13:14:54 -0800 | [diff] [blame] | 76 | assert.Equal(t, actualResult.defaultTopic.Name, "Adapter") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 77 | } |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 78 | |
| 79 | func TestKafkaProxyEnableLivenessChannel(t *testing.T) { |
| 80 | var m *myInterface |
| 81 | |
| 82 | // Note: This doesn't actually start the client |
| 83 | client := NewSaramaClient() |
| 84 | |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 85 | probe := newInterContainerProxy( |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 86 | InterContainerHost("10.20.30.40"), |
| 87 | InterContainerPort(1020), |
| 88 | DefaultTopic(&Topic{Name: "Adapter"}), |
| 89 | RequestHandlerInterface(m), |
| 90 | MsgClient(client), |
| 91 | ) |
| 92 | |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 93 | ch := probe.EnableLivenessChannel(true) |
| 94 | |
| 95 | // The channel should have one "true" message on it |
| 96 | assert.NotEmpty(t, ch) |
| 97 | |
| 98 | select { |
| 99 | case stuff := <-ch: |
| 100 | assert.True(t, stuff) |
| 101 | default: |
| 102 | t.Error("Failed to read from the channel") |
| 103 | } |
| 104 | } |