-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/5716-5491-mtls-integration-test'…
… into 5716-5491-mtls-integration-test
- Loading branch information
Showing
5 changed files
with
117 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ elastic_agent | |
fleet.yml | ||
fleet.enc | ||
fleet.enc.lock | ||
env.sh | ||
|
||
# Editor swap files | ||
*.swp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |