Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Test packages basic subscription - WIP #13377

Draft
wants to merge 25 commits into
base: main
Choose a base branch
from

Conversation

mrodm
Copy link
Contributor

@mrodm mrodm commented Apr 1, 2025

Proposed commit message

Update CI scripts and tools (ReportFailedTests) to allow run Elastic stack with other subscriptions.
Currently, it is just supported "basic" and "trial".

Checklist

  • I have reviewed tips for building integrations and this pull request is aligned with them.
  • I have verified that all data streams collect metrics or logs.
  • I have added an entry to my package's changelog.yml file.
  • I have verified that Kibana version constraints are current according to guidelines.
  • I have verified that any added dashboard complies with Kibana's Dashboard good practices

Author's Checklist

  • Test packages with "basic" subscription.
  • Ensure that packages with "enterprise" or "platinum" subscriptions are filtered out if "basic" is set.
  • Test in Dry-Run mode creation of scripts.
  • Remove changes for debugging in go.mod, go.sum and .buildkite/scripts/common.sh.

How to test this PR locally

# test some package
cd packages/<package>
elastic-package stack up -v -d -U stack.elastic_subscription=basic
elastic-package test -v
elastic-package stack down -v

# test creation of scripts
DRY_RUN=true CI_MAX_TESTS_REPORTED=1 BUILDKITE_BUILD_URL=https://buildkite.com/elastic/integrations/builds/20643 SERVERLESS=false STACK_VERSION=9.0.0-SNAPSHOT ELASTIC_SUBSCRIPTION=basic TESTSREPORTER_VERBOSE_MODE_ENABLED=false  mage -v ReportFailedTests build/test-results

Related issues

@elastic-vault-github-plugin-prod
Copy link

elastic-vault-github-plugin-prod bot commented Apr 1, 2025

🚀 Benchmarks report

Package o365_metrics 👍(9) 💚(5) 💔(7)

Expand to view
Data stream Previous EPS New EPS Diff (%) Result
outlook_activity 12658.23 7633.59 -5024.64 (-39.69%) 💔
service_health 83333.33 55555.56 -27777.77 (-33.33%) 💔
sharepoint_site_usage_detail 6578.95 4149.38 -2429.57 (-36.93%) 💔
teams_user_activity_user_counts 7692.31 6134.97 -1557.34 (-20.25%) 💔
viva_engage_device_usage_user_counts 9900.99 3759.4 -6141.59 (-62.03%) 💔
onedrive_usage_file_counts 11111.11 8849.56 -2261.55 (-20.35%) 💔
onedrive_usage_storage 19607.84 16393.44 -3214.4 (-16.39%) 💔

To see the full report comment with /test benchmark fullreport

@@ -137,7 +145,7 @@ func errorsFromTests(resultsPath string, options CheckOptions) ([]*packageError,
}

// packagesFromTests returns the sorted packages failing given the results file
func packagesFromTests(resultsPath string, options CheckOptions) ([]string, error) {
func packagesFromTests(resultsPath string) ([]string, error) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed unused parameter

"owners": p.teams,
}
func (b *buildError) SummaryData() map[string]any {
data := b.dataError.Data()
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved the creation of the common data from dataError struct to its own method.

"previousBuilds": p.errorLinks.previousBuilds,
}
func (b *buildError) DescriptionData() map[string]any {
return b.errorLinks.Data()
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as in dataError, moved the creation of the common data from errorLinks struct to its own method.

sb.WriteString(p.stackVersion)
sb.WriteString("] ")
}
sb.WriteString(p.dataError.String())
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

String built from the common data (dataError) is now built in just one place, as a method of the given struct.

maxPreviousLinks: maxPreviousLinks,
ghCli: options.GhCli,
maxPreviousLinks: options.MaxPreviousLinks,
verbose: options.Verbose,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added a new verbose parameter that it can be enabled via the TESTSREPORTER_VERBOSE_MODE_ENABLED environment variable.

Currently, this will show the full description of the issue that it is going to be created or updated.

@@ -757,7 +809,7 @@ teardown_test_package() {
}

list_all_directories() {
find . -maxdepth 1 -mindepth 1 -type d | xargs -I {} basename {} | sort
find . -maxdepth 1 -mindepth 1 -type d | xargs -I {} basename {} | sort |grep -E '^elastic_package_registry|cloud_defend|beaconing$'
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

To be removed.

@@ -20,7 +23,7 @@
- {{ . }}
{{- end }}
{{ end -}}
{{ if ne (len .owners) 0 -}}
{{ if and ( ne .owners nil) (ne (len .owners) 0) -}}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Avoid errors if owners list is not defined.

@mrodm mrodm mentioned this pull request Apr 3, 2025
2 tasks
@mrodm mrodm mentioned this pull request Apr 3, 2025
4 tasks
Comment on lines +54 to +77
- label: "Check integrations local stacks and basic subscription"
trigger: "integrations"
build:
env:
SERVERLESS: "false"
FORCE_CHECK_ALL: "true"
PUBLISH_COVERAGE_REPORTS: "false"
ELASTIC_SUBSCRIPTION: "basic"
depends_on:
- step: "check"
allow_failure: false

- label: "Check integrations local stacks and basic subscription - LogsDB"
trigger: "integrations"
build:
env:
SERVERLESS: "false"
FORCE_CHECK_ALL: "true"
STACK_LOGSDB_ENABLED: "true"
PUBLISH_COVERAGE_REPORTS: "false"
ELASTIC_SUBSCRIPTION: "basic"
depends_on:
- step: "check"
allow_failure: false
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

TBD

@mrodm
Copy link
Contributor Author

mrodm commented Apr 3, 2025

Split this PR into two different PRs:

@elasticmachine
Copy link

elasticmachine commented Apr 4, 2025

💔 Build Failed

Failed CI Steps

History

Copy link

Quality Gate passed Quality Gate passed

Issues
0 New issues
0 Fixed issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarQube

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants