-
Notifications
You must be signed in to change notification settings - Fork 9
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 #476 from boozallen/469-fix-test-failures
[#469] fix encryption ITs for changed MDA model
- Loading branch information
Showing
3 changed files
with
19 additions
and
69 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
18 changes: 18 additions & 0 deletions
18
...ble-test-data-delivery-pyspark-model/tests/features/pyspark_data_encryption_vault.feature
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 @@ | ||
@pyspark_data_encryption @integration | ||
Feature: Data encryption | ||
|
||
Scenario: Specifying the Vault encryption algorithm yields a custom field encrypted with the corresponding algorithm | ||
Given a pipeline with native inbound collection and inbound record type | ||
When Vault encryption is requested | ||
Then the correct Vault algorithm is applied to the data set | ||
|
||
Scenario: Specifying the Vault encryption algorithm yields a dataframe field encrypted with the corresponding algorithm | ||
Given a pipeline with native non-collection inbound and no inbound record type | ||
When Vault encryption is requested | ||
Then the correct Vault algorithm is applied to the dataframe | ||
|
||
Scenario: Encrypt fields for native collection inbound without an inbound record type (set([DataFrame])) | ||
Given a pipeline with native collection inbound and no inbound record type | ||
When Vault encryption is requested | ||
Then the correct dataframe fields are vault encrypted for each dataframe | ||
|
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