Skip to content

Commit

Permalink
Enabled some tests that were wrongly disabled (#30285)
Browse files Browse the repository at this point in the history
  • Loading branch information
rickle-msft authored Aug 5, 2022
1 parent d434519 commit 1e54ffc
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,8 +356,8 @@ class EncyptedBlockBlobAPITest extends APISpec {
where:
dataSize | _
3000 | _ // small
// 5 * 1024 * 1024 - 10 | _ // medium
// 20 * 1024 * 1024 - 10 | _ // large
5 * 1024 * 1024 - 10 | _ // medium
20 * 1024 * 1024 - 10 | _ // large
}

boolean encryptionTestHelper(int size, int byteBufferCount) {
Expand Down Expand Up @@ -1324,16 +1324,16 @@ class EncyptedBlockBlobAPITest extends APISpec {

where:
fileSize | version
// 0 | EncryptionVersion.V1 // empty file
// 20 | EncryptionVersion.V1 // small file
// 16 * 1024 * 1024 | EncryptionVersion.V1 // medium file in several chunks
// 8 * 1026 * 1024 + 10 | EncryptionVersion.V1 // medium file not aligned to block
0 | EncryptionVersion.V1 // empty file
20 | EncryptionVersion.V1 // small file
16 * 1024 * 1024 | EncryptionVersion.V1 // medium file in several chunks
8 * 1026 * 1024 + 10 | EncryptionVersion.V1 // medium file not aligned to block
50 * Constants.MB | EncryptionVersion.V1 // large file requiring multiple requests
// 0 | EncryptionVersion.V2 // empty file
// 20 | EncryptionVersion.V2 // small file
// 16 * 1024 * 1024 | EncryptionVersion.V2 // medium file in several chunks
// 8 * 1026 * 1024 + 10 | EncryptionVersion.V2 // medium file not aligned to block
// 50 * Constants.MB | EncryptionVersion.V2 // large file requiring multiple requests
0 | EncryptionVersion.V2 // empty file
20 | EncryptionVersion.V2 // small file
16 * 1024 * 1024 | EncryptionVersion.V2 // medium file in several chunks
8 * 1026 * 1024 + 10 | EncryptionVersion.V2 // medium file not aligned to block
50 * Constants.MB | EncryptionVersion.V2 // large file requiring multiple requests
// Files larger than 2GB to test no integer overflow are left to stress/perf tests to keep test passes short.
}

Expand Down

0 comments on commit 1e54ffc

Please sign in to comment.