blob: d2b4eb7d57a3ab04afa45e8c0a40510761a13491 [file] [log] [blame]
/*
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 cmd
import (
"bytes"
"context"
"os"
"testing"
"github.com/apache/camel-k/pkg/client"
"github.com/apache/camel-k/pkg/util/test"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
func kamelTestPostAddCommandInit(t *testing.T, rootCmd *cobra.Command) {
t.Helper()
err := kamelPostAddCommandInit(rootCmd)
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
}
func kamelTestPreAddCommandInitWithClient(client client.Client) (*RootCmdOptions, *cobra.Command) {
options := RootCmdOptions{
Context: context.Background(),
_client: client,
}
rootCmd := kamelPreAddCommandInit(&options)
rootCmd.Run = test.EmptyRun
return &options, rootCmd
}
func kamelTestPreAddCommandInit() (*RootCmdOptions, *cobra.Command) {
fakeClient, _ := test.NewFakeClient()
return kamelTestPreAddCommandInitWithClient(fakeClient)
}
func TestLoadFromEnvVar(t *testing.T) {
defer teardown(t)
// shows how to include a "," character inside an env value see VAR1 value
if err := os.Setenv("KAMEL_RUN_ENVS", "\"VAR1=value,\"\"othervalue\"\"\",VAR2=value2"); err != nil {
t.Fatalf("Unexpected error: %v", err)
}
runCmdOptions, rootCmd, _ := initializeRunCmdOptions(t)
_, err := test.ExecuteCommand(rootCmd, "run", "route.java")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if len(runCmdOptions.EnvVars) != 2 {
t.Fatalf("Properties expected to contain: \n %v elements\nGot:\n %v elemtns\n", 2, len(runCmdOptions.EnvVars))
}
if runCmdOptions.EnvVars[0] != "VAR1=value,\"othervalue\"" || runCmdOptions.EnvVars[1] != "VAR2=value2" {
t.Fatalf("EnvVars expected to be: \n %v\nGot:\n %v\n", "[VAR1=value,\"othervalue\" VAR=value2]", runCmdOptions.EnvVars)
}
}
func TestLoadFromFile(t *testing.T) {
// shows how to include a "," character inside a property value see VAR1 value
propertiesFile := []byte(`kamel.run.envs: "VAR1=value,""othervalue""",VAR2=value2`)
viper.SetConfigType("properties")
readViperConfigFromBytes(t, propertiesFile)
runCmdOptions, rootCmd, _ := initializeRunCmdOptions(t)
_, err := test.ExecuteCommand(rootCmd, "run", "route.java")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if len(runCmdOptions.EnvVars) != 2 {
t.Fatalf("Properties expected to contain: \n %v elements\nGot:\n %v elemtns\n", 2, len(runCmdOptions.EnvVars))
}
if runCmdOptions.EnvVars[0] != "VAR1=value,\"othervalue\"" || runCmdOptions.EnvVars[1] != "VAR2=value2" {
t.Fatalf("EnvVars expected to be: \n %v\nGot:\n %v\n", "[VAR1=value,\"othervalue\" VAR=value2]", runCmdOptions.EnvVars)
}
}
func TestPrecedenceEnvVarOverFile(t *testing.T) {
defer teardown(t)
if err := os.Setenv("KAMEL_RUN_ENVS", "VAR1=envVar"); err != nil {
t.Fatalf("Unexpected error: %v", err)
}
propertiesFile := []byte(`kamel.run.envs: VAR2=file`)
viper.SetConfigType("properties")
readViperConfigFromBytes(t, propertiesFile)
runCmdOptions, rootCmd, _ := initializeRunCmdOptions(t)
_, err := test.ExecuteCommand(rootCmd, "run", "route.java")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if len(runCmdOptions.EnvVars) != 1 {
t.Fatalf("Properties expected to contain: \n %v elements\nGot:\n %v elements\n", 1, len(runCmdOptions.EnvVars))
}
if runCmdOptions.EnvVars[0] != "VAR1=envVar" {
t.Fatalf("EnvVars expected to be: \n %v\nGot:\n %v\n", "VAR1=envVar", runCmdOptions.EnvVars)
}
}
func TestPrecedenceCommandLineOverEverythingElse(t *testing.T) {
defer teardown(t)
if err := os.Setenv("KAMEL_RUN_ENVS", "VAR1=envVar"); err != nil {
t.Fatalf("Unexpected error: %v", err)
}
propertiesFile := []byte(`kamel.run.envs: VAR2=file`)
viper.SetConfigType("properties")
readViperConfigFromBytes(t, propertiesFile)
runCmdOptions, rootCmd, _ := initializeRunCmdOptions(t)
_, err := test.ExecuteCommand(rootCmd, "run", "route.java", "--env", "VAR3=commandLine")
if err != nil {
t.Fatalf("Unexpected error: %v", err)
}
if len(runCmdOptions.EnvVars) != 1 {
t.Fatalf("Properties expected to contain: \n %v elements\nGot:\n %v elements\n", 1, len(runCmdOptions.EnvVars))
}
if runCmdOptions.EnvVars[0] != "VAR3=commandLine" {
t.Fatalf("EnvVars expected to be: \n %v\nGot:\n %v\n", "VAR3=commandLine", runCmdOptions.EnvVars)
}
}
func readViperConfigFromBytes(t *testing.T, propertiesFile []byte) {
t.Helper()
unexpectedErr := viper.ReadConfig(bytes.NewReader(propertiesFile))
if unexpectedErr != nil {
t.Fatalf("Unexpected error: %v", unexpectedErr)
}
}
// We must ALWAYS clean the environment variables and viper library properties to avoid mess up with the rest of the tests.
func teardown(t *testing.T) {
t.Helper()
if err := os.Setenv("KAMEL_RUN_ENVS", ""); err != nil {
t.Fatalf("Unexpected error: %v", err)
}
readViperConfigFromBytes(t, make([]byte, 0))
}