generated from finos/standards-project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change(control): Typofixes and new tests for RDMS (#617)
Co-authored-by: Eddie Knight <[email protected]> Co-authored-by: Damien Burks <[email protected]> Co-authored-by: Michael Lysaght <[email protected]>
- Loading branch information
1 parent
45791c7
commit 191f3f6
Showing
3 changed files
with
42 additions
and
113 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,18 @@ | ||
@CCC.RDMS.C8.TR01 | ||
Feature: Data encryption in transit | ||
|
||
""" | ||
This reature ensures that end-to-end encryption of data in transit is leveraged and enforced | ||
""" | ||
|
||
@CCC.RDMS.C8.TR01.TE01 | ||
Scenario: Verify that databases are enforcing encrypted connections | ||
Given an application attempting to connect to a database and the database is configured with some form of "require secure transport" | ||
When the connection attempt is made without using encryption | ||
Then the connection should be refused | ||
|
||
@CCC.RDMS.C8.TR01.TE02 | ||
Scenario: Verify all connections to the database are established using secure connectionss | ||
Given a user connection has been established to the database | ||
When an admin follows vendor specific steps to audit connection details | ||
Then there should be no connections observed using insecure connections |