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

fix(tests): add analyzer resource to cli e2e table #2826

Merged
merged 1 commit into from
Jun 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions testing/cli-e2etest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,19 @@ The main idea is to test every CLI command against the Tracetest server with dif
| `list pollingprofile --output json` | [ListPollingProfile](./testscenarios/pollingprofile/list_pollingprofile_test.go) |
| `list pollingprofile --output yaml` | [ListPollingProfile](./testscenarios/pollingprofile/list_pollingprofile_test.go) |

### Resources: Analyzer

| CLI Command | Test scenarios |
| ----------------------------------------------------- | -------------- |
| `apply analyzer -f [analyzer-file]` | [ApplyAnalyzer](./testscenarios/analyzer/apply_analyzer_test.go) |
| `delete analyzer --id current` | [DeleteAnalyzer](./testscenarios/analyzer/delete_analyzer_test.go) |
| `get analyzer --id current --output pretty` | [GetAnalyzer](./testscenarios/analyzer/get_analyzer_test.go) |
| `get analyzer --id current --output json` | [GetAnalyzer](./testscenarios/analyzer/get_analyzer_test.go) |
| `get analyzer --id current --output yaml` | [GetAnalyzer](./testscenarios/analyzer/get_analyzer_test.go) |
| `list analyzer --output pretty` | [ListAnalyzer](./testscenarios/analyzer/list_analyzer_test.go) |
| `list analyzer --output json` | [ListAnalyzer](./testscenarios/analyzer/list_analyzer_test.go) |
| `list analyzer --output yaml` | [ListAnalyzer](./testscenarios/analyzer/list_analyzer_test.go) |

### Resources: Transactions

| CLI Command | Test scenarios |
Expand Down