Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/5716-5491-mtls-integration-test'…
Browse files Browse the repository at this point in the history
… into 5716-5491-mtls-integration-test
  • Loading branch information
AndersonQ committed Nov 1, 2024
2 parents f462dda + 3d6c0b3 commit 76a5837
Show file tree
Hide file tree
Showing 5 changed files with 117 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ elastic_agent
fleet.yml
fleet.enc
fleet.enc.lock
env.sh

# Editor swap files
*.swp
Expand Down
32 changes: 32 additions & 0 deletions changelog/fragments/1730418510-confirm-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Kind can be one of:
# - breaking-change: a change to previously-documented behavior
# - deprecation: functionality that is being removed in a later release
# - bug-fix: fixes a problem in a previous version
# - enhancement: extends functionality but does not break or fix existing behavior
# - feature: new functionality
# - known-issue: problems that we are aware of in a given version
# - security: impacts on the security of a product or a user’s deployment.
# - upgrade: important information for someone upgrading from a prior version
# - other: does not fit into any of the other categories
kind: bug-fix

# Change summary; a 80ish characters long description of the change.
summary: Allows users to enter spaces around yes/no inputs in CLI confirmation prompts.

# Long description; in case the summary is not enough to describe the change
# this field accommodate a description without length limits.
# NOTE: This field will be rendered only for breaking-change and known-issue kinds at the moment.
#description:

# Affected component; usually one of "elastic-agent", "fleet-server", "filebeat", "metricbeat", "auditbeat", "all", etc.
component: elastic-agent

# PR URL; optional; the PR number that added the changeset.
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added.
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number.
# Please provide it if you are adding a fragment for a different PR.
pr: https://github.com/elastic/elastic-agent/pull/5909

# Issue URL; optional; the GitHub issue related to this changeset (either closes or is part of).
# If not present is automatically filled by the tooling with the issue linked to the PR number.
#issue: https://github.com/owner/repo/1234
2 changes: 1 addition & 1 deletion internal/pkg/cli/confirm.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func confirm(r io.Reader, out io.Writer, prompt string, def bool) (bool, error)
if !reader.Scan() {
break
}
switch strings.ToLower(reader.Text()) {
switch strings.ToLower(strings.TrimSpace(reader.Text())) {
case "":
return def, nil
case "y", "yes", "yeah":
Expand Down
75 changes: 75 additions & 0 deletions internal/pkg/cli/confirm_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License 2.0;
// you may not use this file except in compliance with the Elastic License 2.0.

package cli

import (
"strings"
"testing"

"github.com/stretchr/testify/require"
)

func TestConfirm(t *testing.T) {
cases := map[string]struct {
expectedResult bool
expectedErr string
}{
"y": {true, ""},
"y ": {true, ""},
" y": {true, ""},
"y\t": {true, ""},
"\ty": {true, ""},
"yes": {true, ""},
"yeah": {true, ""},
"Y": {true, ""},
"YES": {true, ""},
"YEAH": {true, ""},
"Yes": {true, ""},
"Yeah": {true, ""},
"Yup": {false, "error reading user input"},
"n": {false, ""},
"n ": {false, ""},
" n": {false, ""},
"n\t": {false, ""},
"\tn": {false, ""},
"no": {false, ""},
"N": {false, ""},
"NO": {false, ""},
"No": {false, ""},
"nope": {false, "error reading user input"},
}

testFn := func(t *testing.T, input string, def, expectedResult bool, expectedErr string) {
inputReader := strings.NewReader(input)
var outWriter strings.Builder
result, err := confirm(inputReader, &outWriter, "prompt", def)

prompt := "prompt "
if def {
prompt += "[Y/n]:"
} else {
prompt += "[y/N]:"
}

require.Equal(t, expectedResult, result)
if expectedErr == "" {
require.NoError(t, err)
require.Equal(t, prompt, outWriter.String())
} else {
expectedOut := prompt + "Please write 'y' or 'n'\n" + prompt
require.Equal(t, expectedErr, err.Error())
require.Equal(t, expectedOut, outWriter.String())
}
}

for input, test := range cases {
t.Run(input+"-default-to-yes", func(t *testing.T) {
testFn(t, input, true, test.expectedResult, test.expectedErr)
})
t.Run(input+"-default-to-no", func(t *testing.T) {
testFn(t, input, false, test.expectedResult, test.expectedErr)
})
}
}
16 changes: 8 additions & 8 deletions pkg/testing/ess/create_deployment_csp_configuration.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
gcp:
integrations_server_conf_id: "gcp.integrationsserver.n2.68x32x45.2"
integrations_server_conf_id: "gcp.integrationsserver.n2.68x32x45"
elasticsearch_conf_id: "gcp.es.datahot.n2.68x10x45"
elasticsearch_deployment_template_id: "gcp-storage-optimized-v5"
elasticsearch_deployment_template_id: "gcp-storage-optimized"
kibana_instance_configuration_id: "gcp.kibana.n2.68x32x45"
azure:
integrations_server_conf_id: "azure.integrationsserver.fsv2.2"
integrations_server_conf_id: "azure.integrationsserver.fsv2"
elasticsearch_conf_id: "azure.es.datahot.edsv4"
elasticsearch_deployment_template_id: "azure-storage-optimized-v2"
elasticsearch_deployment_template_id: "azure-storage-optimized"
kibana_instance_configuration_id: "azure.kibana.fsv2"
aws:
integrations_server_conf_id: "aws.integrationsserver.c5d.2.1"
elasticsearch_conf_id: "aws.es.datahot.i3.1.1"
elasticsearch_deployment_template_id: "aws-storage-optimized-v5"
kibana_instance_configuration_id: "aws.kibana.c5d.1.1"
integrations_server_conf_id: "aws.integrationsserver.c5d"
elasticsearch_conf_id: "aws.es.datahot.i3"
elasticsearch_deployment_template_id: "aws-storage-optimized"
kibana_instance_configuration_id: "aws.kibana.c5d"

0 comments on commit 76a5837

Please sign in to comment.