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() |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 25 | assert.Equal(t, actualResult.kafkaAddress, DefaultKafkaAddress) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 26 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, interface{}(nil)) |
| 27 | } |
| 28 | |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 29 | func TestKafkaProxyOptionAddress(t *testing.T) { |
| 30 | actualResult := newInterContainerProxy(InterContainerAddress("10.20.30.40:1020")) |
| 31 | assert.Equal(t, actualResult.kafkaAddress, "10.20.30.40:1020") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 32 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, interface{}(nil)) |
| 33 | } |
| 34 | |
| 35 | func TestKafkaProxyOptionTopic(t *testing.T) { |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 36 | actualResult := newInterContainerProxy(DefaultTopic(&Topic{Name: "Adapter"})) |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 37 | assert.Equal(t, actualResult.kafkaAddress, DefaultKafkaAddress) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 38 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, interface{}(nil)) |
Matteo Scandolo | f346a2d | 2020-01-24 13:14:54 -0800 | [diff] [blame] | 39 | assert.Equal(t, actualResult.defaultTopic.Name, "Adapter") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | type myInterface struct { |
| 43 | } |
| 44 | |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 45 | func TestKafkaProxyOptionTargetInterface(t *testing.T) { |
| 46 | var m *myInterface |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 47 | actualResult := newInterContainerProxy(RequestHandlerInterface(m)) |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 48 | assert.Equal(t, actualResult.kafkaAddress, DefaultKafkaAddress) |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 49 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, m) |
| 50 | } |
| 51 | |
| 52 | func TestKafkaProxyChangeAllOptions(t *testing.T) { |
| 53 | var m *myInterface |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 54 | actualResult := newInterContainerProxy( |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 55 | InterContainerAddress("10.20.30.40:1020"), |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 56 | DefaultTopic(&Topic{Name: "Adapter"}), |
| 57 | RequestHandlerInterface(m)) |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 58 | assert.Equal(t, actualResult.kafkaAddress, "10.20.30.40:1020") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 59 | assert.Equal(t, actualResult.defaultRequestHandlerInterface, m) |
Matteo Scandolo | f346a2d | 2020-01-24 13:14:54 -0800 | [diff] [blame] | 60 | assert.Equal(t, actualResult.defaultTopic.Name, "Adapter") |
Scott Baker | 2c1c482 | 2019-10-16 11:02:41 -0700 | [diff] [blame] | 61 | } |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 62 | |
| 63 | func TestKafkaProxyEnableLivenessChannel(t *testing.T) { |
| 64 | var m *myInterface |
| 65 | |
| 66 | // Note: This doesn't actually start the client |
| 67 | client := NewSaramaClient() |
| 68 | |
Kent Hagerman | 3a40230 | 2020-01-31 15:03:53 -0500 | [diff] [blame] | 69 | probe := newInterContainerProxy( |
Neha Sharma | dd9af39 | 2020-04-28 09:03:57 +0000 | [diff] [blame] | 70 | InterContainerAddress("10.20.30.40:1020"), |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 71 | DefaultTopic(&Topic{Name: "Adapter"}), |
| 72 | RequestHandlerInterface(m), |
| 73 | MsgClient(client), |
| 74 | ) |
| 75 | |
Scott Baker | 104b67d | 2019-10-29 15:56:27 -0700 | [diff] [blame] | 76 | ch := probe.EnableLivenessChannel(true) |
| 77 | |
| 78 | // The channel should have one "true" message on it |
| 79 | assert.NotEmpty(t, ch) |
| 80 | |
| 81 | select { |
| 82 | case stuff := <-ch: |
| 83 | assert.True(t, stuff) |
| 84 | default: |
| 85 | t.Error("Failed to read from the channel") |
| 86 | } |
| 87 | } |