-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from arangodb/testing-design
Adding test design
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Testing | ||
|
||
## Scenario's | ||
|
||
The following test scenario's must be covered by automated tests: | ||
|
||
- Creating 1 deployment (all modes, all environments, all storage engines) | ||
- Creating multiple deployments (all modes, all environments, all storage engines), | ||
controlling each individually | ||
- Creating deployment with/without authentication | ||
- Creating deployment with/without TLS | ||
|
||
- Updating deployment wrt: | ||
- Number of servers (scaling, up/down) | ||
- Image version (upgrading, downgrading within same minor version range (e.g. 3.2.x)) | ||
- Immutable fields (should be reset automatically) | ||
|
||
- Resilience: | ||
- Delete individual pods | ||
- Delete individual PVCs | ||
- Delete individual Services | ||
- Delete Node | ||
- Restart Node | ||
- API server unavailable | ||
|
||
## Test environments | ||
|
||
- Kubernetes clusters | ||
- Single node | ||
- Multi node | ||
- Access control mode (RBAC, ...) | ||
- Persistent volumes ... |