Adds 2 init tests

This commit is contained in:
Hyatt 2022-03-18 09:47:55 -05:00
parent 66db7f2fa4
commit 38ff59f2b8
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -0,0 +1,36 @@
package main
import (
"os"
"testing"
)
func TestGetEnvString(t *testing.T) {
os.Unsetenv("TEST_ENV")
testAnswer := getEnvString("TEST_ENV", "success")
if testAnswer != "success" {
t.Errorf("getEnvString() failed to return the expected result, got: %s, wanted: %s.", testAnswer, "success")
}
os.Setenv("TEST_ENV", "42")
testAnswer = getEnvString("TEST_ENV", "success")
if testAnswer != "42" {
t.Errorf("getEnvString() failed to return the expected result, got: %s, wanted: %s", testAnswer, "42")
}
return
}
func TestGetEnvInt(t *testing.T) {
os.Unsetenv("TEST_ENV")
testAnswer := getEnvInt("TEST_ENV", 9500)
if testAnswer != 9500 {
t.Errorf("getEnvInt() failed to return the expected result, got: %v, wanted: %s", testAnswer, "9500")
}
os.Setenv("TEST_ENV", "9000")
testAnswer = getEnvInt("TEST_ENV", 9500)
if testAnswer != 9000 {
t.Errorf("getEnvInt() failed to return the expected result, got: %v, wanted: %s", testAnswer, "9000")
}
}