elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 1 | // - |
| 2 | // ========================LICENSE_START================================= |
| 3 | // O-RAN-SC |
| 4 | // %% |
| 5 | // Copyright (C) 2021: Nordix Foundation |
| 6 | // %% |
| 7 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | // you may not use this file except in compliance with the License. |
| 9 | // You may obtain a copy of the License at |
| 10 | // |
| 11 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | // |
| 13 | // Unless required by applicable law or agreed to in writing, software |
| 14 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | // See the License for the specific language governing permissions and |
| 17 | // limitations under the License. |
| 18 | // ========================LICENSE_END=================================== |
| 19 | // |
| 20 | |
| 21 | package config |
| 22 | |
| 23 | import ( |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 24 | "bytes" |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 25 | "os" |
| 26 | "reflect" |
| 27 | "testing" |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 28 | |
| 29 | log "github.com/sirupsen/logrus" |
| 30 | "github.com/stretchr/testify/require" |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 31 | ) |
| 32 | |
| 33 | func TestNew_envVarsSetConfigContainSetValues(t *testing.T) { |
elinuxhenrik | 65a53d2 | 2021-09-29 15:41:26 +0200 | [diff] [blame] | 34 | assertions := require.New(t) |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 35 | os.Setenv("LOG_LEVEL", "Debug") |
elinuxhenrik | 382870d | 2021-09-23 11:09:09 +0200 | [diff] [blame] | 36 | os.Setenv("INFO_PRODUCER_HOST", "producerHost") |
| 37 | os.Setenv("INFO_PRODUCER_PORT", "8095") |
elinuxhenrik | a77cd65 | 2021-09-06 10:56:21 +0200 | [diff] [blame] | 38 | os.Setenv("INFO_COORD_ADDR", "infoCoordAddr") |
elinuxhenrik | c4960f1 | 2021-10-28 16:27:57 +0200 | [diff] [blame] | 39 | os.Setenv("DMAAP_MR_ADDR", "mrHost:3908") |
| 40 | os.Setenv("PRODUCER_CERT_PATH", "cert") |
| 41 | os.Setenv("PRODUCER_KEY_PATH", "key") |
elinuxhenrik | b1fb1d8 | 2021-09-07 02:58:52 +0200 | [diff] [blame] | 42 | t.Cleanup(func() { |
| 43 | os.Clearenv() |
| 44 | }) |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 45 | wantConfig := Config{ |
elinuxhenrik | 65a53d2 | 2021-09-29 15:41:26 +0200 | [diff] [blame] | 46 | LogLevel: log.DebugLevel, |
elinuxhenrik | 382870d | 2021-09-23 11:09:09 +0200 | [diff] [blame] | 47 | InfoProducerHost: "producerHost", |
| 48 | InfoProducerPort: 8095, |
| 49 | InfoCoordinatorAddress: "infoCoordAddr", |
elinuxhenrik | c4960f1 | 2021-10-28 16:27:57 +0200 | [diff] [blame] | 50 | DMaaPMRAddress: "mrHost:3908", |
| 51 | ProducerCertPath: "cert", |
| 52 | ProducerKeyPath: "key", |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 53 | } |
elinuxhenrik | 65a53d2 | 2021-09-29 15:41:26 +0200 | [diff] [blame] | 54 | got := New() |
| 55 | |
| 56 | assertions.Equal(&wantConfig, got) |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 57 | } |
| 58 | |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 59 | func TestNew_faultyIntValueSetConfigContainDefaultValueAndWarnInLog(t *testing.T) { |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 60 | assertions := require.New(t) |
| 61 | var buf bytes.Buffer |
| 62 | log.SetOutput(&buf) |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 63 | |
elinuxhenrik | 382870d | 2021-09-23 11:09:09 +0200 | [diff] [blame] | 64 | os.Setenv("INFO_PRODUCER_PORT", "wrong") |
elinuxhenrik | b1fb1d8 | 2021-09-07 02:58:52 +0200 | [diff] [blame] | 65 | t.Cleanup(func() { |
| 66 | log.SetOutput(os.Stderr) |
| 67 | os.Clearenv() |
| 68 | }) |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 69 | wantConfig := Config{ |
elinuxhenrik | 65a53d2 | 2021-09-29 15:41:26 +0200 | [diff] [blame] | 70 | LogLevel: log.InfoLevel, |
elinuxhenrik | 382870d | 2021-09-23 11:09:09 +0200 | [diff] [blame] | 71 | InfoProducerHost: "", |
| 72 | InfoProducerPort: 8085, |
elinuxhenrik | c4960f1 | 2021-10-28 16:27:57 +0200 | [diff] [blame] | 73 | InfoCoordinatorAddress: "https://enrichmentservice:8434", |
| 74 | DMaaPMRAddress: "https://message-router.onap:3905", |
elinuxhenrik | bfce194 | 2021-11-08 15:58:20 +0100 | [diff] [blame^] | 75 | ProducerCertPath: "security/producer.crt", |
| 76 | ProducerKeyPath: "security/producer.key", |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 77 | } |
| 78 | if got := New(); !reflect.DeepEqual(got, &wantConfig) { |
| 79 | t.Errorf("New() = %v, want %v", got, &wantConfig) |
| 80 | } |
| 81 | logString := buf.String() |
elinuxhenrik | 382870d | 2021-09-23 11:09:09 +0200 | [diff] [blame] | 82 | assertions.Contains(logString, "Invalid int value: wrong for variable: INFO_PRODUCER_PORT. Default value: 8085 will be used") |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 83 | } |
| 84 | |
elinuxhenrik | 65a53d2 | 2021-09-29 15:41:26 +0200 | [diff] [blame] | 85 | func TestNew_envFaultyLogLevelConfigContainDefaultValues(t *testing.T) { |
| 86 | assertions := require.New(t) |
| 87 | var buf bytes.Buffer |
| 88 | log.SetOutput(&buf) |
| 89 | |
| 90 | os.Setenv("LOG_LEVEL", "wrong") |
| 91 | t.Cleanup(func() { |
| 92 | log.SetOutput(os.Stderr) |
| 93 | os.Clearenv() |
| 94 | }) |
| 95 | |
elinuxhenrik | 63a42ca | 2021-09-06 22:16:24 +0200 | [diff] [blame] | 96 | wantConfig := Config{ |
elinuxhenrik | 65a53d2 | 2021-09-29 15:41:26 +0200 | [diff] [blame] | 97 | LogLevel: log.InfoLevel, |
elinuxhenrik | 382870d | 2021-09-23 11:09:09 +0200 | [diff] [blame] | 98 | InfoProducerHost: "", |
| 99 | InfoProducerPort: 8085, |
elinuxhenrik | c4960f1 | 2021-10-28 16:27:57 +0200 | [diff] [blame] | 100 | InfoCoordinatorAddress: "https://enrichmentservice:8434", |
| 101 | DMaaPMRAddress: "https://message-router.onap:3905", |
elinuxhenrik | bfce194 | 2021-11-08 15:58:20 +0100 | [diff] [blame^] | 102 | ProducerCertPath: "security/producer.crt", |
| 103 | ProducerKeyPath: "security/producer.key", |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 104 | } |
elinuxhenrik | 65a53d2 | 2021-09-29 15:41:26 +0200 | [diff] [blame] | 105 | |
| 106 | got := New() |
| 107 | |
| 108 | assertions.Equal(&wantConfig, got) |
| 109 | logString := buf.String() |
| 110 | assertions.Contains(logString, "Invalid log level: wrong. Log level will be Info!") |
elinuxhenrik | cce95ff | 2021-09-05 17:27:02 +0200 | [diff] [blame] | 111 | } |